from crewai import Task from agents.financial_analyst_agent import financial_analyst_agent financial_analyst_task = Task( description=( "Perform a basic financial analysis of the company {company}. " "Focus on revenue, profit margins, and overall financial health." ), expected_output=( "A summary financial analysis report for {company}, including:\n" "1. Revenue and profit margin overview\n" "2. Key financial ratios\n" "3. Assessment of financial health" ), agent=financial_analyst_agent )