seekr_query
Perform web queries to find current information, news, and diverse content for real-time data, troubleshooting, and recent developments.
Instructions
Query for information using Google query engine.
This tool performs web queries to find current information, news, and diverse content. Use this for: current events, news, product information, troubleshooting, recent developments, and real-time information.
After getting query results, use seekr_prism to get detailed content from specific URLs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num | No | Number of query results to return (1-50) | |
query | Yes | Query string to find relevant information |
Input Schema (JSON Schema)
{
"properties": {
"num": {
"default": 10,
"description": "Number of query results to return (1-50)",
"title": "Num",
"type": "integer"
},
"query": {
"description": "Query string to find relevant information",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}