ead5f83bee
dependencies.py 拆分为 dependencies/ 包; 新增 vision/ragflow_ingestion/neo4j 客户端与 h5_ai_task; alembic 045 图置信度迁移; 响应契约统一收尾。
26 lines
866 B
Python
26 lines
866 B
Python
# =============================================================================
|
|
# 企微IT智能服务台 — 外部系统集成 异常/基类 统一出口
|
|
# =============================================================================
|
|
# 说明:自动化引擎服务层(app.services.automation.*)统一从本模块导入
|
|
# BaseClientError / BaseClient。为避免重复定义,此处直接复用
|
|
# app.core.clients.base 的权威实现。
|
|
# =============================================================================
|
|
|
|
from app.core.clients.base import ( # noqa: F401
|
|
BaseClient,
|
|
BaseClientError,
|
|
ClientAPIError,
|
|
ClientAuthError,
|
|
ClientConfigError,
|
|
ClientConnectionError,
|
|
)
|
|
|
|
__all__ = [
|
|
"BaseClient",
|
|
"BaseClientError",
|
|
"ClientConfigError",
|
|
"ClientConnectionError",
|
|
"ClientAuthError",
|
|
"ClientAPIError",
|
|
]
|