from crewai import Task from src.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 )