YouTube
FreeSearch and retrieve YouTube video information. Build AI agents that use YouTubewith Agno Builder's visual drag-and-drop interface — no code required to prototype.
What is the YouTube tool?
The YouTube tool is a built-in capability in the Agno framework that allows AI agents to search and retrieve youtube video information. When added to an agent in Agno Builder, the agent can autonomously decide when to invoke this tool based on the user's request.
This is a free tool — no API key or external account is needed. It works out of the box when you add it to any agent.
How to use YouTube in Agno Builder
- 1
Create an agent
Drag an Agent node onto the canvas in Agno Builder, or use one of the built-in templates.
- 2
Enable YouTube
Click the agent, go to the Tools tab, and toggle on "YouTube" from the entertainment category.
- 3
Test in chat
Open the chat panel and send a message. The agent will automatically use YouTube when relevant.
- 4
Export Python code
Click File > Export Python to get clean, runnable code with the correct imports for YouTube.
Python code example
This is the code Agno Builder exports when you use YouTube:
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.youtube import YouTubeTools
agent = Agent(
name="YouTube Agent",
model=OpenAIChat(id="gpt-4o"),
tools=[YouTubeTools()],
instructions=["Use the youtube tool to help the user."],
markdown=True,
)
agent.print_response("Help me with a youtube task")Install with: pip install agno