xlsx_read_handle
Read a previously uploaded workbook using a server-side handle, bypassing byte re-transfer. Returns content as text, JSON, or markdown.
Instructions
read a workbook that has already been uploaded to the server via the chunked upload flow, by its server-side cache handle, WITHOUT re-transferring the bytes. Returns the same shape as xlsx_read (text / json / markdown) but skips the file_b64 round-trip.
USE WHEN: the workbook has already been chunked + finalized into the server-side workbook cache (a workbook_handle was returned from the finalize call) and you want to read it again — e.g., a multi-step session where the same large workbook is queried repeatedly. Avoids re-uploading the bytes on every call.
DO NOT USE WHEN: you have a local file path and no prior upload (use xlsx_read — it handles the file_b64 transport for you). Handles expire when the cache TTL elapses; the call returns a clear "not found / expired" error in that case.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | ||
| workbook_handle | Yes |