adil9858 commited on
Commit
fc08155
·
verified ·
1 Parent(s): 004a643

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 = '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'
11
- tts_key = 'cad9e48a6cb92ee53e6a55009c9d5e683bc3026d'
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)