Documentation Index
Fetch the complete documentation index at: https://docs.fact0.io/llms.txt
Use this file to discover all available pages before exploring further.
Telemetry client
Telemetry routes are currently unauthenticated for local/demo use. API-key auth is planned.
Start an execution
Context managers (recommended)
Span types
TOOL_CALL, MODEL_INVOCATION, STATE_MUTATION, HUMAN_APPROVAL, POLICY_EVALUATION, CUSTOM
Read methods
| Method | REST |
|---|---|
list_executions(agent_id=, status=, page_size=, offset=) | GET /api/v1/executions |
get_execution(id) | GET /api/v1/executions/{id} |
get_spans(execution_id) | GET /api/v1/executions/{id}/spans |
get_dag(execution_id) | GET /api/v1/executions/{id}/dag |
replay(execution_id, from_sequence=0, to_sequence=0) | GET /api/v1/executions/{id}/replay |
get_span(span_id) | GET /api/v1/spans/{id} |
Low-level ingest
| Method | REST |
|---|---|
ingest_spans(execution_id, spans) | POST /api/v1/executions/{id}/spans |
ingest_events(execution_id, events) | POST /api/v1/executions/{id}/events |
end_execution(execution_id, status) | PUT /api/v1/executions/{id}/end |
RUNNING, COMPLETED, FAILED, CANCELLED.