summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/FakeGpt.py
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-11-18 12:24:39 +0100
committerGitHub <noreply@github.com>2023-11-18 12:24:39 +0100
commit2fcb3f949bbde7f5380acc68dc6b1f938dec12bc (patch)
tree035bd400b4057a744b29a0ebee96579bfbf429f6 /g4f/Provider/FakeGpt.py
parent~ | g4f `v-0.1.8.5` (diff)
parentAdd AiChatOnline, ChatgptDemoAi, ChatgptNext Providers (diff)
downloadgpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.tar
gpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.tar.gz
gpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.tar.bz2
gpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.tar.lz
gpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.tar.xz
gpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.tar.zst
gpt4free-2fcb3f949bbde7f5380acc68dc6b1f938dec12bc.zip
Diffstat (limited to 'g4f/Provider/FakeGpt.py')
-rw-r--r--g4f/Provider/FakeGpt.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/g4f/Provider/FakeGpt.py b/g4f/Provider/FakeGpt.py
index daa96737..2720845f 100644
--- a/g4f/Provider/FakeGpt.py
+++ b/g4f/Provider/FakeGpt.py
@@ -1,11 +1,11 @@
from __future__ import annotations
-import uuid, time, random, string, json
+import uuid, time, random, json
from aiohttp import ClientSession
from ..typing import AsyncResult, Messages
from .base_provider import AsyncGeneratorProvider
-from .helper import format_prompt
+from .helper import format_prompt, get_random_string
class FakeGpt(AsyncGeneratorProvider):
@@ -39,7 +39,7 @@ class FakeGpt(AsyncGeneratorProvider):
token_ids = [t["token_id"] for t in list if t["count"] == 0]
data = {
"token_key": random.choice(token_ids),
- "session_password": random_string()
+ "session_password": get_random_string()
}
async with session.post(f"{cls.url}/auth/login", data=data, proxy=proxy) as response:
response.raise_for_status()
@@ -88,7 +88,4 @@ class FakeGpt(AsyncGeneratorProvider):
except:
continue
if not last_message:
- raise RuntimeError("No valid response")
-
-def random_string(length: int = 10):
- return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(length))
+ raise RuntimeError("No valid response") \ No newline at end of file