search_attractions
Find attractions and points of interest in a specified location, filter by categories, and define search radius for personalized travel planning.
Instructions
Searches for attractions and points of interest in a specified location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Categories of attractions | |
location | Yes | Location to search attractions | |
radius | No | Search radius in meters |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"categories": {
"description": "Categories of attractions",
"items": {
"type": "string"
},
"type": "array"
},
"location": {
"description": "Location to search attractions",
"type": "string"
},
"radius": {
"description": "Search radius in meters",
"type": "number"
}
},
"required": [
"location"
],
"type": "object"
}