bstraehle commited on
Commit
15a87e4
1 Parent(s): ae8f8cf

Update tasks.py

Browse files
Files changed (1) hide show
  1. tasks.py +2 -4
tasks.py CHANGED
@@ -15,10 +15,8 @@ def get_research_task(model):
15
  def get_blog_task(model):
16
  return Task(
17
  description=(
18
- "1. Use the context to write a LinkedIn post on topic {topic}.\n"
19
- "2. Structure the post into introduction, body, and conclusion.\n"
20
- "3. Use emojis and hashtags."
21
  ),
22
- expected_output="A LinkedIn post on topic {topic}.",
23
  agent=get_blogger_agent(model),
24
  )
 
15
  def get_blog_task(model):
16
  return Task(
17
  description=(
18
+ "Use the context to write a LinkedIn social media post on topic {topic}."
 
 
19
  ),
20
+ expected_output="A LinkedIn social media post on topic {topic}.",
21
  agent=get_blogger_agent(model),
22
  )