load_pdf
Process and analyze PDF files to extract context for structured problem-solving. Specify file path, max pages, and chunk size for optimized handling of large documents.
Instructions
Load a PDF file to provide context for sequential thinking and problem solving. Optimized for large files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chunkSize | No | Process PDF in chunks of this many pages (default: 10) | |
filePath | Yes | Absolute path to the PDF file to load | |
maxPages | No | Maximum number of pages to process (default: all) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chunkSize": {
"description": "Process PDF in chunks of this many pages (default: 10)",
"exclusiveMinimum": 0,
"type": "integer"
},
"filePath": {
"description": "Absolute path to the PDF file to load",
"type": "string"
},
"maxPages": {
"description": "Maximum number of pages to process (default: all)",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"filePath"
],
"type": "object"
}