### Install Giphy Plugin Source: https://github.com/elizaos-plugins/plugin-giphy/blob/main/README.md Installs the Giphy plugin using pnpm. This is the first step to integrate GIF functionality into your agent. ```bash pnpm add @elizaos/plugin-giphy ``` -------------------------------- ### Initialize and Use Giphy Plugin Source: https://github.com/elizaos-plugins/plugin-giphy/blob/main/README.md Demonstrates how to import, initialize, and add the Giphy plugin to an ElizaOS agent. The plugin automatically handles sending GIFs based on user message context. ```typescript import { giphyPlugin } from "@elizaos/plugin-giphy"; // Initialize the plugin const plugin = giphyPlugin; // Add the plugin to your agent's plugin list const plugins = [ giphyPlugin, // ... other plugins ]; // Initialize your agent with the plugins // Example: // const agent = new Agent({ plugins, ...otherConfig }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.