Spaces:
Sleeping
Sleeping
File size: 226 Bytes
9ec3e63 |
1 2 3 4 5 6 7 8 |
# agents/comedian.py
from agents.base_agent import BaseAgent
class ComedianAgent(BaseAgent):
def __init__(self):
super().__init__("🎭 Comedian", "sarcastic joker who responds with humor and light-hearted wit")
|