Travel Concierge
I can plan trips, book flights & hotels, check weather, and more.
1import { Agent, Memory, Tool } from '@avee1234/agent-kit';23const agent = new Agent({4 name: 'travel-planner',5 model: { provider: 'gemini', model: 'gemini-3.0-flash' },6 memory: new Memory({ store: 'sqlite' }),7 tools: [searchDestinations, checkWeather,8 searchFlights, bookFlight,9 searchHotels, bookHotel],10 system: 'You are an elite travel concierge...',11});1213const response = await agent.chat('Plan a trip to Paris');
Press Enter to send, Shift+Enter for new line
Simulated demo — no real bookings are made
No events yet
Events appear as agents work
Persistent Memory
Stored across sessions via SQLite
No saved notes yet
Initializing session...