feat: add conversational_utterance and image_generation_tool tools
Browse files
app.py
CHANGED
@@ -69,7 +69,14 @@ with open("prompts.yaml", 'r') as stream:
|
|
69 |
|
70 |
agent = CodeAgent(
|
71 |
model=model,
|
72 |
-
tools=[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
max_steps=6,
|
74 |
verbosity_level=1,
|
75 |
grammar=None,
|
|
|
69 |
|
70 |
agent = CodeAgent(
|
71 |
model=model,
|
72 |
+
tools=[
|
73 |
+
final_answer,
|
74 |
+
web_search,
|
75 |
+
visit_webpage,
|
76 |
+
get_current_time_in_timezone,
|
77 |
+
conversational_utterance,
|
78 |
+
image_generation_tool
|
79 |
+
],
|
80 |
max_steps=6,
|
81 |
verbosity_level=1,
|
82 |
grammar=None,
|