Update app.py
Browse files
app.py
CHANGED
@@ -10,8 +10,8 @@ from groq import Groq
|
|
10 |
# Load Whisper model for transcription
|
11 |
model = whisper.load_model("large-v3-turbo")
|
12 |
|
13 |
-
|
14 |
-
client = Groq(api_key=
|
15 |
|
16 |
|
17 |
|
|
|
10 |
# Load Whisper model for transcription
|
11 |
model = whisper.load_model("large-v3-turbo")
|
12 |
|
13 |
+
key = os.getenv("GROQ_API")
|
14 |
+
client = Groq(api_key = key)
|
15 |
|
16 |
|
17 |
|