search_news_info
Search for news articles using keywords to retrieve titles, sources, dates, and descriptions from the Brave News API.
Instructions
使用Brave新闻API搜索新闻
参数:
    query (str): 新闻搜索关键词
    
返回:
    str: 新闻搜索结果,包含标题、来源、日期和描述
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| query | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "query": {
      "title": "Query",
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}