diff options
Diffstat (limited to 'g4f')
-rw-r--r-- | g4f/Provider/Liaobots.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/g4f/Provider/Liaobots.py b/g4f/Provider/Liaobots.py index a16b3cb3..b3bd6540 100644 --- a/g4f/Provider/Liaobots.py +++ b/g4f/Provider/Liaobots.py @@ -124,14 +124,12 @@ class Liaobots(AsyncGeneratorProvider, ProviderModelMixin): if not cls._auth_code: async with session.post( "https://liaobots.work/recaptcha/api/login", - proxy=proxy, data={"token": "abcdefghijklmnopqrst"}, verify_ssl=False ) as response: await raise_for_status(response) async with session.post( "https://liaobots.work/api/user", - proxy=proxy, json={"authcode": ""}, verify_ssl=False ) as response: @@ -148,7 +146,6 @@ class Liaobots(AsyncGeneratorProvider, ProviderModelMixin): } async with session.post( "https://liaobots.work/api/chat", - proxy=proxy, json=data, headers={"x-auth-code": cls._auth_code}, verify_ssl=False @@ -158,4 +155,4 @@ class Liaobots(AsyncGeneratorProvider, ProviderModelMixin): if b"<html coupert-item=" in chunk: raise RuntimeError("Invalid session") if chunk: - yield chunk.decode() + yield chunk.decode(errors="ignore") |