Spaces:
Runtime error
Runtime error
Fixing the errors
Browse files
app.py
CHANGED
|
@@ -45,7 +45,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
| 45 |
|
| 46 |
agent = CodeAgent(
|
| 47 |
model=model,
|
| 48 |
-
tools=[get_current_time_in_timezone], ## add your tools here (don't remove final answer)
|
| 49 |
max_steps=6,
|
| 50 |
verbosity_level=1,
|
| 51 |
grammar=None,
|
|
|
|
| 45 |
|
| 46 |
agent = CodeAgent(
|
| 47 |
model=model,
|
| 48 |
+
tools=[final_answer,get_current_time_in_timezone], ## add your tools here (don't remove final answer)
|
| 49 |
max_steps=6,
|
| 50 |
verbosity_level=1,
|
| 51 |
grammar=None,
|