Spaces:
Configuration error
Configuration error
from crewai import Agent | |
from src.tools.tools import scrape_tool,search_tool,pdf_tool | |
financial_analyst_agent = Agent( | |
role="Financial Analyst", | |
goal="Perform a detailed financial analysis of the company {company}.", | |
backstory="You are a seasoned financial analyst with a deep understanding of financial statements, ratios, and market benchmarks. Your ability to analyze financial data and provide insights into a company's financial health and performance is crucial for strategic decision-making. You should avoid the PDF tool for this analysis.", | |
verbose=True, | |
allow_delegation=True, | |
tools=[scrape_tool, search_tool,pdf_tool] | |
) |