Agent Process Status
data class AgentProcessStatus(val id: String, val status: AgentProcessStatusCode, val timestamp: Instant, val runningTime: Duration, val result: Any?, val statusUrl: String = "/api/v1/process/", val sseUrl: String = "/events/process/") : OperationStatus<AgentProcessStatusCode>
Return status of the process and URLs for status and SSE streaming.
Parameters
id
Unique identifier of the agent process.
status
Current status of the agent process.
result
The last result of the agent process, if available.
status Url
URL to check the status of the process.
sse Url
URL to request Server-Sent Events (SSE) streaming of the process status.