ABVM commited on
Commit
3e5ec4a
·
verified ·
1 Parent(s): 1c548c7

Update groq_compound.py

Browse files
Files changed (1) hide show
  1. groq_compound.py +1 -1
groq_compound.py CHANGED
@@ -4,7 +4,7 @@ import os
4
 
5
  class GroqCompoundAgent:
6
  """Wrapper around Groq’s compound-beta model for GAIA scoring."""
7
- def __init__(self, model: str = "compound-beta", temperature: float = 0.2):
8
  self.client = Groq(api_key=os.getenv("GROQ_API_KEY"))
9
  self.model = model
10
  self.temperature = temperature
 
4
 
5
  class GroqCompoundAgent:
6
  """Wrapper around Groq’s compound-beta model for GAIA scoring."""
7
+ def __init__(self, model: str = "compound-beta-mini", temperature: float = 0.2):
8
  self.client = Groq(api_key=os.getenv("GROQ_API_KEY"))
9
  self.model = model
10
  self.temperature = temperature