Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
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()
|