Spaces:
Configuration error
Configuration error
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 | |
) |