Automatic Task Decomposition in Google ADK Multi-Agent System #462
-
I am developing a proof of concept with Google ADK for a multi-agent system composed of several specialized agents:
Current Flow and LimitationWhen receiving a request such as:
the framework identifies that it should route the request to contact_manager, retrieves the internal code, and stops the process there and ask the user to send the message. It does not automatically proceed to the notification agent to send the message. GoalI want the orchestrator_agent to automatically detect and manage composite tasks so that it can:
The orchestrator_agent should:
Questions
Thank you in advance for any guidance or references to examples! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In your case I think one agent with multiple tools may work better. Usually you want fewer LLM agents involved in serving one query, since the hand-off between agents adds latency and cost, and they are not as reliable as tool calls. |
Beta Was this translation helpful? Give feedback.
In your case I think one agent with multiple tools may work better. Usually you want fewer LLM agents involved in serving one query, since the hand-off between agents adds latency and cost, and they are not as reliable as tool calls.