> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cekura.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Poll Async Metric Description Generation Progress

> Poll the result of a `generate_clean_description_bg` job. `status` is one of: `queued`, `processing`, `completed`, `failed`. On `completed`, `clean_description` and `thinking` are present.



## OpenAPI

````yaml get /test_framework/v1/metrics/generate_clean_description_progress/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /test_framework/v1/metrics/generate_clean_description_progress/:
    get:
      tags:
        - test_framework
      summary: Poll async clean description generation
      description: >-
        Poll the result of a `generate_clean_description_bg` job. `status` is
        one of: `queued`, `processing`, `completed`, `failed`. On `completed`,
        `clean_description` and `thinking` are present.
      operationId: metrics-generate-clean-description-progress-retrieve
      parameters:
        - in: query
          name: progress_id
          schema:
            type: string
          description: progress_id returned from generate_clean_description_bg
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenerateCleanDescriptionProgressResponse'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    GenerateCleanDescriptionProgressResponse:
      type: object
      properties:
        status:
          type: string
        clean_description:
          type: string
        thinking:
          type: string
        error:
          type: string
      required:
        - status
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````