company-research-agent / agents /competitor_analyst_agent.py
jaimin's picture
Update agents/competitor_analyst_agent.py
403d2fc verified
raw
history blame contribute delete
799 Bytes
from crewai import Agent
from tools.tools import pdf_tool,scrape_tool,search_tool,comp_tool
competitor_analyst_agent = Agent(
role="Competitor Researcher",
goal="Uncover and analyze key competitors for {company}.",
backstory="You are a seasoned researcher with an extraordinary ability to uncover the latest developments and emerging competitors for any company, especially when it comes to {company}. Your expertise lies in sifting through information, identifying key trends, and pinpointing companies that are poised to disrupt the market. Whether it's analyzing business models or tracking industry movements, you are known for your strategic approach to competitor analysis.",
verbose=True,
allow_delegation=True,
tools=[scrape_tool, search_tool, comp_tool, pdf_tool]
)