From 9140541179e1c2fe855acf1c2743e1800fd5052e Mon Sep 17 00:00:00 2001 From: abc <98614666+xtekky@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:40:55 +0000 Subject: ~ | improve compatibility --- g4f/Provider/unfinished/ChatAiGpt.py | 7 +++++-- g4f/Provider/unfinished/MikuChat.py | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'g4f/Provider/unfinished') diff --git a/g4f/Provider/unfinished/ChatAiGpt.py b/g4f/Provider/unfinished/ChatAiGpt.py index 9d050093..bc962623 100644 --- a/g4f/Provider/unfinished/ChatAiGpt.py +++ b/g4f/Provider/unfinished/ChatAiGpt.py @@ -43,9 +43,12 @@ class ChatAiGpt(AsyncGeneratorProvider): async with session.get(f"{cls.url}/", proxy=proxy) as response: response.raise_for_status() response = await response.text() - if result := re.search( + + result = re.search( r'data-nonce=(.*?) data-post-id=([0-9]+)', response - ): + ) + + if result: cls._nonce, cls._post_id = result.group(1), result.group(2) else: raise RuntimeError("No nonce found") diff --git a/g4f/Provider/unfinished/MikuChat.py b/g4f/Provider/unfinished/MikuChat.py index 970fb0bb..bf19631f 100644 --- a/g4f/Provider/unfinished/MikuChat.py +++ b/g4f/Provider/unfinished/MikuChat.py @@ -48,7 +48,8 @@ class MikuChat(AsyncGeneratorProvider): async for line in response.iter_lines(): if line.startswith(b"data: "): line = json.loads(line[6:]) - if chunk := line["choices"][0]["delta"].get("content"): + chunk = line["choices"][0]["delta"].get("content") + if chunk: yield chunk def k(e: str, t: int): -- cgit v1.2.3