You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _snippets/team-reference.mdx
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,14 +13,20 @@
13
13
|`description`|`Optional[str]`|`None`| A description of the team that is added to the start of the system message |
14
14
|`instructions`|`Optional[Union[str, List[str], Callable]]`|`None`| List of instructions for the team |
15
15
|`expected_output`|`Optional[str]`|`None`| Provide the expected output from the team |
16
+
|`additional_context`|`Optional[str]`|`None`| Additional context added to the end of the system message |
16
17
|`success_criteria`|`Optional[str]`|`None`| Define the success criteria for the team |
17
18
|`markdown`|`bool`|`False`| If markdown=true, add instructions to format the output using markdown |
18
19
|`add_datetime_to_instructions`|`bool`|`False`| If True, add the current datetime to the instructions to give the agent a sense of time |
20
+
|`knowledge`|`Optional[AgentKnowledge]`|`None`| Add a knowledge base to the team |
21
+
|`retriever`|`Optional[Callable[..., Optional[List[Dict]]]]`|`None`| Function to get references to add to the user_message |
22
+
|`references_format`|`Literal["json", "yaml"]`|`"json"`| Format of the references |
19
23
|`context`|`Optional[Dict[str, Any]]`|`None`| User provided context |
20
24
|`add_context`|`bool`|`False`| If True, add the context to the user prompt |
21
25
|`enable_agentic_context`|`bool`|`False`| If True, enable the team agent to update the team context and automatically send the team context to the members |
22
26
|`share_member_interactions`|`bool`|`False`| If True, send all previous member interactions to members |
23
27
|`read_team_history`|`bool`|`False`| If True, read the team history |
28
+
|`search_knowledge`|`bool`|`True`| Add a tool that allows the Model to search the knowledge base |
29
+
|`get_member_information_tool`|`bool`|`True`| Add a tool that allows the Model to get information about the members of the team |
24
30
|`show_tool_calls`|`bool`|`False`| Show tool calls in team response |
25
31
|`response_model`|`Optional[Type[BaseModel]]`|`None`| Response model for the team response |
26
32
|`use_json_mode`|`bool`|`False`| If `response_model` is set, sets the response "mode" of the model, i.e. if the model should explicitly respond with a JSON object instead of a Pydantic model |
0 commit comments