read_articles_batch
Batch read multiple article contents for comparison and analysis. Processes up to 5 articles with automatic delays to respect rate limits, enabling comprehensive trend monitoring and reporting.
Instructions
批量读取多篇文章内容(最多 5 篇,间隔 5 秒)
逐篇请求文章内容,每篇之间自动间隔 5 秒以遵守速率限制。
典型使用流程:
先用 search_news(include_url=True) 搜索新闻获取多个链接
再用 read_articles_batch(urls=[...]) 批量读取正文
AI 对多篇文章进行对比分析、综合报告
Args: urls: 文章链接列表(必需),最多处理 5 篇 timeout: 每篇的请求超时时间(秒),默认 30
Returns: JSON格式的批量读取结果,包含每篇的完整内容和状态
Examples: - read_articles_batch(urls=["https://a.com/1", "https://b.com/2"])
Note: - 单次最多读取 5 篇,超出部分会被跳过 - 5 篇约需 25-30 秒(每篇间隔 5 秒) - 单篇失败不影响其他篇的读取
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | ||
| timeout | No |