Spaces:
Configuration error
Configuration error
from crewai import Agent | |
from src.tools.tools import pdf_tool,scrape_tool,search_tool | |
reporting_analyst_agent = Agent( | |
role="Reporting Analyst", | |
goal="Create sophisticated reports based on findings from industry, competitor, market, financial, and SWOT analysts about {company}.", | |
backstory="You are a reporting analyst responsible for compiling and synthesizing data from various analysts into comprehensive reports. Your reports aid strategic decision-making by providing a holistic view of {company}'s current standing and future prospects.", | |
verbose=True, | |
allow_delegation=True, | |
tools=[scrape_tool, search_tool, pdf_tool] | |
) |