ee9bbbf676
1.项目改名为kilostar(千星) 2.后端部分进行大规模重构 3.node功能进行大规模重新设计
89 lines
3.7 KiB
Python
89 lines
3.7 KiB
Python
# Copyright 2026 zhaoxi826
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
class RetryableError(Exception):
|
|
"""基类:所有可重试错误(如网络断开、抖动等临时性故障)"""
|
|
|
|
pass
|
|
|
|
|
|
class NonRetryableError(Exception):
|
|
"""基类:所有不可重试错误(如数据验证失败、类型错误等业务逻辑故障)"""
|
|
|
|
pass
|
|
|
|
|
|
class DemandError(NonRetryableError):
|
|
"""DemandError 核心组件类。
|
|
这是一个自定义异常类,专门用于在 Demand 相关业务流程中触发中断。它携带了精确的错误上下文与追溯代码,帮助最外层网关能够统一捕获并返回友好的前端错误提示。"""
|
|
|
|
pass
|
|
|
|
|
|
class ModelNotExistError(Exception):
|
|
"""ModelNotExistError 核心组件类。
|
|
这是一个自定义异常类,专门用于在 ModelNotExist 相关业务流程中触发中断。它携带了精确的错误上下文与追溯代码,帮助最外层网关能够统一捕获并返回友好的前端错误提示。"""
|
|
|
|
pass
|
|
|
|
|
|
class UserError(Exception):
|
|
"""UserError 核心组件类。
|
|
这是一个自定义异常类,专门用于在 User 相关业务流程中触发中断。它携带了精确的错误上下文与追溯代码,帮助最外层网关能够统一捕获并返回友好的前端错误提示。"""
|
|
|
|
pass
|
|
|
|
|
|
class UserNotExistError(UserError):
|
|
"""UserNotExistError 核心组件类。
|
|
这是一个自定义异常类,专门用于在 UserNotExist 相关业务流程中触发中断。它携带了精确的错误上下文与追溯代码,帮助最外层网关能够统一捕获并返回友好的前端错误提示。"""
|
|
|
|
pass
|
|
|
|
|
|
class UserPasswordError(UserError):
|
|
"""UserPasswordError 核心组件类。
|
|
这是一个自定义异常类,专门用于在 UserPassword 相关业务流程中触发中断。它携带了精确的错误上下文与追溯代码,帮助最外层网关能够统一捕获并返回友好的前端错误提示。"""
|
|
|
|
pass
|
|
|
|
|
|
class ProviderError(Exception):
|
|
"""ProviderError 核心组件类。
|
|
这是一个模型/服务提供商适配器类,屏蔽了外部不同供应商(如 OpenAI、Anthropic 等)的底层 API 差异。它负责标准化参数组装、网络请求发送、鉴权处理以及响应结构的反序列化。"""
|
|
|
|
pass
|
|
|
|
|
|
class ProviderNotExistError(ProviderError):
|
|
"""ProviderNotExistError 核心组件类。
|
|
这是一个模型/服务提供商适配器类,屏蔽了外部不同供应商(如 OpenAI、Anthropic 等)的底层 API 差异。它负责标准化参数组装、网络请求发送、鉴权处理以及响应结构的反序列化。"""
|
|
|
|
pass
|
|
|
|
|
|
class WorkflowError(Exception):
|
|
"""WorkflowError 核心组件类。
|
|
这是一个自定义异常类,专门用于在 Workflow 相关业务流程中触发中断。它携带了精确的错误上下文与追溯代码,帮助最外层网关能够统一捕获并返回友好的前端错误提示。"""
|
|
|
|
pass
|
|
|
|
|
|
class WorkflowExit(WorkflowError):
|
|
"""WorkflowExit 核心组件类。
|
|
这是一个领域数据模型或功能封装类,承载了 WorkflowExit 相关的内聚属性定义与状态维护。它的存在隔离了局部的业务复杂性,并对外提供了类型安全的访问接口。"""
|
|
|
|
pass
|