Documentation Index
Fetch the complete documentation index at: https://agno-v2-shaloo-ai-support-link.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
RemoteTeam allows you to run teams that are hosted on a remote AgentOS instance. It provides the same interface as a local team, making it easy to integrate remote teams into your applications.
Installation
Basic Usage
from agno.team import RemoteTeam
# Create a remote team pointing to a remote AgentOS instance
team = RemoteTeam(
base_url="http://localhost:7777",
team_id="research-team",
)
# Run the team (async)
response = await team.arun("Research the latest AI trends")
print(response.content)
Parameters
| Parameter | Type | Default | Description |
|---|
base_url | str | Required | Base URL of the remote AgentOS instance (e.g., "http://localhost:7777") |
team_id | str | Required | ID of the remote team to execute |
timeout | float | 300.0 | Request timeout in seconds |
config_ttl | float | 300.0 | Time-to-live for cached configuration in seconds |
Properties
Returns the team ID.
print(team.id) # "research-team"
name
Returns the team’s name from the remote configuration.
print(team.name) # "Research Team"
description
Returns the team’s description from the remote configuration.
print(team.description) # "A team of research specialists"
role
Returns the team’s role from the remote configuration.
print(team.role) # "researcher"
Returns the team’s tools as a list of dictionaries.
tools = team.tools
if tools:
for tool in tools:
print(tool["name"])
Returns a RemoteDb instance if the team has a database configured.
if team.db:
print(f"Database ID: {team.db.id}")
knowledge
Returns a RemoteKnowledge instance if the team has knowledge configured.
if team.knowledge:
print("Team has knowledge enabled")
Methods
arun
Execute the remote team asynchronously.
# Non-streaming
response = await team.arun(
"Research AI trends",
user_id="user-123",
session_id="session-456",
)
print(response.content)
# Streaming
async for event in team.arun(
"Analyze this topic",
stream=True,
user_id="user-123",
):
if hasattr(event, "content") and event.content:
print(event.content, end="", flush=True)
Parameters:
| Parameter | Type | Default | Description |
|---|
input | str | List | Dict | Message | BaseModel | Required | The input message for the team |
stream | bool | False | Whether to stream the response |
user_id | Optional[str] | None | User ID for the run |
session_id | Optional[str] | None | Session ID for context persistence |
session_state | Optional[Dict] | None | Session state dictionary |
images | Optional[Sequence[Image]] | None | Images to include |
audio | Optional[Sequence[Audio]] | None | Audio to include |
videos | Optional[Sequence[Video]] | None | Videos to include |
files | Optional[Sequence[File]] | None | Files to include |
stream_events | Optional[bool] | None | Whether to stream events |
retries | Optional[int] | None | Number of retries |
knowledge_filters | Optional[Dict] | None | Filters for knowledge search |
add_history_to_context | Optional[bool] | None | Add history to context |
dependencies | Optional[Dict] | None | Dependencies dictionary |
metadata | Optional[Dict] | None | Metadata dictionary |
auth_token | Optional[str] | None | JWT token for authentication |
Returns:
TeamRunOutput when stream=False
AsyncIterator[TeamRunOutputEvent] when stream=True
cancel_run
Cancel a running team execution.
success = await team.cancel_run(run_id="run-123")
if success:
print("Run cancelled")
Parameters:
| Parameter | Type | Default | Description |
|---|
run_id | str | Required | ID of the run to cancel |
auth_token | Optional[str] | None | JWT token for authentication |
Returns: bool - True if successfully cancelled
get_team_config
Get the team configuration from the remote server (always fetches fresh).
config = await team.get_team_config()
print(f"Team name: {config.name}")
print(f"Members: {config.members}")
Returns: TeamResponse
refresh_config
Force refresh the cached team configuration.
config = team.refresh_config()
Returns: TeamResponse
A2A Protocol Support
RemoteTeam can connect to any A2A-compatible server using the protocol="a2a" parameter:
Connecting to Agno A2A Servers
from agno.team import RemoteTeam
# Connect to an Agno AgentOS with A2A interface
team = RemoteTeam(
base_url="http://localhost:7001/a2a/teams/my-team",
team_id="my-team",
protocol="a2a",
)
response = await team.arun("Hello!")
print(response.content)
Protocol Options
| Protocol | a2a_protocol | Use Case |
|---|
"agentos" | N/A | Default. Connect to Agno AgentOS REST API |
"a2a" | "rest" | Connect to A2A servers using REST endpoints |
"a2a" | "json-rpc" | Connect to Google ADK or pure JSON-RPC A2A servers |
Using in AgentOS Gateway
Remote teams can be registered in a local AgentOS to create a gateway:
from agno.team import RemoteTeam
from agno.os import AgentOS
agent_os = AgentOS(
teams=[
RemoteTeam(base_url="http://server-1:7777", team_id="research-team"),
RemoteTeam(base_url="http://server-2:7777", team_id="analysis-team"),
],
)
See AgentOS Gateway for more details.
Streaming Example
from agno.team import RemoteTeam
from agno.run.team import RunContentEvent, RunCompletedEvent
team = RemoteTeam(
base_url="http://localhost:7777",
team_id="research-team",
)
print("Response: ", end="", flush=True)
async for event in team.arun(
"Analyze the current state of AI",
stream=True,
user_id="user-123",
):
if isinstance(event, RunContentEvent):
print(event.content, end="", flush=True)
elif isinstance(event, RunCompletedEvent):
print(f"\n\nCompleted: {event.run_id}")
Error Handling
from agno.exceptions import RemoteServerUnavailableError
try:
response = await team.arun("Hello")
except RemoteServerUnavailableError as e:
print(f"Remote server unavailable: {e.message}")
Authentication
For authenticated AgentOS instances, pass the auth_token parameter:
response = await team.arun(
"Research this topic",
auth_token="your-jwt-token",
)