jojo19033 commited on
Commit
e661eca
·
verified ·
1 Parent(s): 3119800

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -76,4 +76,13 @@ with open("prompts.yaml", 'r') as stream:
76
  agent = CodeAgent(
77
  model=model,
78
  tools=[final_answer, faq_bot_tool], # Add the FAQ bot tool here
79
- max_steps=6
 
 
 
 
 
 
 
 
 
 
76
  agent = CodeAgent(
77
  model=model,
78
  tools=[final_answer, faq_bot_tool], # Add the FAQ bot tool here
79
+ max_steps=6,
80
+ verbosity_level=1,
81
+ grammar=None,
82
+ planning_interval=None,
83
+ name=None,
84
+ description=None,
85
+ prompt_templates=prompt_templates
86
+ )
87
+
88
+ GradioUI(agent).launch()