feat(agent-office): LottoAgent 등록 + seed + 텔레그램 메타

This commit is contained in:
2026-04-15 08:28:10 +09:00
parent cc17c29266
commit 7c4d7b4534
4 changed files with 51 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ from .stock import StockAgent
from .music import MusicAgent
from .blog import BlogAgent
from .realestate import RealestateAgent
from .lotto import LottoAgent
AGENT_REGISTRY = {}
@@ -10,6 +11,7 @@ def init_agents():
AGENT_REGISTRY["music"] = MusicAgent()
AGENT_REGISTRY["blog"] = BlogAgent()
AGENT_REGISTRY["realestate"] = RealestateAgent()
AGENT_REGISTRY["lotto"] = LottoAgent()
def get_agent(agent_id: str):
return AGENT_REGISTRY.get(agent_id)