news_search
Search for recent news articles by entering a query to retrieve updated and relevant information using You.com's News API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The news query to send to You.com's News API |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "The news query to send to You.com's News API",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}