company-research-agent / agents /swot_analyst_agent.py
jaimin's picture
Upload 44 files
0d18784 verified
raw
history blame
565 Bytes
from crewai import Agent
from src.tools.tools import pdf_tool,scrape_tool,search_tool
swot_analyst_agent = Agent(
role="SWOT Analyst",
goal="Conduct a comprehensive SWOT analysis for the company {company}.",
backstory="You are an expert in SWOT analysis, skilled at identifying a company's strengths, weaknesses, opportunities, and threats. Your ability to provide a balanced and insightful analysis is essential for strategic planning and risk management.",
verbose=True,
allow_delegation=True,
tools=[scrape_tool, search_tool, pdf_tool]
)