company-research-agent / tasks /competitor_analyst_task.py
jaimin's picture
Update tasks/competitor_analyst_task.py
5286797 verified
raw
history blame
569 Bytes
from crewai import Task
from 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
)