search_local
Find local business information by keyword, with options to display up to 5 results, set a starting page, and sort by random or comment criteria using structured search responses.
Instructions
Searches for local business information using the given keyword. (display maximum 5, start maximum 1) sort='random'/'comment' is supported.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
display | No | ||
page | No | ||
query | Yes | ||
sort | No | random |
Input Schema (JSON Schema)
{
"properties": {
"display": {
"default": 5,
"title": "Display",
"type": "integer"
},
"page": {
"default": 1,
"title": "Page",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"sort": {
"default": "random",
"title": "Sort",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_localArguments",
"type": "object"
}