parse_file
Extract and parse content from PDF, Word, Excel, CSV, and Markdown files for efficient data retrieval and processing in development workflows.
Instructions
解析文件内容,支持PDF、Word、Excel、CSV和Markdown格式
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | 文件的本地路径,例如'/path/to/document.pdf' |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "文件的本地路径,例如'/path/to/document.pdf'",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}