diff options
Diffstat (limited to 'g4f/Provider/ChatgptDemo.py')
-rw-r--r-- | g4f/Provider/ChatgptDemo.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/g4f/Provider/ChatgptDemo.py b/g4f/Provider/ChatgptDemo.py index 9efa89ba..bc592ca6 100644 --- a/g4f/Provider/ChatgptDemo.py +++ b/g4f/Provider/ChatgptDemo.py @@ -37,10 +37,13 @@ class ChatgptDemo(AsyncGeneratorProvider): async with session.get(f"{cls.url}/", proxy=proxy) as response: response.raise_for_status() response = await response.text() - result = re.search(r'<div id="USERID" style="display: none">(.*?)<\/div>', response) - if not result: + if result := re.search( + r'<div id="USERID" style="display: none">(.*?)<\/div>', + response, + ): + user_id = result.group(1) + else: raise RuntimeError("No user id found") - user_id = result.group(1) async with session.post(f"{cls.url}/new_chat", json={"user_id": user_id}, proxy=proxy) as response: response.raise_for_status() chat_id = (await response.json())["id_"] @@ -56,6 +59,5 @@ class ChatgptDemo(AsyncGeneratorProvider): async for line in response.content: if line.startswith(b"data: "): line = json.loads(line[6:-1]) - chunk = line["choices"][0]["delta"].get("content") - if chunk: + if chunk := line["choices"][0]["delta"].get("content"): yield chunk
\ No newline at end of file |