Amitabhab commited on
Commit
aea6d0e
·
1 Parent(s): f07ebb8

Reverting model in crew

Browse files
Files changed (2) hide show
  1. config/tasks.yaml +3 -3
  2. crew.py +1 -1
config/tasks.yaml CHANGED
@@ -18,6 +18,7 @@ personalized_activity_planning_task:
18
  expected_output: >
19
  A list of recommended activities and events for each day of the trip.
20
  Each entry should include the activity name, location, a brief description, and why it's suitable for the traveler.
 
21
  And potential reviews and ratings of the activities.
22
 
23
  restaurant_scenic_location_scout_task:
@@ -29,7 +30,6 @@ restaurant_scenic_location_scout_task:
29
 
30
  Traveler's information:
31
 
32
-
33
  - origin: {origin}
34
 
35
  - destination: {destination}
@@ -38,13 +38,13 @@ restaurant_scenic_location_scout_task:
38
 
39
  - how long is the trip: {trip_duration}
40
  expected_output: >
41
- A list of recommended restaurants, scenic locations, and fun activities for each day of the trip.
42
  Each entry should include the name, location (address), type of cuisine or activity, and a brief description and ratings.
43
 
44
  itinerary_compilation_task:
45
  description: >
46
  Compile all researched information into a comprehensive day-by-day itinerary for the trip to {destination}.
47
- Ensure the itinerary integrates flights, hotel information, and all planned activities and dining experiences.
48
  Use text formatting and document creation tools to organize the information.
49
  expected_output: >
50
  A detailed itinerary document, the itinerary should include a day-by-day
 
18
  expected_output: >
19
  A list of recommended activities and events for each day of the trip.
20
  Each entry should include the activity name, location, a brief description, and why it's suitable for the traveler.
21
+ The location should have the full address so that it can be easily found using a map.
22
  And potential reviews and ratings of the activities.
23
 
24
  restaurant_scenic_location_scout_task:
 
30
 
31
  Traveler's information:
32
 
 
33
  - origin: {origin}
34
 
35
  - destination: {destination}
 
38
 
39
  - how long is the trip: {trip_duration}
40
  expected_output: >
41
+ A list of recommended restaurants for each day of the trip.
42
  Each entry should include the name, location (address), type of cuisine or activity, and a brief description and ratings.
43
 
44
  itinerary_compilation_task:
45
  description: >
46
  Compile all researched information into a comprehensive day-by-day itinerary for the trip to {destination}.
47
+ Ensure the itinerary integrates hotel information and all planned activities and dining experiences.
48
  Use text formatting and document creation tools to organize the information.
49
  expected_output: >
50
  A detailed itinerary document, the itinerary should include a day-by-day
crew.py CHANGED
@@ -11,7 +11,7 @@ from typing import List, Optional
11
 
12
  import os
13
 
14
- llm = LLM(model=os.environ("OPENAI_MODEL_NAME"))
15
 
16
  """
17
  class Activity(BaseModel):
 
11
 
12
  import os
13
 
14
+ llm = LLM(model="sambanova/Meta-Llama-3.1-70B-Instruct"))
15
 
16
  """
17
  class Activity(BaseModel):