maciekwisniewski commited on
Commit
5c61f71
·
verified ·
1 Parent(s): 8af9390

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ class BestAgent:
20
  model_id = "Qwen/Qwen2.5-Coder-32B-Instruct"
21
  model = InferenceClientModel(model_id)
22
  self.agent = CodeAgent(
23
- model=model
24
  tools=[]
25
  )
26
  def __call__(self, question: str) -> str:
 
20
  model_id = "Qwen/Qwen2.5-Coder-32B-Instruct"
21
  model = InferenceClientModel(model_id)
22
  self.agent = CodeAgent(
23
+ model=model,
24
  tools=[]
25
  )
26
  def __call__(self, question: str) -> str: