Pular para o conteúdo 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"
  }
}

Autorizações

Authorization
string
header
obrigatório

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>.

Resposta

202 - application/json

OK

Resposta ao iniciar um trabalho de exportação de feedback.

started
boolean
obrigatório

Se uma nova exportação foi iniciada (falso se já estiver em execução)

status
enum<string>
obrigatório

Status atual do trabalho de exportação

Opções disponíveis:
NOT_FOUND,
RUNNING,
COMPLETED,
FAILED,
CANCELLED,
TERMINATED,
CONTINUED_AS_NEW,
TIMED_OUT
progress
object

Informações de progresso (disponíveis durante a execução)