| name | parse_skill |
| description | Document parsing skill for extracting content from PDFs and other academic documents using MinerU and local parsers |
| version | 1.0.0 |
| author | PaperAgent Team |
Document Parsing Skill
This skill enables you to parse and extract content from academic documents, particularly PDFs. Use this skill when you need to extract text, figures, tables, and structured content from research papers.
Available Tools
You have access to the following parsing tools (registered in the Toolkit):
1. parse_pdf_with_mineru
Parse a PDF document using MinerU API for high-quality extraction.
Parameters:
pdf_url (str, required): URL to the PDF file
extract_figures (bool, optional): Whether to extract figures (default: True)
model_version (str, optional): "vlm" (vision-language model) or "basic"
Returns: Parsed content including:
- Full text in markdown format
- Extracted sections with headings
- Figures with captions
- Tables (converted to markdown)
- Reference list
Example:
parse_pdf_with_mineru(pdf_url="https://arxiv.org/pdf/2301.12345.pdf", extract_figures=True, model_version="vlm")