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"
}
}Inicia um trabalho em segundo plano para exportar todos os dados de feedback para arquivos parquet no S3/R2. Apenas uma exportação pode ser executada simultaneamente.
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"
}
}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>.
OK
Resposta ao iniciar um trabalho de exportação de feedback.
Se uma nova exportação foi iniciada (falso se já estiver em execução)
Status atual do trabalho de exportação
NOT_FOUND, RUNNING, COMPLETED, FAILED, CANCELLED, TERMINATED, CONTINUED_AS_NEW, TIMED_OUT Informações de progresso (disponíveis durante a execução)
Show child attributes
Esta página foi útil?