Prathamesh1420
commited on
Delete crew.py
Browse files
crew.py
DELETED
@@ -1,19 +0,0 @@
|
|
1 |
-
from crewai import Crew,Process
|
2 |
-
from agents import blog_researcher,blog_writer
|
3 |
-
from tasks import research_task,write_task
|
4 |
-
|
5 |
-
|
6 |
-
# Forming the tech-focused crew with some enhanced configurations
|
7 |
-
crew = Crew(
|
8 |
-
agents=[blog_researcher, blog_writer],
|
9 |
-
tasks=[research_task, write_task],
|
10 |
-
process=Process.sequential, # Optional: Sequential task execution is default
|
11 |
-
memory=True,
|
12 |
-
cache=True,
|
13 |
-
max_rpm=100,
|
14 |
-
share_crew=True
|
15 |
-
)
|
16 |
-
|
17 |
-
## start the task execution process with enhanced feedback
|
18 |
-
result=crew.kickoff(inputs={'topic':'AI VS ML VS DL vs Data Science'})
|
19 |
-
print(result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|