create_itinerary
Generate personalized travel itineraries by inputting origin, destination, dates, budget, and preferences to plan trips efficiently.
Instructions
Creates a personalized travel itinerary based on user preferences
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget | No | Budget in USD | |
destination | Yes | Destination location | |
endDate | Yes | End date (YYYY-MM-DD) | |
origin | Yes | Starting location | |
preferences | No | Travel preferences | |
startDate | Yes | Start date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"budget": {
"description": "Budget in USD",
"type": "number"
},
"destination": {
"description": "Destination location",
"type": "string"
},
"endDate": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"origin": {
"description": "Starting location",
"type": "string"
},
"preferences": {
"description": "Travel preferences",
"items": {
"type": "string"
},
"type": "array"
},
"startDate": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"origin",
"destination",
"startDate",
"endDate"
],
"type": "object"
}