File size: 562 Bytes
0d18784
406c86c
0d18784
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
)