Anjo123 commited on
Commit
b68605f
·
verified ·
1 Parent(s): bb0f4cc

Fixed api key loading bug

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ from groq import Groq
2
  import gradio as gr
3
  import os
4
 
5
- client = Groq(os.getenv("GROQ_API_KEY"))
6
 
7
  conversation_history = []
8
 
 
2
  import gradio as gr
3
  import os
4
 
5
+ client = Groq(api_key=os.getenv("GROQ_API_KEY"))
6
 
7
  conversation_history = []
8