2023-12-10 23:56:06 +00:00
|
|
|
class ProviderNotFoundError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
class ProviderNotWorkingError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
class StreamNotSupportedError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
class ModelNotFoundError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
2024-01-01 16:48:57 +00:00
|
|
|
class ModelNotAllowedError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
class RetryProviderError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
class RetryNoProviderError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2023-12-10 23:56:06 +00:00
|
|
|
|
|
|
|
class VersionNotFoundError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2024-01-20 17:23:54 +00:00
|
|
|
|
|
|
|
class NestAsyncioError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2024-01-23 18:44:48 +00:00
|
|
|
|
|
|
|
class ModelNotSupportedError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2024-01-23 23:46:35 +00:00
|
|
|
|
2024-01-27 01:00:44 +00:00
|
|
|
class MissingRequirementsError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
2024-01-26 06:54:13 +00:00
|
|
|
|
2024-02-08 21:02:52 +00:00
|
|
|
class MissingAuthError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|
|
|
|
|
|
|
|
class NoImageResponseError(Exception):
|
2024-03-08 09:12:13 +00:00
|
|
|
...
|
|
|
|
|
|
|
|
class RateLimitError(Exception):
|
2024-03-12 01:06:06 +00:00
|
|
|
...
|
|
|
|
|
|
|
|
class ResponseStatusError(Exception):
|
2024-02-12 10:41:27 +00:00
|
|
|
...
|