taolib.testing.multi_agent.errors#

多智能体系统错误类。

定义系统中使用的各种异常类型。

Exceptions#

MultiAgentError

多智能体系统基础错误。

LLMError

LLM模型相关错误。

ModelUnavailableError

模型不可用错误。

ModelTimeoutError

模型超时错误。

ModelRateLimitError

模型限流错误。

AgentError

智能体相关错误。

AgentNotFoundError

智能体未找到错误。

AgentBusyError

智能体忙碌错误。

TaskError

任务相关错误。

TaskNotFoundError

任务未找到错误。

TaskCancelledError

任务已取消错误。

SkillError

技能相关错误。

SkillNotFoundError

技能未找到错误。

SkillExecutionError

技能执行错误。

MessageError

消息相关错误。

SecurityError

安全相关错误。

ContentFilterError

内容过滤错误。

Module Contents#

exception taolib.testing.multi_agent.errors.MultiAgentError#

Bases: Exception

多智能体系统基础错误。

exception taolib.testing.multi_agent.errors.LLMError#

Bases: MultiAgentError

LLM模型相关错误。

exception taolib.testing.multi_agent.errors.ModelUnavailableError#

Bases: LLMError

模型不可用错误。

exception taolib.testing.multi_agent.errors.ModelTimeoutError#

Bases: LLMError

模型超时错误。

exception taolib.testing.multi_agent.errors.ModelRateLimitError#

Bases: LLMError

模型限流错误。

exception taolib.testing.multi_agent.errors.AgentError#

Bases: MultiAgentError

智能体相关错误。

exception taolib.testing.multi_agent.errors.AgentNotFoundError#

Bases: AgentError

智能体未找到错误。

exception taolib.testing.multi_agent.errors.AgentBusyError#

Bases: AgentError

智能体忙碌错误。

exception taolib.testing.multi_agent.errors.TaskError#

Bases: MultiAgentError

任务相关错误。

exception taolib.testing.multi_agent.errors.TaskNotFoundError#

Bases: TaskError

任务未找到错误。

exception taolib.testing.multi_agent.errors.TaskCancelledError#

Bases: TaskError

任务已取消错误。

exception taolib.testing.multi_agent.errors.SkillError#

Bases: MultiAgentError

技能相关错误。

exception taolib.testing.multi_agent.errors.SkillNotFoundError#

Bases: SkillError

技能未找到错误。

exception taolib.testing.multi_agent.errors.SkillExecutionError#

Bases: SkillError

技能执行错误。

exception taolib.testing.multi_agent.errors.MessageError#

Bases: MultiAgentError

消息相关错误。

exception taolib.testing.multi_agent.errors.SecurityError#

Bases: MultiAgentError

安全相关错误。

exception taolib.testing.multi_agent.errors.ContentFilterError#

Bases: SecurityError

内容过滤错误。