pdf_extract_text
Extract text from PDF files, returning the first 10 pages by default to stay within LLM context limits. Specify a page range to retrieve specific pages.
Instructions
Extract text content from a PDF file. Returns first 10 pages by default to avoid exceeding LLM context limits. Use the 'pages' parameter for specific pages.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to the PDF file | |
| pages | No | Page range, e.g. '1-5' or '1,3,5'. Defaults to first 10 pages. |