girishwangikar commited on
Commit
03cc438
·
verified ·
1 Parent(s): 7ef0257

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ import io
14
 
15
  class GroqLLM:
16
  """Compatible LLM interface for smolagents CodeAgent"""
17
- def __init__(self, model_name="llama2-70b-3.5"):
18
  self.client = Groq(api_key=os.environ.get("GROQ_API_KEY"))
19
  self.model_name = model_name
20
 
 
14
 
15
  class GroqLLM:
16
  """Compatible LLM interface for smolagents CodeAgent"""
17
+ def __init__(self, model_name="llama-3.1-8B-Instant"):
18
  self.client = Groq(api_key=os.environ.get("GROQ_API_KEY"))
19
  self.model_name = model_name
20