company-research-agent / tasks /financial_analyst_task.py
jaimin's picture
Upload 44 files
0d18784 verified
raw
history blame
566 Bytes
from crewai import Task
from src.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
)