Triggers (Planned for V3)
Cron and webhook triggers are on the V3 roadmap and not yet available in V2.
Current approach: Chat-enabled schemas
Section titled “Current approach: Chat-enabled schemas”In V2, each schema has a Chat Enabled toggle (Admin Dashboard → Schemas → select schema → Settings). When enabled, the schema accepts chat requests via the REST API:
POST /api/v1/schemas/{schema_id}/chatThis is the primary way to initiate agent conversations — from your application, a frontend client, or any HTTP-capable service.
Planned V3 features
Section titled “Planned V3 features”- Cron triggers: schedule agents to run on a cron expression (e.g.,
0 9 * * 1-5— weekdays at 9 AM) - Webhook triggers: fire an agent from an external HTTP call (order created, deployment completed, alert received)
on_completecallbacks: notify downstream systems when a triggered task finishes
Follow the changelog for updates on trigger support.