A Streamlit-based web application that uses Google's Gemini AI and browser automation to gather comprehensive tourist information for any location. Built using browser-use for browser automation and control.
- 🏨 Search for hotels with pricing and amenities
- 🏛️ Find tourist attractions with details and ticket prices
- 🍽️ Discover restaurants with cuisine types and reviews
- 🚌 Get transportation information and tips
- 🌤️ Check weather conditions and forecasts
- 🎯 Custom search for specific tourist information
- Clone the repository:
git clone https://github.com/kanwar19031/Travel-Agent
cd Travel-Agent
- Create and activate a virtual environment:
# For Windows
python -m venv venv
.\venv\Scripts\activate
# For macOS/Linux
python3 -m venv venv
source venv/bin/activate
- Install required packages:
pip install -r requirements.txt
- Install Playwright browsers:
playwright install
-
Get your Gemini API key from Google AI Studio
-
(Optional) Create a
.env
file in the project root:
GOOGLE_API_KEY=your_gemini_api_key_here
- Start the Streamlit app:
streamlit run tourist_search_app.py
-
Open your browser and go to
http://localhost:8501
-
Enter:
- Your destination
- Type of information needed
- Gemini API key (if not in .env)
- Choose headless mode preference
-
Click "Search" and wait for results
tourist-information-assistant/
├── tourist_search_app.py # Main Streamlit application
├── requirements.txt # Project dependencies
├── README.md # Project documentation
└── .env # Environment variables (optional)
- browser-use
- streamlit
- langchain-google-genai
- python-dotenv
- asyncio
Contributions are welcome! Please feel free to submit a Pull Request.
This project uses the browser-use library for browser automation. If you use this project in your research or work, please cite both this project and browser-use:
@software{browser_use2024,
author = {Müller, Magnus and Žunič, Gregor},
title = {Browser Use: Enable AI to control your browser},
year = {2024},
publisher = {GitHub},
url = {https://github.com/browser-use/browser-use}
}