summaryrefslogtreecommitdiffstats
path: root/g4f/errors.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-06 01:18:45 +0200
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2024-04-06 01:18:45 +0200
commita4ca5773bd9602951af0ccc11f7e219dfb93732a (patch)
tree60beaccf6b583663d75f9381cfc0395e4b1d3be6 /g4f/errors.py
parentAdd Groq and Openai interfaces, Add integration tests (diff)
downloadgpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.gz
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.bz2
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.lz
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.xz
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.tar.zst
gpt4free-a4ca5773bd9602951af0ccc11f7e219dfb93732a.zip
Diffstat (limited to '')
-rw-r--r--g4f/errors.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/g4f/errors.py b/g4f/errors.py
index 6cb5d177..3d553ba6 100644
--- a/g4f/errors.py
+++ b/g4f/errors.py
@@ -22,15 +22,15 @@ class RetryNoProviderError(Exception):
class VersionNotFoundError(Exception):
...
-class NestAsyncioError(Exception):
- ...
-
class ModelNotSupportedError(Exception):
...
class MissingRequirementsError(Exception):
...
+class NestAsyncioError(MissingRequirementsError):
+ ...
+
class MissingAuthError(Exception):
...