Spaces:
Sleeping
Sleeping
Added get_team_results to the list of tools provided to the agent
Browse files
app.py
CHANGED
|
@@ -137,7 +137,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
| 137 |
|
| 138 |
agent = CodeAgent(
|
| 139 |
model=model,
|
| 140 |
-
tools=[final_answer, get_top_ranked_team], ## add your tools here (don't remove final answer)
|
| 141 |
max_steps=6,
|
| 142 |
verbosity_level=1,
|
| 143 |
grammar=None,
|
|
|
|
| 137 |
|
| 138 |
agent = CodeAgent(
|
| 139 |
model=model,
|
| 140 |
+
tools=[final_answer, get_top_ranked_team, get_team_results], ## add your tools here (don't remove final answer)
|
| 141 |
max_steps=6,
|
| 142 |
verbosity_level=1,
|
| 143 |
grammar=None,
|