chris-clippd commited on
Commit
ed5001a
·
verified ·
1 Parent(s): 32a65e0

Added get_team_results to the list of tools provided to the agent

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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,