bstraehle commited on
Commit
c1636a1
1 Parent(s): ddf4b3b

Update tasks.py

Browse files
Files changed (1) hide show
  1. tasks.py +2 -2
tasks.py CHANGED
@@ -15,8 +15,8 @@ def get_research_task(model):
15
  def get_blog_task(model):
16
  return Task(
17
  description=(
18
- "Use the context to write a {length}-word blog post on topic {topic}."
19
  ),
20
- expected_output="A {length}-word blog post on topic {topic}.",
21
  agent=get_blogger_agent(model),
22
  )
 
15
  def get_blog_task(model):
16
  return Task(
17
  description=(
18
+ "Use the context to write a {word_count}-word blog post on topic {topic}."
19
  ),
20
+ expected_output="A {word_count}-word blog post on topic {topic}.",
21
  agent=get_blogger_agent(model),
22
  )