diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-10-25 15:07:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 15:07:40 +0200 |
commit | a167970d766671ccb79613dbeacf5747f9c3f2bf (patch) | |
tree | 1e6c5479bd3793cfef48775229764c22881e5e8a /g4f/Provider/FakeGpt.py | |
parent | Merge pull request #1152 from guspan-tanadi/Providerlinkpath-1 (diff) | |
parent | Indicated support of message history in GptForLove.py (diff) | |
download | gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.tar gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.tar.gz gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.tar.bz2 gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.tar.lz gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.tar.xz gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.tar.zst gpt4free-a167970d766671ccb79613dbeacf5747f9c3f2bf.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/FakeGpt.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g4f/Provider/FakeGpt.py b/g4f/Provider/FakeGpt.py index 5bce1280..a89425d3 100644 --- a/g4f/Provider/FakeGpt.py +++ b/g4f/Provider/FakeGpt.py @@ -10,6 +10,7 @@ from .helper import format_prompt class FakeGpt(AsyncGeneratorProvider): url = "https://chat-shared2.zhile.io" + supports_message_history = True supports_gpt_35_turbo = True working = True _access_token = None @@ -91,4 +92,4 @@ class FakeGpt(AsyncGeneratorProvider): raise RuntimeError("No valid response") def random_string(length: int = 10): - return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(length))
\ No newline at end of file + return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(length)) |