You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpt4free/g4f/errors.py

35 lines
587 B
Python

class ProviderNotFoundError(Exception):
pass
class ProviderNotWorkingError(Exception):
pass
class StreamNotSupportedError(Exception):
pass
class ModelNotFoundError(Exception):
pass
class ModelNotAllowedError(Exception):
pass
class RetryProviderError(Exception):
pass
class RetryNoProviderError(Exception):
pass
class VersionNotFoundError(Exception):
pass
class NestAsyncioError(Exception):
pass
class ModelNotSupportedError(Exception):
pass
class MissingRequirementsError(Exception):
pass
class MissingAuthError(Exception):
pass