Overview
The GoogleSearch tool is a tool that allows you to search the web using the GoogleSearch API.
pip install langchain-community langchain-google-community
os.environ["GOOGLE_CSE_ID"] = "YOUR_API_KEY"
os.environ["GOOGLE_API_KEY"] = "YOUR_API_KEY"
import os
from langchain_google_community import GoogleSearchAPIWrapper
from praisonaiagents import Agent, PraisonAIAgents
data_agent = Agent(instructions="Search about best places to visit in India during Summer", tools=[GoogleSearchAPIWrapper])
editor_agent = Agent(instructions="Write a blog article")
agents = PraisonAIAgents(agents=[data_agent, editor_agent], process='hierarchical')
agents.start()
Generate your GoogleSearch API key from Google CloudConsole by clicking on Create Credentials
To get a CSE ID, Create a Google Programmable Search Engine here
From the Overview of your newly created search engine copy the “Search engine ID”
Responses are generated using AI and may contain mistakes.