priyar84 commited on
Commit
3028cc6
·
verified ·
1 Parent(s): b4574a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -56,7 +56,7 @@ with open("prompts.yaml", 'r') as stream:
56
  # Create the AI agent with tools
57
  agent = CodeAgent(
58
  model=model,
59
- tools=[final_answer,my_custom_tool], ## add your tools here (don't remove final answer)
60
  max_steps=6,
61
  verbosity_level=1,
62
  grammar=None,
@@ -66,5 +66,7 @@ agent = CodeAgent(
66
  prompt_templates=prompt_templates
67
  )
68
 
 
 
69
  # Launch the AI agent with Gradio
70
  GradioUI(agent).launch()
 
56
  # Create the AI agent with tools
57
  agent = CodeAgent(
58
  model=model,
59
+ tools=[final_answer], ## add your tools here (don't remove final answer)
60
  max_steps=6,
61
  verbosity_level=1,
62
  grammar=None,
 
66
  prompt_templates=prompt_templates
67
  )
68
 
69
+ agent.run("What is 24*7?")
70
+
71
  # Launch the AI agent with Gradio
72
  GradioUI(agent).launch()