AI Agent 定时任务跟踪、监控、状态看板系统。 - FastAPI + Vue3 单体应用 - AI Agent 一键接入(批量注册 API) - 暗色主题 Dashboard - 后台调度器 + 超时告警 - 飞书/邮件/Webhook 多渠道通知 - Base URL 可配置 - Gunicorn 生产部署
24 lines
871 B
Python
24 lines
871 B
Python
"""Pydantic schema registry."""
|
|
|
|
from app.schemas.agent import AgentBatchRegister, AgentBatchRegisterResult, AgentCreate, AgentHeartbeat, AgentOut, AgentUpdate # noqa: F401
|
|
from app.schemas.execution import ExecutionOut, ExecutionReport # noqa: F401
|
|
from app.schemas.notification import ( # noqa: F401
|
|
AlertAcknowledge,
|
|
AlertOut,
|
|
AlertRuleCreate,
|
|
AlertRuleOut,
|
|
NotificationChannelCreate,
|
|
NotificationChannelOut,
|
|
NotificationChannelUpdate,
|
|
)
|
|
from app.schemas.task import TaskCreate, TaskOut, TaskUpdate # noqa: F401
|
|
|
|
__all__ = [
|
|
"AgentCreate", "AgentUpdate", "AgentOut", "AgentHeartbeat",
|
|
"TaskCreate", "TaskUpdate", "TaskOut",
|
|
"ExecutionReport", "ExecutionOut",
|
|
"NotificationChannelCreate", "NotificationChannelUpdate", "NotificationChannelOut",
|
|
"AlertRuleCreate", "AlertRuleOut",
|
|
"AlertOut", "AlertAcknowledge",
|
|
]
|