fixed model parameter
Browse files
agent.py
CHANGED
|
@@ -16,7 +16,7 @@ def get_agent(provider:str) -> CodeAgent:
|
|
| 16 |
|
| 17 |
if provider=='groq':
|
| 18 |
model = LiteLLMModel(
|
| 19 |
-
|
| 20 |
api_base="https://api.groq.com/openai/v1/chat/completions",
|
| 21 |
api_key=groq_key)
|
| 22 |
|
|
|
|
| 16 |
|
| 17 |
if provider=='groq':
|
| 18 |
model = LiteLLMModel(
|
| 19 |
+
model_id="groq/qwen-qwq-32b",
|
| 20 |
api_base="https://api.groq.com/openai/v1/chat/completions",
|
| 21 |
api_key=groq_key)
|
| 22 |
|