Files
gpt4free/g4f/errors.py
hlohaus fa17ce1bd6 Delete buckets with the conversation
Fix lightbox for uploaded images
Fix save media content
Fix TypeGPT and Cloudflare provider
2025-03-29 11:22:22 +01:00

59 lines
1.1 KiB
Python

class ProviderNotFoundError(Exception):
...
class ProviderNotWorkingError(Exception):
...
class StreamNotSupportedError(Exception):
...
class ModelNotFoundError(Exception):
...
class ModelNotAllowedError(Exception):
...
class RetryProviderError(Exception):
...
class RetryNoProviderError(Exception):
...
class VersionNotFoundError(Exception):
...
class ModelNotSupportedError(Exception):
...
class MissingRequirementsError(Exception):
...
class NestAsyncioError(MissingRequirementsError):
...
class MissingAuthError(Exception):
...
class PaymentRequiredError(Exception):
...
class NoMediaResponseError(Exception):
...
class ResponseError(Exception):
...
class ResponseStatusError(Exception):
...
class RateLimitError(ResponseStatusError):
...
class NoValidHarFileError(Exception):
...
class TimeoutError(Exception):
"""Raised for timeout errors during API requests."""
class ConversationLimitError(Exception):
"""Raised for conversation limit during API requests to AI endpoint."""