web_search_exa
Perform real-time web searches and extract content from specific URLs using AI. Configure result counts to retrieve the most relevant information for your queries.
Instructions
Search the web using Exa AI - performs real-time web searches and can scrape content from specific URLs. Supports configurable result counts and returns the content from the most relevant websites.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
numResults | No | Number of search results to return (default: 5) | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"numResults": {
"description": "Number of search results to return (default: 5)",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}