internet_search
Search the web via Tavily API to retrieve relevant information, supporting queries with optional limits and raw content inclusion for enhanced contextual responses.
Instructions
Search the internet using Tavily API.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| include_raw_content | No | ||
| limit | No | ||
| query | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "include_raw_content": {
      "default": false,
      "title": "Include Raw Content",
      "type": "boolean"
    },
    "limit": {
      "default": 3,
      "title": "Limit",
      "type": "integer"
    },
    "query": {
      "title": "Query",
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "title": "internet_searchArguments",
  "type": "object"
}