company-research-agent / agents /market_analyst_agent.py
jaimin's picture
Update agents/market_analyst_agent.py
6e87842 verified
raw
history blame contribute delete
655 Bytes
from crewai import Agent
from tools.tools import pdf_tool,scrape_tool,search_tool
market_analyst_agent = Agent(
role="Market Analyst",
goal="Conduct a thorough market analysis for the company/industry {company}.",
backstory="You are an expert in market analysis with a keen eye for identifying key market trends, drivers, and challenges. Your ability to synthesize data from various sources and provide actionable insights is highly valued. You help companies understand their market position and the factors influencing their growth and success.",
verbose=True,
allow_delegation=True,
tools=[scrape_tool, search_tool, pdf_tool]
)