convert_pdf_url
Convert PDF files from URLs into Markdown format, supporting single or multiple URLs. Optionally enable OCR for extracting text from scanned documents.
Instructions
Convert PDF URL to Markdown, supports single URL or URL list
Args:
url: PDF file URL or URL list, can be separated by spaces, commas, or newlines
enable_ocr: Whether to enable OCR (default: True)
Returns:
dict: Conversion result information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enable_ocr | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"enable_ocr": {
"default": true,
"title": "Enable Ocr",
"type": "boolean"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "convert_pdf_urlArguments",
"type": "object"
}