Pular para o conteúdo principal
POST
/
api
/
v1
/
llm
/
responses
/
{response_id}
/
wake
Python (SDK)
from mka1 import SDK


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

    res = sdk.llm.responses.wake(response_id="resp_sleep123", input="I have more context now; resume immediately.")

    # Handle response
    print(res)
{
  "object": "response.sleep_wake",
  "response_id": "resp_sleep123",
  "created_at": "2026-05-01T16:30:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mka1.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Cabeçalhos

X-On-Behalf-Of
string

Optional external end-user identifier forwarded by the API gateway.

Parâmetros de caminho

response_id
string
obrigatório

O identificador único da resposta, formatado como 'resp_' ou 'resp-' seguido por caracteres alfanuméricos.

Pattern: ^resp[-_][a-zA-Z0-9]+$

Corpo

application/json
input
string
obrigatório
Required string length: 1 - 20000

Resposta

A resposta de sono foi sinalizada para acordar.

object
enum<string>
obrigatório
Opções disponíveis:
response.sleep_wake
response_id
string
obrigatório
created_at
string<date-time>
obrigatório