feat(agent-office): LottoAgent 등록 + seed + 텔레그램 메타
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user