Lode Nachtergaele commited on
Commit
42f4c9c
·
1 Parent(s): 6439c21

added tool tool to the agent

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -68,7 +68,10 @@ with open("prompts.yaml", "r") as stream:
68
 
69
  agent = CodeAgent(
70
  model=model,
71
- tools=[final_answer], ## add your tools here (don't remove final answer)
 
 
 
72
  max_steps=6,
73
  verbosity_level=1,
74
  grammar=None,
 
68
 
69
  agent = CodeAgent(
70
  model=model,
71
+ tools=[
72
+ final_answer,
73
+ git_github_repo_summary,
74
+ ], ## add your tools here (don't remove final answer)
75
  max_steps=6,
76
  verbosity_level=1,
77
  grammar=None,