Payload schema
chunksany[]
The window's provider chunk objects, verbatim, in order.
llmRequestOffsetinteger
The in-flight request these chunks belong to.
sequenceinteger
Flush ordinal within the response.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"chunks": {
"minItems": 1,
"type": "array",
"items": {},
"description": "The window's provider chunk objects, verbatim, in order."
},
"llmRequestOffset": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991,
"description": "The in-flight request these chunks belong to."
},
"sequence": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991,
"description": "Flush ordinal within the response."
}
},
"required": [
"chunks",
"llmRequestOffset",
"sequence"
]
}