read_pdf_text
Extract and return markdown text content from PDF documents for streamlined AI agent processing, using Mistral AI's OCR capabilities via the Lizeur server.
Instructions
Read a PDF document and return only the markdown text content from all pages.
This is a simpler alternative to read_pdf that returns just the text content
without the full OCR metadata, which can be easier for agents to process.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
absolute_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"absolute_path": {
"title": "Absolute Path",
"type": "string"
}
},
"required": [
"absolute_path"
],
"title": "read_pdf_textArguments",
"type": "object"
}