summarize_webpage
Extract and condense webpage content to a specified length, providing concise summaries for quick understanding. Input a URL and set target compression ratio for tailored results.
Instructions
抓取网页内容并总结为指定比例的长度(默认20%)
Args:
url: 要抓取和总结的网页URL
target_ratio: 目标压缩比例,0.1-1.0之间
Returns:
网页内容总结
Input Schema
Name | Required | Description | Default |
---|---|---|---|
target_ratio | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"target_ratio": {
"default": 0.2,
"title": "Target Ratio",
"type": "number"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "summarize_webpageArguments",
"type": "object"
}