mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-23 19:11:48 +03:00
79c407b939
* 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
50 lines
815 B
Python
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):
|
|
... |