This commit is contained in:
WangCham
2025-06-25 14:32:53 +08:00
committed by Junyan Qin
parent 348f6d9eaa
commit 4bcc06c955
14 changed files with 1305 additions and 0 deletions

View File

@@ -27,6 +27,10 @@ from ..storage import mgr as storagemgr
from ..utils import logcache
from . import taskmgr
from . import entities as core_entities
from ...pkg.rag.knowledge import RAG_Manager
class Application:
@@ -99,6 +103,8 @@ class Application:
storage_mgr: storagemgr.StorageMgr = None
knowledge_base_service: RAG_Manager = None
# ========= HTTP Services =========
user_service: user_service.UserService = None
@@ -111,6 +117,7 @@ class Application:
bot_service: bot_service.BotService = None
def __init__(self):
pass