convert_pdf
Convert PDF files to Markdown format for better organization and processing using marker or pymupdf4llm libraries.
Instructions
Convert PDF files to Markdown format using marker (recommended) or pymupdf4llm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | No | Optional path to write markdown output | |
pdf_path | Yes | Absolute path to the PDF file to convert |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"description": "Optional path to write markdown output",
"type": "string"
},
"pdf_path": {
"description": "Absolute path to the PDF file to convert",
"type": "string"
}
},
"required": [
"pdf_path"
],
"type": "object"
}