get_activity_suggestions
Generate personalized activity recommendations for Cox's Bazar based on current temperature and time of day to optimize your travel itinerary.
Instructions
Suggest activities based on temperature and time of day.
Args: temperature: Temperature in Celsius time_of_day: "morning", "afternoon", or "evening"
Returns: List of suggested activities
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| temperature | Yes | ||
| time_of_day | No | afternoon |
Input Schema (JSON Schema)
{
"properties": {
"temperature": {
"title": "Temperature",
"type": "number"
},
"time_of_day": {
"default": "afternoon",
"title": "Time Of Day",
"type": "string"
}
},
"required": [
"temperature"
],
"type": "object"
}