Fetch Urls
fetch_urlsBatch-fetch multiple URLs and retrieve each page's title and text summary, with individual failures noted so one broken link doesn't stop the whole run.
Instructions
批量抓取多个网页,返回每个的标题与正文摘要(单点失败不影响整体)。
参数: urls: URL 列表(最多 5 个) mode: "text" 或 "markdown" max_chars: 每个条目的最大字符数
返回: 逐条列出每个 URL 的 标题 + 正文(失败的条目标注原因)。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | 输出格式:text=纯文本正文,markdown=Markdown正文 | text |
| urls | Yes | ||
| max_chars | No | 每个条目的最大字符数,500-20000,默认 3000 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |