Spaces:
Running
Running
File size: 5,865 Bytes
64eefbd 488b328 880d47e 64eefbd 880d47e 64eefbd 488b328 64eefbd 10a2c49 5689088 10a2c49 f252e0f 488b328 880d47e 488b328 64eefbd 488b328 10a2c49 488b328 64eefbd 488b328 880d47e 488b328 64eefbd 488b328 10a2c49 488b328 880d47e 99bcc63 64eefbd 99bcc63 64eefbd c78dd58 64eefbd 10a2c49 c78dd58 880d47e 488b328 64eefbd 488b328 10a2c49 488b328 880d47e 488b328 64eefbd 488b328 10a2c49 488b328 64eefbd 488b328 880d47e 488b328 64eefbd 10a2c49 488b328 880d47e c78dd58 64eefbd c78dd58 64eefbd 10a2c49 c78dd58 64eefbd c78dd58 880d47e 488b328 64eefbd f252e0f 64eefbd 488b328 10a2c49 488b328 880d47e 488b328 64eefbd 488b328 64eefbd f252e0f 488b328 1c19586 64eefbd 1c19586 10a2c49 880d47e 1c19586 64eefbd 1c19586 10a2c49 1c19586 880d47e 1c19586 64eefbd 1c19586 10a2c49 1c19586 880d47e 1c19586 64eefbd 1c19586 64eefbd 1c19586 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
"""Implementation based on the Crew AI workflow"""
import typing
from crewai import LLM, Agent, Crew, Process, Task
from crewai.project import CrewBase, agent, crew, task
# Import tools from crewai_tools
# ScrapWebsiteTool: Extract content of wensite, https://docs.crewai.com/tools/scrapewebsitetool
# SerperDevTool: Search Internet, https://docs.crewai.com/tools/serperdevtool
from crewai_tools import ScrapeWebsiteTool, SerperDevTool
@CrewBase
class TravelCrew:
"""Crew to do travel planning"""
def __init__(self, model_name='Meta-Llama-3.1-70B-Instruct') -> None:
"""Initialize the crew."""
super().__init__()
self.agents_config = 'config/agents.yaml'
self.tasks_config = 'config/tasks.yaml'
self.llm = LLM(model='sambanova/%s' % model_name)
self.manager_llm = LLM(model='sambanova/%s' % model_name)
@typing.no_type_check
@agent
def personalized_activity_planner(self) -> Agent:
"""
An agent specialized to build an activity planner
Returns: The agent
"""
return Agent(
config=self.agents_config['personalized_activity_planner'],
llm=self.llm,
max_iter=1,
tools=[SerperDevTool(), ScrapeWebsiteTool()], # Example of custom tool, loaded at the beginning of file
allow_delegation=False,
)
@typing.no_type_check
@agent
def restaurant_scout(self) -> Agent:
"""
An agent specialized to scout for restaurants
Returns: The agent
"""
return Agent(
config=self.agents_config['restaurant_scout'],
llm=self.llm,
max_iter=1,
tools=[SerperDevTool(), ScrapeWebsiteTool()],
allow_delegation=False,
)
@typing.no_type_check
@agent
def interest_scout(self) -> Agent:
"""
An agent specialized to scout for specific interests
Returns: The agent
"""
return Agent(
config=self.agents_config['interest_scout'],
llm=self.llm,
max_iter=1,
tools=[SerperDevTool(), ScrapeWebsiteTool()],
allow_delegation=False,
)
@typing.no_type_check
@agent
def itinerary_compiler(self) -> Agent:
"""
An agent specialized at composing the entire itinirary
Returns: The agent
"""
return Agent(
config=self.agents_config['itinerary_compiler'],
llm=self.llm,
max_iter=1,
allow_delegation=False,
)
@typing.no_type_check
@task
def personalized_activity_planning_task(self) -> Task:
"""
A task that designs and plans for activities.
Returns: A task
"""
return Task(
config=self.tasks_config['personalized_activity_planning_task'],
llm=self.llm,
max_iter=1,
agent=self.personalized_activity_planner(),
)
@typing.no_type_check
@task
def interest_scout_task(self) -> Task:
"""
A task that plans for specific interests of the traveller.
Returns: A task
"""
return Task(config=self.tasks_config['interest_scout_task'],
llm=self.llm,
max_iter=1,
agent=self.interest_scout())
@typing.no_type_check
@task
def restaurant_scenic_location_scout_task(self) -> Task:
"""
A task that picks restaurants.
Returns: A task
"""
return Task(
config=self.tasks_config['restaurant_scenic_location_scout_task'],
llm=self.llm,
max_iter=1,
agent=self.restaurant_scout(),
)
@typing.no_type_check
@task
def itinerary_compilation_task(self) -> Task:
"""
A task that plans the complete itinerary
Returns: A task
"""
return Task(
config=self.tasks_config['itinerary_compilation_task'],
llm=self.llm,
max_iter=1,
agent=self.itinerary_compiler()
)
@typing.no_type_check
@crew
def crew(self) -> Crew:
"""
Creates the Travel Planning crew
Returns: A crew
"""
return Crew(
agents=self.agents,
tasks=self.tasks,
process=Process.sequential
)
@CrewBase
class AddressSummaryCrew:
"""Address Summary crew"""
agents_config = 'config/address_agents.yaml'
tasks_config = 'config/address_tasks.yaml'
def __init__(self, model_name='Meta-Llama-3.1-70B-Instruct') -> None:
"""Initialize the crew."""
super().__init__()
self.llm = LLM(model='sambanova/%s' % model_name)
@typing.no_type_check
@agent
def address_summarizer(self) -> Agent:
"""
Creates an agent which can summarize addresses in a Json file
Returns: An agent
"""
return Agent(
config=self.agents_config['address_summarizer'],
llm=self.llm,
max_iter=1,
allow_delegation=False,
)
@typing.no_type_check
@task
def address_compilation_task(self) -> Task:
"""
Creates a task which can summarize addresses
Returns: A Task
"""
return Task(
config=self.tasks_config['address_compilation_task'],
llm=self.llm,
max_iter=1,
agent=self.address_summarizer(),
)
@typing.no_type_check
@crew
def crew(self) -> Crew:
"""
Creates the AddressSummary crew
Returns: A Crew
"""
crew = Crew(
agents=self.agents,
tasks=self.tasks,
process=Process.sequential,
)
return crew
|