mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-19 03:25:32 +00:00
26 lines
444 B
Python
26 lines
444 B
Python
|
class ProviderNotFoundError(Exception):
|
||
|
pass
|
||
|
|
||
|
class ProviderNotWorkingError(Exception):
|
||
|
pass
|
||
|
|
||
|
class StreamNotSupportedError(Exception):
|
||
|
pass
|
||
|
|
||
|
class AuthenticationRequiredError(Exception):
|
||
|
pass
|
||
|
|
||
|
class ModelNotFoundError(Exception):
|
||
|
pass
|
||
|
|
||
|
class ModelNotAllowed(Exception):
|
||
|
pass
|
||
|
|
||
|
class RetryProviderError(Exception):
|
||
|
pass
|
||
|
|
||
|
class RetryNoProviderError(Exception):
|
||
|
pass
|
||
|
|
||
|
class VersionNotFoundError(Exception):
|
||
|
pass
|