mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 01:48:03 +00:00
* fix: celery callbacks * fix: s3 + skill creator * fix: resumable when there's params * fix: add distributed cache * fix: do durable context stack * fix: mcp tools * fix: present server tool * fix: add cache to the skills * fix: mcp * fix: mypy
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
"""Define typed errors for context assembly validation."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class ContextErrorCode(StrEnum):
|
|
"""Define stable error codes for context module failures."""
|
|
|
|
TOOL_NAME_CONFLICT = "TOOL_NAME_CONFLICT"
|
|
NON_RESUMABLE_TOOL = "NON_RESUMABLE_TOOL"
|
|
|
|
|
|
class ContextDomainError(Exception):
|
|
"""Represent a typed context domain error with stable code and message."""
|
|
|
|
def __init__(self, code: ContextErrorCode, message: str) -> None:
|
|
"""Initialize the typed context domain error."""
|
|
self.code = code
|
|
self.message = message
|
|
super().__init__(message)
|
|
|
|
|
|
class ToolNameConflictError(ContextDomainError):
|
|
"""Raise when duplicate tool names are detected across tool layers."""
|
|
|
|
def __init__(self, message: str) -> None:
|
|
"""Initialize a tool-name-conflict error."""
|
|
super().__init__(ContextErrorCode.TOOL_NAME_CONFLICT, message)
|
|
|
|
|
|
class NonResumableToolError(ContextDomainError):
|
|
"""Raise when a server tool cannot be rebuilt after serialization."""
|
|
|
|
def __init__(self, message: str) -> None:
|
|
super().__init__(ContextErrorCode.NON_RESUMABLE_TOOL, message)
|