2024-08-26 19:36:44 +08:00
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InvokeError(Exception):
|
|
|
|
|
"""Base class for all LLM exceptions."""
|
|
|
|
|
|
|
|
|
|
description: Optional[str] = None
|
|
|
|
|
|
2025-09-06 04:32:23 +09:00
|
|
|
def __init__(self, description: Optional[str] = None):
|
2024-08-26 19:36:44 +08:00
|
|
|
self.description = description
|
|
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
|
return self.description or self.__class__.__name__
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InvokeRateLimitError(InvokeError):
|
|
|
|
|
"""Raised when the Invoke returns rate limit error."""
|
|
|
|
|
|
|
|
|
|
description = "Rate Limit Error"
|