File size: 641 Bytes
0d18784
7fdd5b8
0d18784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from crewai import Task
from agents.industry_analyst_agent import industry_analyst_agent

industry_analyst_task = Task(
    description=(
        "Research and analyze this company/industry {company}. "
        "Identify key offerings, strategic focus areas, and market position. "
        "Provide an overview of the industry landscape, including major players and challenges."
    ),
    expected_output=(
        "A summary report on {company}, including:\n"
        "1. Company/Industry overview\n"
        "2. Key offerings\n"
        "3. Strategic focus areas\n"
        "4. Major competitors"
    ),
    agent=industry_analyst_agent
)