menikev commited on
Commit
08a9a1d
·
verified ·
1 Parent(s): c18c6ca

Upload 3 files

Browse files
Files changed (3) hide show
  1. result.txt +63 -0
  2. trip_agents.py +50 -0
  3. trip_task.py +0 -0
result.txt ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **7-Day Paris Itinerary for July 2024**
2
+
3
+ **Day 1 - Arrival and Exploration**
4
+
5
+ * Morning: Arrive at Paris Charles de Gaulle Airport and take a taxi or shuttle to your hotel (approximately 1 hour, 30 minutes)
6
+ * Check-in at the 3-star Hotel Le Walt (approximately AED 500 per night) in the heart of the city
7
+ * Lunch: Visit the famous Café de Flore (approximately AED 50 per meal) and indulge in French cuisine
8
+ * Afternoon: Explore the iconic Champs-Élysées, stroll through the nearby Luxembourg Gardens, and admire the stunning views of the Eiffel Tower
9
+ * Evening: Enjoy a Seine River Cruise (approximately AED 100 per person) and take in the breathtaking city views
10
+
11
+ **Day 2 - Iconic Landmarks**
12
+
13
+ * Morning: Visit the Eiffel Tower (approximately AED 15 per person) and take the elevator to the top for panoramic views
14
+ * Lunch: Grab a quick bite at a charming café, such as Café de la Paix (approximately AED 20 per meal)
15
+ * Afternoon: Visit the world-renowned Louvre Museum (approximately AED 15 per person), exploring the vast collection of art and artifacts
16
+ * Evening: Enjoy a traditional French dinner at Le Comptoir du Relais (approximately AED 150 per person)
17
+
18
+ **Day 3 - Hidden Gems**
19
+
20
+ * Morning: Explore the charming neighborhood of Montmartre, wandering through its cobblestone streets and alleys
21
+ * Lunch: Treat yourself to a delightful pastry at Café des Deux Moulins (approximately AED 20 per meal)
22
+ * Afternoon: Visit the trendy Le Marais neighborhood, exploring its fashionable boutiques and art galleries
23
+ * Evening: Enjoy a scenic Seine River cruise (approximately AED 100 per person) and take in the city's romantic atmosphere
24
+
25
+ **Day 4 - Adventure and Activities**
26
+
27
+ * Morning: Visit the largest park in Paris, Parc des Buttes-Chaumont, and take a leisurely stroll
28
+ * Lunch: Grab a quick bite at a charming café, such as Café de la Paix (approximately AED 20 per meal)
29
+ * Afternoon: Visit the Paris Zoo (approximately AED 20 per person) and discover its diverse animal collection
30
+ * Evening: Rent a bike and explore the city's bike-friendly streets and scenic bike paths (approximately AED 20 per hour)
31
+
32
+ **Day 5 - Relaxation and Leisure**
33
+
34
+ * Morning: Treat yourself to a rejuvenating spa day at the luxurious Spa Valmont (approximately AED 300 per person)
35
+ * Lunch: Indulge in a delightful meal at the 5-star hotel restaurant, Le Bristol (approximately AED 200 per person)
36
+ * Afternoon: Take a leisurely stroll along the Seine River and admire the city's landmarks
37
+ * Evening: Enjoy a delightful dinner at the charming Bistrot de la Gare (approximately AED 150 per person)
38
+
39
+ **Day 6 - Explore and Enjoy**
40
+
41
+ * Morning: Visit the iconic Notre-Dame Cathedral (approximately AED 5 per person) and admire its stunning Gothic architecture
42
+ * Lunch: Grab a quick bite at a charming café, such as Café de la Paix (approximately AED 20 per meal)
43
+ * Afternoon: Explore the trendy Le Marais neighborhood, browsing its fashionable boutiques and art galleries
44
+ * Evening: Enjoy a delightful dinner at the 5-star hotel restaurant, Le Plaza Athénée (approximately AED 200 per person)
45
+
46
+ **Day 7 - Departure**
47
+
48
+ * Morning: Check-out of the hotel and head to Charles de Gaulle Airport for your departure flight
49
+ * Farewell to the City of Light!
50
+
51
+ **Budget Breakdown:**
52
+
53
+ * Flights: AED 2,500 to AED 3,500 (approximately USD 680 to USD 950)
54
+ * Accommodation: AED 1,500 to AED 2,000 (approximately USD 405 to USD 540) for 6 nights
55
+ * Food and activities: AED 2,000 to AED 3,000 (approximately USD 540 to USD 810) for the entire trip
56
+
57
+ **Tips and Recommendations:**
58
+
59
+ * Pack wisely: Bring comfortable shoes, sunscreen, and a light jacket for cooler evenings
60
+ * Language: While many Parisians speak English, it's always helpful to learn some basic French phrases
61
+ * Food: Indulge in French cuisine, from croissants to croque-monsieur, and don't forget to try the famous French pastries!
62
+
63
+ Get ready for an unforgettable adventure in Paris!
trip_agents.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from crewai import Agent
2
+ from langchain.llms import OpenAI
3
+
4
+ from tools.browser_tools import BrowserTools
5
+ from tools.calculator_tools import CalculatorTools
6
+ from tools.search_tools import SearchTools
7
+
8
+
9
+ class TripAgents():
10
+
11
+ def city_selection_agent(self):
12
+ return Agent(
13
+ role='City Selection Expert',
14
+ goal='Select the best city based on weather, season, and prices',
15
+ backstory=
16
+ 'An expert in analyzing travel data to pick ideal destinations',
17
+ # tools=[
18
+ # SearchTools.search_internet,
19
+ # BrowserTools.scrape_and_summarize_website,
20
+ # ],
21
+ verbose=True,
22
+ allow_delegation=False)
23
+
24
+ def local_expert(self):
25
+ return Agent(
26
+ role='Local Expert at this city',
27
+ goal='Provide the BEST insights about the selected city',
28
+ backstory="""A knowledgeable local guide with extensive information
29
+ about the city, it's attractions and customs""",
30
+ # tools=[
31
+ # SearchTools.search_internet,
32
+ # BrowserTools.scrape_and_summarize_website,
33
+ # ],
34
+ verbose=True,
35
+ allow_delegation=False)
36
+
37
+ def travel_concierge(self):
38
+ return Agent(
39
+ role='Amazing Travel Concierge',
40
+ goal="""Create the most amazing travel itineraries with budget and
41
+ packing suggestions for the city""",
42
+ backstory="""Specialist in travel planning and logistics with
43
+ decades of experience""",
44
+ # tools=[
45
+ # # SearchTools.search_internet,
46
+ # # BrowserTools.scrape_and_summarize_website,
47
+ # # CalculatorTools.calculate,
48
+ # ],
49
+ verbose=True,
50
+ allow_delegation=False)
trip_task.py ADDED
File without changes