|
| 1 | +## Parameters |
| 2 | + |
1 | 3 | | Parameter | Type | Default | Description | |
2 | 4 | |-----------|------|---------|-------------| |
3 | 5 | | `members` | `List[Union[Agent, Team]]` | - | List of agents or teams that make up this team | |
|
17 | 19 | | `success_criteria` | `Optional[str]` | `None` | Define the success criteria for the team | |
18 | 20 | | `markdown` | `bool` | `False` | If markdown=true, add instructions to format the output using markdown | |
19 | 21 | | `add_datetime_to_instructions` | `bool` | `False` | If True, add the current datetime to the instructions to give the agent a sense of time | |
| 22 | +| `add_member_tools_to_system_message` | `bool` | `True` | If True, add the member tools to the system message | |
20 | 23 | | `knowledge` | `Optional[AgentKnowledge]` | `None` | Add a knowledge base to the team | |
21 | 24 | | `retriever` | `Optional[Callable[..., Optional[List[Dict]]]]` | `None` | Function to get references to add to the user_message | |
22 | 25 | | `references_format` | `Literal["json", "yaml"]` | `"json"` | Format of the references | |
|
40 | 43 | | `show_members_responses` | `bool` | `False` | Enable member logs - Sets the debug_mode for team and members | |
41 | 44 | | `monitoring` | `bool` | `False` | Log team information to agno.com for monitoring | |
42 | 45 | | `telemetry` | `bool` | `True` | Log minimal telemetry for analytics | |
| 46 | + |
| 47 | + |
| 48 | +## Functions |
| 49 | + |
| 50 | +| Function | Description | |
| 51 | +|----------|-------------| |
| 52 | +| `print_response` | Run the agent and print the response | |
| 53 | +| `run` | Run the agent | |
| 54 | +| `aprint_response` | Run the agent and print the response asynchronously | |
| 55 | +| `arun` | Run the agent asynchronously | |
| 56 | +| `get_session_summary` | Get the session summary for the given session ID and user ID (if not provided, the current session is used) | |
| 57 | +| `get_user_memories` | Get the user memories for the given user ID (if not provided, the current user is used) | |
| 58 | + |
| 59 | + |
| 60 | + |
0 commit comments