Create historian.py
Browse files- agents/historian.py +7 -0
agents/historian.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# agents/historian.py
|
2 |
+
|
3 |
+
from agents.base_agent import BaseAgent
|
4 |
+
|
5 |
+
class HistorianAgent(BaseAgent):
|
6 |
+
def __init__(self):
|
7 |
+
super().__init__("👨🏫 Historian", "expert in history who connects current events to the past")
|