A Python-based AI travel assistant that helps you plan trips with real-time data and smart suggestions.
- Clone the repo:
git clone https://github.com/Sakethsreeram7/Wand-Agent.git cd Wand-Agent - Install dependencies:
pip install -r requirements.txt
- Set up API keys:
- Add
.envand add your keys
- Add
- Run the app:
- FastAPI API:
python run.py api(http://localhost:8000) (Mandatory) - Streamlit UI:
python run.py web(http://localhost:8501)
- FastAPI API:
curl -X 'POST' \
'http://localhost:8000/query' \
-H 'Content-Type: application/json' \
-d '{
"messages": [
{
"role": "user",
"content": "Trip to Goa, 4 days, in ₹15k budget"
}
]
}'run.py— Entry pointapp/— Main code (agents, tools, UI, API)requirements.txt— Dependencies
GOOGLE_API_KEY(required)GROQ_API_KEY(required)OPENWEATHERMAP_API_KEY(optional)