File size: 573 Bytes
0d18784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
)