Build lightweight AI agent admin

This commit is contained in:
Codex
2026-06-08 18:14:59 +08:00
commit e164840f43
2530 changed files with 435693 additions and 0 deletions
@@ -0,0 +1,14 @@
"""
AI 平台服务层
"""
from .llm_service import LLMService
from .chat_service import ChatService
from .workflow_service import AIWorkflowService
from .agent_service import AgentService
__all__ = [
'LLMService',
'ChatService',
'AIWorkflowService',
'AgentService',
]