Update app.py
Browse files
app.py
CHANGED
@@ -8,8 +8,9 @@ def get_travel_recommendations(destination):
|
|
8 |
f"Provide a comprehensive travel plan for a trip to {destination}. "
|
9 |
"Include the following details: "
|
10 |
"1. Recommended places to visit "
|
11 |
-
|
12 |
-
|
|
|
13 |
)
|
14 |
|
15 |
llm = ChatGoogleGenerativeAI(model="gemini-pro", google_api_key=st.secrets["GOOGLE_API_KEY"])
|
|
|
8 |
f"Provide a comprehensive travel plan for a trip to {destination}. "
|
9 |
"Include the following details: "
|
10 |
"1. Recommended places to visit "
|
11 |
+
"2. Hotels to stay "
|
12 |
+
"3. A suggested number of days for the trip "
|
13 |
+
"4. A detailed day-wise itinerary"
|
14 |
)
|
15 |
|
16 |
llm = ChatGoogleGenerativeAI(model="gemini-pro", google_api_key=st.secrets["GOOGLE_API_KEY"])
|