Aharneish commited on
Commit
1bac3fe
·
verified ·
1 Parent(s): 37bd857

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
10
  # --- Define Agent ---
11
  class SmolAgentWrapper:
12
  def __init__(self):
13
- self.model = InferenceClientModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct", provider="together") # Uses flan-t5-base via HF Inference API
14
  self.tools = [DuckDuckGoSearchTool()] # You can add more tools here
15
  self.agent = CodeAgent(model=self.model, tools=self.tools)
16
 
 
10
  # --- Define Agent ---
11
  class SmolAgentWrapper:
12
  def __init__(self):
13
+ self.model = InferenceClientModel(model_id="Qwen/Qwen2.5-Coder-32B-Instruct") # Uses flan-t5-base via HF Inference API
14
  self.tools = [DuckDuckGoSearchTool()] # You can add more tools here
15
  self.agent = CodeAgent(model=self.model, tools=self.tools)
16