Dips-1991 commited on
Commit
27dfde2
·
verified ·
1 Parent(s): 6d045ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,7 +55,7 @@ with open("prompts.yaml", 'r') as stream:
55
 
56
  agent = CodeAgent(
57
  model=model,
58
- tools=[final_answer], image_generation_tool, ## add your tools here (don't remove final answer)
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
@@ -63,7 +63,7 @@ agent = CodeAgent(
63
  name=None,
64
  description=None,
65
  prompt_templates=prompt_templates
66
- )
67
 
68
 
69
  GradioUI(agent).launch()
 
55
 
56
  agent = CodeAgent(
57
  model=model,
58
+ tools=[final_answer], ## add your tools here (don't remove final answer)
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
 
63
  name=None,
64
  description=None,
65
  prompt_templates=prompt_templates
66
+ )
67
 
68
 
69
  GradioUI(agent).launch()