diff options
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/ChatgptAi.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g4f/Provider/ChatgptAi.py b/g4f/Provider/ChatgptAi.py index 40ad9481..9425dfb0 100644 --- a/g4f/Provider/ChatgptAi.py +++ b/g4f/Provider/ChatgptAi.py @@ -45,7 +45,9 @@ class ChatgptAi(AsyncGeneratorProvider): async with session.get(cls.url, proxy=proxy) as response: response.raise_for_status() text = await response.text() - if result := re.search(r"data-system='(.*?)'", text): + + result = re.search(r"data-system='(.*?)'", text) + if result : cls._system = json.loads(html.unescape(result.group(1))) if not cls._system: raise RuntimeError("System args not found") |