The following agent will search GIPHY for a GIF appropriate for a birthday message.
from agno.agent import Agentfrom agno.models.openai import OpenAIResponsesfrom agno.tools.giphy import GiphyToolsgif_agent = Agent( name="Gif Generator Agent", model=OpenAIResponses(id="gpt-5.2"), tools=[GiphyTools()], description="You are an AI agent that can generate gifs using Giphy.",)gif_agent.print_response("I want a gif to send to a friend for their birthday.")