david-clifford commited on
Commit
1f34237
·
verified ·
1 Parent(s): 43cdc81

Add NSE tool

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -95,7 +95,7 @@ with open("prompts.yaml", 'r') as stream:
95
 
96
  agent = CodeAgent(
97
  model=model,
98
- tools=[final_answer, get_current_time_in_timezone, image_generation_tool, toss_a_die], ## add your tools here (don't remove final answer)
99
  max_steps=6,
100
  verbosity_level=1,
101
  grammar=None,
 
95
 
96
  agent = CodeAgent(
97
  model=model,
98
+ tools=[final_answer, get_current_time_in_timezone, image_generation_tool, toss_a_die, nse_stock_price_tool], ## add your tools here (don't remove final answer)
99
  max_steps=6,
100
  verbosity_level=1,
101
  grammar=None,