v2.5.4
February 24, 2026
Update: TeamMode.tasks now supports streaming events!
Stream real-time events during autonomous team task execution.
Watch your agent team work in real time as each member completes their task and sends updates immediately, without waiting for the full pipeline to finish.
Getting started is simple
Expose your tasks mode team via AgentOS, then hit the streaming endpoint:
team = Team(
id="research-team",
name="Research Team",
mode=TeamMode.tasks,
model=OpenAIChat(id="gpt-5-mini"),
members=[researcher, summarizer],
db=db,
)
agent_os = AgentOS(teams=[team])curl -X POST http://0.0.0.0:7777/v1/teams/research-team/runs/stream \
-H "Content-Type: application/json" \
-d '{"message": "What are the key benefits of microservices architecture?"}'
The events arrive in sequence, with the researcher reporting first, followed by the summarizer, and finally the completed summary.
Learn more & explore examples in this Cookbook.
