company-research-agent / tasks /financial_analyst_task.py
jaimin's picture
Update tasks/financial_analyst_task.py
406c86c verified
raw
history blame contribute delete
562 Bytes
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
)