Nioi commited on
Commit
eeffb3a
·
1 Parent(s): ab2d8d1

fixed model parameter

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -16,7 +16,7 @@ def get_agent(provider:str) -> CodeAgent:
16
 
17
  if provider=='groq':
18
  model = LiteLLMModel(
19
- model="qwen-qwq-32b",
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