Spaces:
Running
Running
from crewai import Task | |
from agents import get_researcher_agent, get_blogger_agent | |
def get_research_task(model): | |
return Task( | |
description=( | |
"1. Search the web for content on topic {topic}.\n" | |
"2. Scrape the 3 most relevant web sites for content." | |
), | |
expected_output="Content on topic {topic}.", | |
agent=get_researcher_agent(model), | |
) | |
def get_blog_task(model): | |
return Task( | |
description=( | |
"Use the context to write a LinkedIn social media post on topic {topic}." | |
), | |
expected_output="A LinkedIn social media post on topic {topic}.", | |
agent=get_blogger_agent(model), | |
) |