Spaces:
Build error
Build error
Update agents/agents.py
Browse files- agents/agents.py +1 -1
agents/agents.py
CHANGED
|
@@ -11,7 +11,7 @@ def get_agent_groq(temperature=0.7):
|
|
| 11 |
# Load the Groq model
|
| 12 |
chat = ChatGroq(
|
| 13 |
temperature=temperature,
|
| 14 |
-
model="llama3-
|
| 15 |
api_key=os.getenv("GROQ_API_KEY")
|
| 16 |
)
|
| 17 |
return chat
|
|
|
|
| 11 |
# Load the Groq model
|
| 12 |
chat = ChatGroq(
|
| 13 |
temperature=temperature,
|
| 14 |
+
model="llama3-70b-8192", #define model available on Groq
|
| 15 |
api_key=os.getenv("GROQ_API_KEY")
|
| 16 |
)
|
| 17 |
return chat
|