Skip to main content

Overview

The YouSearchAPI tool is a tool that allows you to search the web using the YouSearchAPI.
pip install langchain-community
export YDC_API_KEY=your_api_key_here
from praisonaiagents import Agent, PraisonAIAgents
from langchain_community.utilities.you import YouSearchAPIWrapper

data_agent = Agent(instructions="Gather the weather data for Barcelona", tools=[YouSearchAPIWrapper])
editor_agent = Agent(instructions="Breifly describe the weather in Barcelona")

agents = PraisonAIAgents(agents=[data_agent, editor_agent])
agents.start()