search_web
Search the web using DuckDuckGo or SerpAPI to find relevant information and web pages based on your search queries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"query": {
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}