Giphy
Prerequisites
export GIPHY_API_KEY=***Example
from bitca.agent import Agent
from bitca.model.openai import OpenAIChat
from bitca.tools.giphy import GiphyTools
gif_agent = Agent(
name="Gif Generator Agent",
model=OpenAIChat(id="gpt-4o"),
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.")Toolkit Params
Parameter
Type
Default
Description
Toolkit Functions
Function
Description
Last updated