gpt4free/g4f/errors.py
H Lohaus 79c407b939
IterListProvider support for generating images (#2441)
* IterListProvider support for generating images
* Add missing get_har_files import in Copilot
* Fix typo in dall-e-3 model name
* Add image client unittests
* Add MicrosoftDesigner provider
* Import MicrosoftDesigner and add it to the model list
2024-11-29 13:56:11 +01:00

50 lines
815 B
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 NoImageResponseError(Exception):
...
class RateLimitError(Exception):
...
class ResponseError(Exception):
...
class ResponseStatusError(Exception):
...
class NoValidHarFileError(Exception):
...