Skip to main content
Version: v5.0

System agents

There are system agents available for common tasks that require system tools. You can reference them in your Team definition.

The following system agents are available:

  • CodeAssistAgent
  • RelatedQueryAgent

Adding a system agent to a team

To add a system agent to a team, simply reference the system agent as a _userType in the _agents array. Refer to the JSON example below.

{
"_name": "Related Query Team",
"_namespaces": [
"dt_leT0AMOg"
],
"_agents": [
{
"_userType": "RelatedQueryAgent"
}
],
"_flow": [
{
"from": "__start__",
"to": "RelatedQueryAgent"
},
{
"from": "RelatedQueryAgent",
"to": "__end__"
}
]
}