Guide for using the YouSearchAPI tool with PraisonAI agents.
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()