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

# Responses

> Stateless текст через совместимый Responses endpoint.

`POST /v1/responses` принимает model, input (строка или массив текстовых сообщений), instructions, max\_output\_tokens, temperature, stream=false, store=false. Developer-сообщение преобразуется в system.

```json theme={null}
{"model":"PUBLIC_API_ID","input":"Объясни термин API","max_output_tokens":256,"store":false,"stream":false}
```

Ответ содержит object=response, output с output\_text, usage и billing. При ограничении длины status=incomplete и incomplete\_details.reason=max\_output\_tokens. Для продолжения передайте контекст явно в новом запросе; серверная сессия Responses не создаётся.

В примере `PUBLIC_API_ID` — место для `public_api_id` из каталога, а не имя существующей модели. Выбирайте модель с доступной операцией.
