Use default model
Browse files
app.py
CHANGED
@@ -14,9 +14,7 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
|
|
14 |
class MyAgent(CodeAgent):
|
15 |
def __init__(self):
|
16 |
super().__init__(
|
17 |
-
model=InferenceClientModel(
|
18 |
-
model_id="Qwen/Qwen2.5-Coder-32B-Instruct",
|
19 |
-
),
|
20 |
tools=[
|
21 |
DuckDuckGoSearchTool(),
|
22 |
VisitWebpageTool()
|
|
|
14 |
class MyAgent(CodeAgent):
|
15 |
def __init__(self):
|
16 |
super().__init__(
|
17 |
+
model=InferenceClientModel(),
|
|
|
|
|
18 |
tools=[
|
19 |
DuckDuckGoSearchTool(),
|
20 |
VisitWebpageTool()
|