fetch-chunk
Retrieve cached chunks from a changeMode response to continue processing partial responses. Specify the cache key and chunk index to access subsequent data.
Instructions
Retrieves cached chunks from a changeMode response. Use this to get subsequent chunks after receiving a partial changeMode response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cacheKey | Yes | The cache key provided in the initial changeMode response | |
chunkIndex | Yes | Which chunk to retrieve (1-based index) |
Input Schema (JSON Schema)
{
"properties": {
"cacheKey": {
"description": "The cache key provided in the initial changeMode response",
"type": "string"
},
"chunkIndex": {
"description": "Which chunk to retrieve (1-based index)",
"minimum": 1,
"type": "number"
}
},
"required": [
"cacheKey",
"chunkIndex"
],
"type": "object"
}