diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-02-05 14:45:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 14:45:09 +0100 |
commit | c5dd7eea759d9125a44b1e6ffab9668f249c9312 (patch) | |
tree | adc0526f148e02305acb0a59708d2ffad2eb03cd /g4f | |
parent | Fix key error in set_cookies (diff) | |
parent | Change GeekGPT and FakeGPT status to inactive as owner statement: https://linux.do/t/topic/1051 (diff) | |
download | gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.tar gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.tar.gz gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.tar.bz2 gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.tar.lz gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.tar.xz gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.tar.zst gpt4free-c5dd7eea759d9125a44b1e6ffab9668f249c9312.zip |
Diffstat (limited to 'g4f')
-rw-r--r-- | g4f/Provider/FakeGpt.py | 2 | ||||
-rw-r--r-- | g4f/Provider/GeekGpt.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/g4f/Provider/FakeGpt.py b/g4f/Provider/FakeGpt.py index a88f3682..ee14abf4 100644 --- a/g4f/Provider/FakeGpt.py +++ b/g4f/Provider/FakeGpt.py @@ -11,7 +11,7 @@ from .helper import format_prompt, get_random_string class FakeGpt(AsyncGeneratorProvider): url = "https://chat-shared2.zhile.io" supports_gpt_35_turbo = True - working = True + working = False _access_token = None _cookie_jar = None diff --git a/g4f/Provider/GeekGpt.py b/g4f/Provider/GeekGpt.py index f53ec9de..f1dea9b1 100644 --- a/g4f/Provider/GeekGpt.py +++ b/g4f/Provider/GeekGpt.py @@ -8,7 +8,7 @@ from json import dumps class GeekGpt(AbstractProvider): url = 'https://chat.geekgpt.org' - working = True + working = False supports_message_history = True supports_stream = True supports_gpt_35_turbo = True |