Update app.py
Browse files
app.py
CHANGED
|
@@ -58,7 +58,7 @@ class BasicAgent:
|
|
| 58 |
Only call `final_answer` and do a final reason to make sure that you answer the question clearly and directly without additional information if not requested."""
|
| 59 |
}
|
| 60 |
|
| 61 |
-
|
| 62 |
model=model,
|
| 63 |
tools=[DuckDuckGoSearchTool(),],
|
| 64 |
max_steps=3,
|
|
|
|
| 58 |
Only call `final_answer` and do a final reason to make sure that you answer the question clearly and directly without additional information if not requested."""
|
| 59 |
}
|
| 60 |
|
| 61 |
+
agent = CodeAgent(
|
| 62 |
model=model,
|
| 63 |
tools=[DuckDuckGoSearchTool(),],
|
| 64 |
max_steps=3,
|