This Streamlit app is an AI-powered travel Agent that generates personalized travel itineraries using OpenAI GPT-4o. It automates the process of researching, planning, and organizing your dream vacation, allowing you to explore exciting destinations with ease.
- Research and discover exciting travel destinations, activities, and accommodations
- Customize your itinerary based on the number of days you want to travel
- Utilize the power of GPT-4o to generate intelligent and personalized travel plans
- Download your itinerary as a calendar (.ics) file to import into Google Calendar, Apple Calendar, or other calendar apps
- Clone the GitHub repository
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
cd awesome-llm-apps/ai_agent_tutorials/ai_travel_agent- Install the required dependencies:
pip install -r requirements.txt- Get your OpenAI API Key
- Sign up for an OpenAI account (or the LLM provider of your choice) and obtain your API key.
- Get your SerpAPI Key
- Sign up for an SerpAPI account and obtain your API key.
- Run the Streamlit App
streamlit run travel_agent.pyFor local LLM usage (with Ollama):
streamlit run local_travel_agent.pyThe AI Travel Agent has two main components:
- Researcher: Responsible for generating search terms based on the user's destination and travel duration, and searching the web for relevant activities and accommodations using SerpAPI.
- Planner: Takes the research results and user preferences to generate a personalized draft itinerary that includes suggested activities, dining options, and accommodations.
After generating your travel itinerary:
- Click the "Download Itinerary as Calendar (.ics)" button that appears next to the "Generate Itinerary" button
- Save the .ics file to your computer
- Import the file into your preferred calendar application (Google Calendar, Apple Calendar, Outlook, etc.)
- Each day of your itinerary will appear as an all-day event in your calendar
- The complete details for each day's activities are included in the event description
This feature makes it easy to keep track of your travel plans and have your itinerary available on all your devices, even offline.
- travel_agent.py: Uses OpenAI's GPT-4o for high-quality itineraries (requires OpenAI API key)
- local_travel_agent.py: Uses Ollama for local LLM inference without sending data to external APIs (requires Ollama to be installed and running)