company-research-agent / agents /swot_analyst_agent.py
jaimin's picture
Update agents/swot_analyst_agent.py
61ff314 verified
raw
history blame contribute delete
561 Bytes
from crewai import Agent
from 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]
)