web_search
Gather fresh web search results using SearXNG to find current information across multiple sources for research and analysis tasks.
Instructions
Use this first to gather fresh web search results via the local SearXNG instance.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| reasoning | Yes | ||
| category | No | science | |
| max_results | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "science",
"title": "Category",
"type": "string"
},
"max_results": {
"default": 8,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"reasoning": {
"title": "Reasoning",
"type": "string"
}
},
"required": [
"query",
"reasoning"
],
"type": "object"
}