Files
openrouter-python-sdk-retry…/docs/operations/sendchatcompletionrequestresponsebody.md
T
OpenRouter SDK Bot 5ab44f08f0 feat: regenerate SDK with updated OpenAPI spec
Speakeasy regeneration with latest schema changes including
type renames and new server tool models.
2026-03-27 15:18:14 -04:00

3.3 KiB

SendChatCompletionRequestResponseBody

Successful chat completion response

Fields

Field Type Required Description Example
data components.ChatStreamChunk ✔️ Streaming chat completion chunk {
"id": "chatcmpl-123",
"object": "chat.completion.chunk",
"created": 1677652288,
"model": "openai/gpt-4",
"choices": [
{
"index": 0,
"delta": {
"role": "assistant",
"content": "Hello"
},
"finish_reason": null
}
]
}