Phases
This workflow handles one ticket end to end. For work that spans many tickets
over hours — a backlog to clear, a cohort to chase — the supervisor is
ActiveHorizonAgentWorkflow, which
runs workflows like this one as its individual turns.Signals and queries
Function-calling loop
The LLM can call tools defined in the brand’s config. The workflow executes each tool call as a Temporal activity and feeds the result back:Available tools
Review gate
The gate compares the classification confidence againstmin_confidence. Below the threshold,
the workflow waits for a review_decision signal rather than dispatching.
escalation_always_review forces the gate on escalation paths regardless of confidence.
Runtime API
Every endpoint below, and the other ten workflow families, have generated reference pages with a
live playground under the Temporal Engine API tab.
POST /v1/workflows/response/start, /v1/workflows/{id}/signal/review, and
/v1/workflows/{id}/status are the deprecated v1 surface. New integrations should use the
response-automation-v2 paths above.Related
- Configuration — AutomationConfig, skip rules, escalation
- Control plane
- Workflow Studio — the UI over this engine