gpt4free/g4f/errors.py

47 lines
768 B
Python
Raw Normal View History

class ProviderNotFoundError(Exception):
...
class ProviderNotWorkingError(Exception):
...
class StreamNotSupportedError(Exception):
...
class ModelNotFoundError(Exception):
...
class ModelNotAllowedError(Exception):
...
class RetryProviderError(Exception):
...
class RetryNoProviderError(Exception):
...
class VersionNotFoundError(Exception):
...
2024-01-20 12:23:54 -05:00
class ModelNotSupportedError(Exception):
...
2024-01-23 18:46:35 -05:00
class MissingRequirementsError(Exception):
...
2024-04-05 19:18:45 -04:00
class NestAsyncioError(MissingRequirementsError):
...
class MissingAuthError(Exception):
...
class NoImageResponseError(Exception):
...
class RateLimitError(Exception):
...
2024-04-05 15:00:35 -04:00
class ResponseError(Exception):
...
class ResponseStatusError(Exception):
...