Spaces:
Sleeping
Sleeping
File size: 232 Bytes
46b609c |
1 2 3 4 5 6 7 8 |
# agents/historian.py
from agents.base_agent import BaseAgent
class HistorianAgent(BaseAgent):
def __init__(self):
super().__init__("👨🏫 Historian", "expert in history who connects current events to the past")
|