Saltar al contenido principal
POST
/
api
/
v1
/
llm
/
feedback
/
export
Python (SDK)
from openapi import SDK


with SDK(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:

    res = sdk.llm.feedback.start_export()

    # Handle response
    print(res)
{
  "started": true,
  "status": "RUNNING",
  "progress": {
    "stage": "starting",
    "message": "Initializing feedback export"
  }
}

Autorizaciones

Authorization
string
header
requerido

Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.

Respuesta

202 - application/json

Está bien

Respuesta al iniciar un trabajo de exportación de comentarios.

started
boolean
requerido

Si se inició una nueva exportación (falso si ya está en ejecución)

status
enum<string>
requerido

Estado actual del trabajo de exportación

Opciones disponibles:
NOT_FOUND,
RUNNING,
COMPLETED,
FAILED,
CANCELLED,
TERMINATED,
CONTINUED_AS_NEW,
TIMED_OUT
progress
object

Información de progreso (disponible al ejecutar)