abdullahzunorain commited on
Commit
f0b7194
·
verified ·
1 Parent(s): 31a9e95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- GROQ_API_TOKEN = os.getenv(GROQ_API)
14
- client = Groq(api_key=GROQ_API_TOKEN)
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