Update app.py
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ generate_button = st.button("✈️ Generate Trip Plan")
|
|
68 |
if generate_button:
|
69 |
if from_location and destination and budget and preferences and start_date and end_date:
|
70 |
user_prompt = (
|
71 |
-
f"Create a detailed day-wise travel itinerary with
|
72 |
f"The trip should start on {start_date.strftime('%B %d, %Y')} and end on {end_date.strftime('%B %d, %Y')}, "
|
73 |
f"with a total budget of ₹{budget} INR. The traveler prefers {preferences.lower()} experiences. \n\n"
|
74 |
f"Provide a **day-wise breakdown** of the trip including:\n"
|
|
|
68 |
if generate_button:
|
69 |
if from_location and destination and budget and preferences and start_date and end_date:
|
70 |
user_prompt = (
|
71 |
+
f"Create a detailed day-wise travel itinerary with for a trip from {from_location} to {destination} in India. "
|
72 |
f"The trip should start on {start_date.strftime('%B %d, %Y')} and end on {end_date.strftime('%B %d, %Y')}, "
|
73 |
f"with a total budget of ₹{budget} INR. The traveler prefers {preferences.lower()} experiences. \n\n"
|
74 |
f"Provide a **day-wise breakdown** of the trip including:\n"
|