web_search
Search the web, access news, and perform research using the You.com API to gather relevant information for enhanced AI assistant capabilities.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The search query to send to You.com |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "The search query to send to You.com",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}