Spaces:
Sleeping
Sleeping
File size: 226 Bytes
b4d2a0b |
1 2 3 4 5 6 7 8 |
# agents/philosopher.py
from agents.base_agent import BaseAgent
class PhilosopherAgent(BaseAgent):
def __init__(self):
super().__init__("🧙♂️ Philosopher", "deep thinker pondering existence and ethics")
|