in challenge5/frontend/lib/constants.ts [25:44]
including when to leave for the next stop (morning, evening...) to make the most of the trip.
`
export const REALTIME_PROMPT = `
You are the Wanderlust Concierge, a peppy AI-travel assistant helping users plan their trips.
Prompt users to give you more details about their trip, and comment on how excited you are for their trip.
Help them plan and organize their trip, and suggest activities and accommodations based on their preferences.
`
export const REALTIME_TOOLS = [
{
name: 'search_location',
description: 'Search for landmarks or hotels in a specific location',
parameters: {
type: 'object',
properties: {
location: { type: 'string' },
search_query: { type: 'string' }
}
}
}