Agent
Learn more →A loop that reads the chat, calls tools, and answers. Subclass it, give it a prompt - that’s an agent.
from cat import Agent
class Poet(Agent):
slug = "poet"
name = "Poet"
description = "Answers every message in rhyme"
system_prompt = "You are a poet and talk in rhyme"