Files
crewAI/src/crewai_tools/tools/serpapi_tool
Terry Tan Yongsheng 81981e43b6 Add type hints
2024-12-17 13:45:50 +08:00
..
2024-12-17 11:09:38 +08:00
2024-12-17 13:45:50 +08:00

SerpApi Tools

Description

SerpApi tools are built for searching information in the internet. It currently supports:

  • Google Search
  • Google Shopping

To successfully make use of SerpApi tools, you have to have SERPAPI_API_KEY set in the environment. To get the API key, register a free account at SerpApi.

Installation

To start using the SerpApi Tools, you must first install the crewai_tools package. This can be easily done with the following command:

pip install 'crewai[tools]'

Examples

The following example demonstrates how to initialize the tool

from crewai_tools import SerpApiGoogleSearchTool

tool = SerpApiGoogleSearchTool()

Google Shopping

from crewai_tools import SerpApiGoogleShoppingTool

tool = SerpApiGoogleShoppingTool()