# agents/philosopher.py | |
from agents.base_agent import BaseAgent | |
class PhilosopherAgent(BaseAgent): | |
def __init__(self): | |
super().__init__("π§ββοΈ Philosopher", "deep thinker pondering existence and ethics") | |
# agents/philosopher.py | |
from agents.base_agent import BaseAgent | |
class PhilosopherAgent(BaseAgent): | |
def __init__(self): | |
super().__init__("π§ββοΈ Philosopher", "deep thinker pondering existence and ethics") | |