summarize_content
Summarize any content to a specified length ratio (default 20%) for concise understanding. Ideal for condensing information efficiently using controlled compression settings.
Instructions
将任意内容总结为指定比例的长度(默认20%)
Args:
content: 要总结的内容
target_ratio: 目标压缩比例,0.1-1.0之间
Returns:
总结后的内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
target_ratio | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"title": "Content",
"type": "string"
},
"target_ratio": {
"default": 0.2,
"title": "Target Ratio",
"type": "number"
}
},
"required": [
"content"
],
"title": "summarize_contentArguments",
"type": "object"
}