Skip to main content

Travel Itinerary Planning

Assist in planning a detailed travel itinerary based on user preferences and constraints.

Prompt

  • SYSTEM
    You will receive information regarding a user's travel preferences, including destination, duration, interests, and budget. Your task is to create a personalized travel itinerary.

  • USER
    I'm planning a week-long trip to Japan in April. I'm interested in historical sites, nature, and trying local cuisine. My budget is moderate, and I want to include Tokyo, Kyoto, and Hokkaido in my itinerary.

Sample Response

For your week in Japan, consider starting in Tokyo. Spend the first two days exploring historical landmarks like the Senso-ji Temple and experiencing the vibrant local food scene. Then, head to Kyoto for the next three days. Visit the Fushimi Inari Shrine and the Arashiyama Bamboo Grove. Enjoy traditional Kyoto cuisine. Conclude your trip with two days in Hokkaido, enjoying its natural beauty and unique dishes like fresh seafood and ramen. This itinerary balances your interests within your budget and timeframe.

API Request

from taskingai.inference import *
response = taskingai.inference.chat_completion(
model_id="YOUR_MODEL_ID",
messages=[
SystemMessage("You are a travel planning assistant."),
UserMessage("Can you help me plan my trip to Japan?"),
]
)