feat(agent-office): /api/agent-office/tarot 5 endpoint (T6)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-24 00:23:52 +09:00
parent 4623c68d4e
commit 3bf87a93fb
3 changed files with 158 additions and 0 deletions

View File

@@ -12,9 +12,11 @@ from .agents import init_agents, get_agent, get_all_agent_states, AGENT_REGISTRY
from .scheduler import init_scheduler
from . import telegram_bot
from .routers import notify as notify_router
from .routers import tarot as tarot_router
app = FastAPI()
app.include_router(notify_router.router)
app.include_router(tarot_router.router)
_cors_origins = CORS_ALLOW_ORIGINS.split(",")
app.add_middleware(