Understand the different Agent Types in Evo AI
mainEvo AI supports several agent architectures that can be combined to build complex systems:
- LLM Agent (Language Model): The base agent powered by models like GPT-4 or Claude. It can be equipped with tools, MCP servers, and sub-agents.
- A2A Agent (Agent-to-Agent): Implements Google's A2A protocol for interoperability between different AI agents.
- Sequential Agent: Executes a list of sub-agents in a strict, predefined order.
- Parallel Agent: Executes multiple sub-agents simultaneously.
- Loop Agent: Executes sub-agents repeatedly until a maximum number of iterations is reached.
- Workflow Agent: Uses LangGraph to execute sub-agents based on a custom graph structure (stateful workflows).
- Task Agent: Executes a specific task by targeting a specific agent with structured instructions.