removed previous num_ctx fix
Browse files
agent.py
CHANGED
|
@@ -17,8 +17,7 @@ def get_agent(provider:str) -> CodeAgent:
|
|
| 17 |
model = LiteLLMModel(
|
| 18 |
model_id="groq/qwen-qwq-32b",
|
| 19 |
api_base="https://api.groq.com/openai/v1/chat/completions",
|
| 20 |
-
api_key=groq_key
|
| 21 |
-
num_ctx=4096)
|
| 22 |
|
| 23 |
else:
|
| 24 |
model = OpenAIServerModel(
|
|
|
|
| 17 |
model = LiteLLMModel(
|
| 18 |
model_id="groq/qwen-qwq-32b",
|
| 19 |
api_base="https://api.groq.com/openai/v1/chat/completions",
|
| 20 |
+
api_key=groq_key)
|
|
|
|
| 21 |
|
| 22 |
else:
|
| 23 |
model = OpenAIServerModel(
|