Initial lightweight AI agent admin

This commit is contained in:
Hermes Agent
2026-06-08 15:05:57 +08:00
commit 0e485492cf
49 changed files with 4520 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
from app.models.ai import (
Agent,
AgentConversation,
AgentMessage,
AgentTeam,
CollaborationRun,
KnowledgeBase,
LLMModel,
LLMProvider,
Workflow,
WorkflowRun,
)
from app.models.core import Announcement, Menu, Permission, Role, User
__all__ = [
"Agent",
"AgentConversation",
"AgentMessage",
"AgentTeam",
"Announcement",
"CollaborationRun",
"KnowledgeBase",
"LLMModel",
"LLMProvider",
"Menu",
"Permission",
"Role",
"User",
"Workflow",
"WorkflowRun",
]