Overview
Processes represent the actual execution of attempts. Monitor running AI agents, check resource usage, and control execution. Base URL:http://localhost:8887/api/processes
List Processes
Get all active processes.Query Parameters
| Parameter | Type | Description |
|---|---|---|
status | enum | Filter by status (running, completed, failed) |
llm | string | Filter by AI agent |
Get Process
Get detailed process information.Example Response
Cancel Process
Stop a running process.Get Process Logs
Stream real-time logs from a process.Query Parameters
| Parameter | Type | Description |
|---|---|---|
follow | boolean | Stream logs in real-time |
tail | integer | Number of recent lines to show |
Stop Process
Stop a running execution process.Example Response
WebSocket: Stream Process Logs
Stream real-time process logs via WebSocket.Raw Logs Stream
Normalized Logs Stream
WebSocket: Stream All Processes
Monitor all execution processes in real-time.process_started- New process began executionprocess_progress- Progress updateprocess_completed- Process finished successfullyprocess_failed- Process encountered errorprocess_stopped- Process was stopped by user

