Skip to main content
Run your Team by calling Team.run() or Team.arun(). Here’s how they work:
  1. The team leader builds the context to send to the model (system message, user message, chat history, user memories, session state and other relevant inputs).
  2. The team leader sends this context to the model.
  3. The model processes the input and decides whether to use the delegate_task_to_members tool to delegate to team members, call other tools, or respond directly.
  4. If delegation occurs, team members execute their tasks and return results to the team leader.
  5. The team leader processes the updated context and provides a final response.
  6. The team returns this final response to the caller.

Basic Execution

The Team.run() function runs the team and returns the output — either as a TeamRunOutput object or as a stream of TeamRunOutputEvent and RunOutputEvent (for member agents) objects (when stream=True). For example:
You can also run the team asynchronously using Team.arun(). This means members will run concurrently if the team leader delegates to multiple members in one request.
See the Input & Output docs for more information, and to see how to use structured input and output with teams.

Run Output

The Team.run() function returns a TeamRunOutput object when not streaming. Here are some of the core attributes:
  • run_id: The id of the run.
  • team_id: The id of the team.
  • team_name: The name of the team.
  • session_id: The id of the session.
  • user_id: The id of the user.
  • content: The response content.
  • content_type: The type of content. In the case of structured output, this will be the class name of the pydantic model.
  • reasoning_content: The reasoning content.
  • messages: The list of messages sent to the model.
  • metrics: The metrics of the run. For more details see Metrics.
  • model: The model used for the run.
  • member_responses: The list of member responses. Optional to add when store_member_responses=True on the Team.
Team members inherit the model from their parent team if no model is specified. The reasoning_model, parser_model, and output_model must be explicitly set for each team or team member. See the model inheritance example.
See detailed documentation in the TeamRunOutput documentation.

Streaming

To enable streaming, set stream=True when calling run(). This will return an iterator of TeamRunOutputEvent objects instead of a single response.
When your team is running asynchronously (using arun), the members will run concurrently if the team leader delegates to multiple members in one request.This means you will receive member events concurrently and the order of the events is not guaranteed.

Streaming all events

By default, when you stream a response, only the RunContent events will be streamed. You can also stream all run events by setting stream_events=True. This will provide real-time updates about the team’s internal processes, like tool calling or reasoning:

Handling Events

You can process events as they arrive by iterating over the response stream:
Team member events are yielded during team execution when a team member is being executed. You can disable this by setting stream_member_events=False.

Storing Events

You can store all the events that happened during a run on the RunOutput object.
By default the TeamRunContentEvent and RunContentEvent events are not stored. You can modify which events are skipped by setting the events_to_skip parameter. For example:

Event Types

The following events are sent by the Team.run() and Team.arun() functions depending on team’s configuration:

Core Events

Tool Events

Reasoning Events

Memory Events

Session Summary Events

Pre-Hook Events

Post-Hook Events

Parser Model events

Output Model events

See detailed documentation in the TeamRunOutput documentation.

Custom Events

If you are using your own custom tools, it will often be useful to be able to yield custom events. Your custom events will be yielded together with the rest of the expected Agno events. We recommend creating your custom event class extending the built-in CustomEvent class:
You can then yield your custom event from your tool. The event will be handled internally as an Agno event, and you will be able to access it in the same way you would access any other Agno event.
See the full example for more details.

Specify Run User and Session

You can specify which user and session to use when running the team by passing the user_id and session_id parameters. This ensures the current run is associated with the correct user and session. For example:
For more information see the Team Sessions documentation.

Passing Images / Audio / Video / Files

You can pass images, audio, video, or files to the team by passing the images, audio, video, or files parameters. For example:
For more information see the Multimodal documentation.

Cancelling a Run

A run can be cancelled by calling the Team.cancel_run() method. See more details in the Cancelling a Run documentation.

Developer Resources