bstraehle commited on
Commit
a512e58
·
verified ·
1 Parent(s): 2c58bbf

Create tasks.py

Browse files
Files changed (1) hide show
  1. tasks.py +25 -0
tasks.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from crewai import Task
2
+
3
+ from agents import get_researcher_agent, get_writer_agent
4
+
5
+ def get_research_task(model, verbose):
6
+ return Task(
7
+ description=(
8
+ "1. Search the web for content on topic: {topic}.\n"
9
+ "2. Scrape the 25 most relevant web sites for content."
10
+ ),
11
+ expected_output="Content on topic: {topic}.",
12
+ agent=get_researcher_agent(model, verbose),
13
+ )
14
+
15
+ def get_write_task(model, verbose):
16
+ return Task(
17
+ description=(
18
+ "1. Use the context to write a 2000-word in-depth article on topic: {topic}.\n"
19
+ "2. The output must be in markdown format (omit the triple backticks). Structure the text to include a few numbered and/or unnumbered lists.\n"
20
+ "3. At the beginning of the article, add the current date and author: Multi-Agent AI System.\n"
21
+ "4. Also at the beginning of the article, add a references section with 10 links to content provided by the Researcher (do not use example.com)."
22
+ ),
23
+ expected_output="An article on topic {topic}.",
24
+ agent=get_writer_agent(model, verbose),
25
+ )