search_news
Find relevant news articles by entering a search query and specifying the number of results to retrieve.
Instructions
Search for news articles using a query string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
news_count | No | The number of news articles | |
query | Yes | The search query |
Input Schema (JSON Schema)
{
"properties": {
"news_count": {
"default": 8,
"description": "The number of news articles",
"title": "News Count",
"type": "integer"
},
"query": {
"description": "The search query",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_newsArguments",
"type": "object"
}