Skip to content

Commit

Permalink
Update Tools.md (#326)
Browse files Browse the repository at this point in the history
* Update Tools.md

Fixing typo on the instantiation part

* Update Tools.md

Update tool naming
  • Loading branch information
baktakt authored Mar 11, 2024
1 parent b94de6e commit 9d3da98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/core-concepts/Tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ os.environ["OPENAI_API_KEY"] = "Your Key"
# Instantiate tools
docs_tool = DirectoryReadTool(directory='./blog-posts')
file_tool = FileReadTool()
search_tool = SeperDevTool()
search_tool = SerperDevTool()
web_rag_tool = WebsiteSearchTool()

# Create agents
researcher = Agent(
role='Market Research Analyst',
goal='Provide up-to-date market analysis of the AI industry',
backstory='An expert analyst with a keen eye for market trends.',
tools=[search_tool, website_rag],
tools=[search_tool, web_rag_tool],
verbose=True
)

Expand Down Expand Up @@ -228,4 +228,4 @@ agent = Agent(
```

## Conclusion
Tools are pivotal in extending the capabilities of CrewAI agents, enabling them to undertake a broad spectrum of tasks and collaborate effectively. When building solutions with CrewAI, leverage both custom and existing tools to empower your agents and enhance the AI ecosystem.
Tools are pivotal in extending the capabilities of CrewAI agents, enabling them to undertake a broad spectrum of tasks and collaborate effectively. When building solutions with CrewAI, leverage both custom and existing tools to empower your agents and enhance the AI ecosystem.

0 comments on commit 9d3da98

Please sign in to comment.