aymnsk commited on
Commit
b4d2a0b
·
verified ·
1 Parent(s): ef50bde

Create philosopher.py

Browse files
Files changed (1) hide show
  1. agents/philosopher.py +7 -0
agents/philosopher.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ # agents/philosopher.py
2
+
3
+ from agents.base_agent import BaseAgent
4
+
5
+ class PhilosopherAgent(BaseAgent):
6
+ def __init__(self):
7
+ super().__init__("🧙‍♂️ Philosopher", "deep thinker pondering existence and ethics")