search_family_activities
Discover nearby family-friendly activities by searching based on location, distance, and preferences. Retrieve activity details, including titles, URLs, images, and addresses.
Instructions
Retrieves family activities that are geographically close to the specified location.
Args:
latitude (float): Latitude of the location.
longitude (float): Longitude of the location.
max_dist (float): Maximum distance from the provided coordinates in meters.
user_query (str): The precise user's query for which activities are being searched. Used to return relevant activities.
Returns:
str: A formatted string containing the information of the family activities. Each activity has a title, more info URL, image URL, and location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lat | Yes | ||
lon | Yes | ||
max_dist | Yes | ||
user_query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"lat": {
"title": "Lat",
"type": "number"
},
"lon": {
"title": "Lon",
"type": "number"
},
"max_dist": {
"title": "Max Dist",
"type": "number"
},
"user_query": {
"title": "User Query",
"type": "string"
}
},
"required": [
"lat",
"lon",
"max_dist",
"user_query"
],
"title": "search_family_activitiesArguments",
"type": "object"
}