> ## Documentation Index
> Fetch the complete documentation index at: https://phidatainc-studio-tools-doc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Giphy

> Use Giphy tools with Agno agents.

Enable Agno agents to integrate with Giphy tools for moving beyond text-only responses. Agents can search for and embed GIFs, stickers that match the tone or content of a conversation.

```python theme={null}

from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.giphy import GiphyTools

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

"""Create an agent specialized in creating gifs using Giphy """

# Example 1: Enable specific Giphy functions
gif_agent = Agent(
    name="Gif Generator Agent",
    model=OpenAIChat(id="gpt-4o"),
    tools=[GiphyTools(limit=5, enable_search_gifs=True)],
    description="You are an AI agent that can generate gifs using Giphy.",
    instructions=[
        "When the user asks you to create a gif, come up with the appropriate Giphy query and use the `search_gifs` tool to find the appropriate gif.",
    ],
)

# Example 2: Enable all Giphy functions
gif_agent_all = Agent(
    name="Full Giphy Agent",
    model=OpenAIChat(id="gpt-4o"),
    tools=[GiphyTools(limit=10, all=True)],
    description="You are an AI agent with full Giphy capabilities.",
    instructions=[
        "Use Giphy to find the perfect GIF for any situation or mood.",
        "Consider the user's context and preferences when searching.",
    ],
)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    gif_agent.print_response("I want a gif to send to a friend for their birthday.")
```

## Run the Example

```bash theme={null}
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/91_tools

# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate

python giphy_tools.py
```

For details, see [Giphy cookbook](https://github.com/agno-agi/agno/blob/main/cookbook/91_tools/giphy_tools.py).
