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

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