Spaces:
Configuration error
Configuration error
File size: 529 Bytes
14ad1cc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from crewai import Task
from src.agents.market_analyst_agent import market_analyst_agent
market_analyst_task = Task(
description=(
"Conduct a market analysis for the company/industry {company}. "
"Identify major trends and drivers affecting the industry."
),
expected_output=(
"A market analysis report for {company}, including:\n"
"1. Key market trends\n"
"2. Drivers impacting the industry\n"
"3. Challenges and opportunities"
),
agent=market_analyst_agent
) |