agnprz commited on
Commit
de8677e
·
verified ·
1 Parent(s): ec18d07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -14,7 +14,9 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
14
  class BasicAgent:
15
  def __init__(self):
16
  model = InferenceClientModel()
17
- search_tool = DuckDuckGoSearchTool()
 
 
18
  self.agent = CodeAgent(
19
  tools=[search_tool],
20
  model=model,
 
14
  class BasicAgent:
15
  def __init__(self):
16
  model = InferenceClientModel()
17
+ search_tool = DuckDuckGoSearchTool(
18
+ model_id="Qwen/Qwen2.5-Coder-32B-Instruct"
19
+ )
20
  self.agent = CodeAgent(
21
  tools=[search_tool],
22
  model=model,