bing_web_search
Perform a web search via Bing API to retrieve relevant websites and general information by specifying query, result count, offset, and market code.
Instructions
Performs a web search using the Bing Search API for general information and websites.
Args:
query: Search query (required)
count: Number of results (1-50, default 10)
offset: Pagination offset (default 0)
market: Market code like en-US, en-GB, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
market | No | en-US | |
offset | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"title": "Count",
"type": "integer"
},
"market": {
"default": "en-US",
"title": "Market",
"type": "string"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "bing_web_searchArguments",
"type": "object"
}