v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
LLM Observability

Get patterns run status

Retrieve the status and step-by-step progress of the current or most recent patterns run for a configuration.

get/api/v2/llm-obs/v1/topic-discovery-runs/status

Query parameters

config_idstring required

The ID of the patterns configuration.

Response

OK

Example response

{
  "data": {
    "attributes": {
      "created_at": "2024-01-15T10:30:00Z",
      "progress": [
        {
          "name": "generate_topics",
          "started_at": "2024-01-15T10:30:00Z",
          "status": "completed"
        }
      ],
      "status": "running",
      "step": "generate_topics"
    },
    "id": "3fd6b5e0-8910-4b1c-a7d0-5b84de329012",
    "type": "topic_discovery_run_status"
  }
}