Update app.py
Browse files
app.py
CHANGED
@@ -149,7 +149,7 @@ search_agent = LlmAgent(
|
|
149 |
,
|
150 |
tools=[google_search],
|
151 |
# Add the responses_api agent as a tool
|
152 |
-
sub_agents=[responses_api]
|
153 |
)
|
154 |
|
155 |
image_agent = LlmAgent(
|
@@ -180,7 +180,7 @@ youtube_agent = LlmAgent(
|
|
180 |
,
|
181 |
tools=[google_search],
|
182 |
# Add the responses_api agent as a tool
|
183 |
-
sub_agents=[responses_api]
|
184 |
)
|
185 |
|
186 |
root_agent = LlmAgent(
|
@@ -202,7 +202,7 @@ root_agent = LlmAgent(
|
|
202 |
tools=[responses_api,submit_api,agent_tool.AgentTool(agent = code_agent),\
|
203 |
agent_tool.AgentTool(agent = search_agent), agent_tool.AgentTool(youtube_agent), agent_tool.AgentTool(image_agent)],
|
204 |
# Add the responses_api agent as a tool
|
205 |
-
sub_agents=[responses_api]
|
206 |
)
|
207 |
|
208 |
# root_agent = LlmAgent(
|
|
|
149 |
,
|
150 |
tools=[google_search],
|
151 |
# Add the responses_api agent as a tool
|
152 |
+
# sub_agents=[responses_api]
|
153 |
)
|
154 |
|
155 |
image_agent = LlmAgent(
|
|
|
180 |
,
|
181 |
tools=[google_search],
|
182 |
# Add the responses_api agent as a tool
|
183 |
+
# sub_agents=[responses_api]
|
184 |
)
|
185 |
|
186 |
root_agent = LlmAgent(
|
|
|
202 |
tools=[responses_api,submit_api,agent_tool.AgentTool(agent = code_agent),\
|
203 |
agent_tool.AgentTool(agent = search_agent), agent_tool.AgentTool(youtube_agent), agent_tool.AgentTool(image_agent)],
|
204 |
# Add the responses_api agent as a tool
|
205 |
+
# sub_agents=[responses_api]
|
206 |
)
|
207 |
|
208 |
# root_agent = LlmAgent(
|