Skip to main content

AgentXPipe

The AgentXPipe class from the superagentx.agentxpipe module is used to set up a pipeline that allows multiple agents to work together in sequence, Parallel or Hybrid. In this case, the AgentXPipe object enables the use of one or more agents (e.g., ecom_agent, ai_agent, content_creator_agent etc..) in combination with a memory store, allowing the system to persist context, share information between agents, and maintain state across multiple interactions.

AgentXPipe Parameters

AgentXPipe Agent Configuration

Sequence

In sequence execution, agent(s) are performed one after another, with each agent(s) waiting for the previous one to finish before starting. This approach is simple but can be slow if agent(s) are independent.

Alternate way of configure

Parallel

In parallel execution, agent(s) run at the same time, speeding up the process by utilizing multiple threads or processes.

Alternate way of configure

Mixed with Sequence and Parallel

Alternate way of configure