Prathamesh1420 commited on
Commit
56b2fb9
·
verified ·
1 Parent(s): 870f69f

Delete crew.py

Browse files
Files changed (1) hide show
  1. crew.py +0 -19
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)