Payload schema
chunkany
The provider's chunk object, verbatim.
llmRequestOffsetinteger
The in-flight request this chunk belongs to.
sequenceinteger
Chunk ordinal within the response.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chunk": {
"description": "The provider's chunk object, verbatim."
},
"llmRequestOffset": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991,
"description": "The in-flight request this chunk belongs to."
},
"sequence": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991,
"description": "Chunk ordinal within the response."
}
},
"required": [
"chunk",
"llmRequestOffset",
"sequence"
]
}