Skip to main content
1

AI Agent Triggers

AI Agent triggers can be created to run any time an agent is called. This is useful for things like logging agent calls, dynamically updating tool instructions, or for modifying the agent’s toolset based on certain conditions.You can find AI Agent triggers by clicking the settings icon in the top-right corner of your agent and choosing Triggers.Agent Triggers offer the following inputs:toolset
Contains the toolset information, such as the name and instructions.
{
  "id": 1,
  "name": "Agent Name",
  "instructions": "Agent Instructions"
}
tools[]
An array that contains each tool included in the toolset.
  {
    "id": 1,
    "name": "Log Records",
    "instructions": "Logs action taken by the agent"
}
You can modify the tools or toolset by building logic in the trigger to do so.