find_related_news
Discover news articles related to a specific topic or headline by analyzing content similarity, with options to filter by date range and adjust relevance thresholds.
Instructions
查找与指定新闻标题相关的其他新闻(支持当天和历史数据)
Args: reference_title: 参考新闻标题(完整或部分) date_range: 日期范围(可选) - 不指定: 只查询今天的数据 - "today", "yesterday", "last_week", "last_month": 预设值 - {"start": "YYYY-MM-DD", "end": "YYYY-MM-DD"}: 自定义范围 threshold: 相似度阈值,0-1之间,默认0.5(越高匹配越严格) limit: 返回条数限制,默认50 include_url: 是否包含URL链接,默认False(节省token)
Returns: JSON格式的相关新闻列表,按相似度排序
Examples: - find_related_news(reference_title="特斯拉降价") - find_related_news(reference_title="AI突破", date_range="last_week")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reference_title | Yes | ||
| date_range | No | ||
| threshold | No | ||
| limit | No | ||
| include_url | No |