Sagicc commited on
Commit
fbe170c
·
verified ·
1 Parent(s): cec3bb7

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
  print("BasicAgent initialized.")
17
- model = HfApiModel()
 
 
18
 
19
  search_tool = DuckDuckGoSearchTool()
20
 
 
14
  class BasicAgent:
15
  def __init__(self):
16
  print("BasicAgent initialized.")
17
+ model = HfApiModel(
18
+ model_id='Qwen/Qwen3-30B-A3B',
19
+ )
20
 
21
  search_tool = DuckDuckGoSearchTool()
22