Nick088 _Noxty commited on
Commit
c5c665e
·
verified ·
1 Parent(s): 637caa1

Fix the typo (#1)

Browse files

- Fix the typo (4dd4ca1fba4a8359b731708746997a618c7c7ea0)


Co-authored-by: _Noxty <[email protected]>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import os
6
 
7
 
8
  # Setup Groq
9
- client = Groq(api_key=os.environ.get("GROQ_API_KEY"))
10
  model = "llama-3.3-70b-versatile"
11
 
12
  def handle_groq_error(e, model_name):
 
6
 
7
 
8
  # Setup Groq
9
+ client = groq.Client(api_key=os.environ.get("GROQ_API_KEY")) # Correct initialization
10
  model = "llama-3.3-70b-versatile"
11
 
12
  def handle_groq_error(e, model_name):