mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-10-05 16:26:57 +08:00

* Add Path and PathLike support when uploading images Improve raise_for_status in special cases Move ImageResponse to providers.response module Improve OpenaiChat and OpenaiAccount providers Add Sources for web_search in OpenaiChat Add JsonConversation for import and export conversations to js Add RequestLogin response type Add TitleGeneration support in OpenaiChat and gui * Improve Docker Container Guide in README.md * Add tool calls api support, add search tool support
50 lines
825 B
Python
50 lines
825 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 ResponseError(Exception):
|
|
...
|
|
|
|
class ResponseStatusError(Exception):
|
|
...
|
|
|
|
class RateLimitError(ResponseStatusError):
|
|
...
|
|
|
|
class NoValidHarFileError(Exception):
|
|
... |