Spaces:
Sleeping
Sleeping
from crewai import Task | |
from src.agents.competitor_analyst_agent import competitor_analyst_agent | |
competitor_analyst_task = Task( | |
description=( | |
"Identify key competitors for the company/industry {company}. " | |
"Focus on competitors' business models and market positions." | |
), | |
expected_output=( | |
"A brief competitor research report that includes:\n" | |
"1. Key competitors of {company}\n" | |
"2. Overview of their market position\n" | |
"3. Similarities and differences in offerings" | |
), | |
agent=competitor_analyst_agent | |
) | |