read_doc_page
Retrieve full indexed text from a PDF page or page range in electronics component documentation. Useful when snippets are too short for tables or register maps.
Instructions
Return full indexed plain text for one PDF page or a page range (after query_doc_content gives you pageNum). Requires the document to already be indexed. Pass docUrl exactly as in search results (or the PDF URL used with read_doc). Use this when snippets are too short for tables or register maps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vendor | Yes | Vendor ID: TI, ST, ADI. | |
| docUrl | Yes | PDF document URL as returned by search_docs / query_doc_content (doc is identified by URL). | |
| page | Yes | 1-based PDF page number (same numbering as query_doc_content pageNum). | |
| pageEnd | No | Optional inclusive end page for a range. If omitted, only **page** is returned. | |
| maxChars | No | Max characters of text to return (default 120000, hard cap 500000). Truncation sets truncated=true in the JSON. |