read_and_summarize_pdf_file
Extract and condense PDF content into a concise summary by specifying the file path and desired compression ratio. Ideal for quickly accessing key information from lengthy documents.
Instructions
读取PDF文件并总结内容(限制2k字符)
Args:
filepath: PDF文件路径
target_ratio: 目标压缩比例,0.1-1.0之间
Returns:
PDF内容总结
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | ||
target_ratio | No |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"title": "Filepath",
"type": "string"
},
"target_ratio": {
"default": 0.2,
"title": "Target Ratio",
"type": "number"
}
},
"required": [
"filepath"
],
"title": "read_and_summarize_pdf_fileArguments",
"type": "object"
}