Chat request
stream_options, parallel_tool_calls, response_format, and reasoning fields where the selected adapter supports them.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Chat completions, Responses-style calls, streaming, tools, and reasoning parameters.
| Method | Path | Notes |
|---|---|---|
POST | /v1/chat/completions | OpenAI Chat Completions shape. |
POST | /v1/responses | Responses-style input, previous response IDs, and stored response records. |
POST | /external/v1/chat/completions | OpenAI-compatible external route. |
POST | /external/v1/responses | Responses-style external route. |
{
"model": "gpt-5.5",
"messages": [
{ "role": "system", "content": "Be concise." },
{ "role": "user", "content": "Write a commit summary." }
],
"stream": true,
"tools": [],
"tool_choice": "auto"
}
stream_options, parallel_tool_calls, response_format, and reasoning fields where the selected adapter supports them.
{
"model": "gpt-5.5",
"input": [
{ "role": "user", "content": "Summarize this log." }
],
"stream": false
}