Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,8 +7,8 @@ from groq import Groq
|
|
| 7 |
from deepgram import DeepgramClient
|
| 8 |
|
| 9 |
# API Keys (replace with your actual keys)
|
| 10 |
-
groq_key =
|
| 11 |
-
tts_key =
|
| 12 |
|
| 13 |
# Initialize clients
|
| 14 |
groq_client = Groq(api_key=groq_key)
|
|
|
|
| 7 |
from deepgram import DeepgramClient
|
| 8 |
|
| 9 |
# API Keys (replace with your actual keys)
|
| 10 |
+
groq_key = os.getenv("GROQ_API_KEY")
|
| 11 |
+
tts_key = os.getenv("DEEPGRAM_API_KEY")
|
| 12 |
|
| 13 |
# Initialize clients
|
| 14 |
groq_client = Groq(api_key=groq_key)
|