This commit is contained in:
2026-03-24 18:07:22 +08:00
parent e062368ef2
commit 9a16f738d8
121 changed files with 8904 additions and 3940 deletions
+24
View File
@@ -0,0 +1,24 @@
"""外部集成模块"""
from .ragflow_client import RagflowClient, extract_table_name
from .ragflow_sync import RagflowSync
# 延迟导入 nacos(可选依赖)
try:
from .nacos_service import NacosManager, NacosConfig, ServiceConfig, load_nacos_config, load_service_config
__all__ = [
"RagflowClient",
"extract_table_name",
"RagflowSync",
"NacosManager",
"NacosConfig",
"ServiceConfig",
"load_nacos_config",
"load_service_config",
]
except ImportError:
__all__ = [
"RagflowClient",
"extract_table_name",
"RagflowSync",
]