Spaces:
Sleeping
Sleeping
Fix tool error
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ with open("prompts.yaml", "r") as stream:
|
|
| 60 |
agent = CodeAgent(
|
| 61 |
model=model,
|
| 62 |
tools=[
|
| 63 |
-
DuckDuckGoSearchTool,
|
| 64 |
get_current_time_in_timezone,
|
| 65 |
final_answer,
|
| 66 |
], ## add your tools here (don't remove final answer)
|
|
|
|
| 60 |
agent = CodeAgent(
|
| 61 |
model=model,
|
| 62 |
tools=[
|
| 63 |
+
DuckDuckGoSearchTool(),
|
| 64 |
get_current_time_in_timezone,
|
| 65 |
final_answer,
|
| 66 |
], ## add your tools here (don't remove final answer)
|