analyze_pdf_section
Search and analyze specific sections in large PDF documents using a query. Specify context window, maximum matches, and case sensitivity to refine results for targeted information extraction.
Instructions
Search and analyze specific sections of a loaded PDF document. Optimized for large documents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caseSensitive | No | Whether search should be case sensitive (default: false) | |
contextWindow | No | Number of characters around each match to include (default: 2000) | |
maxMatches | No | Maximum number of matches to return (default: 10) | |
query | Yes | Search query or topic to look for in the PDF |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"caseSensitive": {
"description": "Whether search should be case sensitive (default: false)",
"type": "boolean"
},
"contextWindow": {
"description": "Number of characters around each match to include (default: 2000)",
"exclusiveMinimum": 0,
"type": "integer"
},
"maxMatches": {
"description": "Maximum number of matches to return (default: 10)",
"exclusiveMinimum": 0,
"type": "integer"
},
"query": {
"description": "Search query or topic to look for in the PDF",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}