bstraehle commited on
Commit
cba1cca
·
verified ·
1 Parent(s): 747a549

Update tasks.py

Browse files
Files changed (1) hide show
  1. tasks.py +3 -3
tasks.py CHANGED
@@ -16,7 +16,7 @@ def get_content_planning_task():
16
  expected_output="A comprehensive content plan document "
17
  "with an outline, audience analysis, "
18
  "SEO keywords, and resources.",
19
- agent=planner,
20
  )
21
 
22
  def get_content_writing_task():
@@ -36,7 +36,7 @@ def get_content_writing_task():
36
  expected_output="A well-written blog post "
37
  "in markdown format, ready for publication, "
38
  "each section should have 2 or 3 paragraphs.",
39
- agent=writer,
40
  )
41
 
42
  def get_editing_task():
@@ -47,5 +47,5 @@ def get_editing_task():
47
  expected_output="A well-written blog post in markdown format, "
48
  "ready for publication, "
49
  "each section should have 2 or 3 paragraphs.",
50
- agent=editor
51
  )
 
16
  expected_output="A comprehensive content plan document "
17
  "with an outline, audience analysis, "
18
  "SEO keywords, and resources.",
19
+ agent=get_content_planner_agent(),
20
  )
21
 
22
  def get_content_writing_task():
 
36
  expected_output="A well-written blog post "
37
  "in markdown format, ready for publication, "
38
  "each section should have 2 or 3 paragraphs.",
39
+ agent=get_content_writer_agent(),
40
  )
41
 
42
  def get_editing_task():
 
47
  expected_output="A well-written blog post in markdown format, "
48
  "ready for publication, "
49
  "each section should have 2 or 3 paragraphs.",
50
+ agent=get_editor_agent()
51
  )