diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-06 18:21:56 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-06 18:21:56 +0200 |
commit | af9ed889c11f2ca5f1df96c40f072012a68b5713 (patch) | |
tree | 23259ad64f84a3397f197549fcdd12b7c2563707 /g4f/Provider/Liaobots.py | |
parent | ~ | g4f v-0.1.5.0 (diff) | |
download | gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.tar gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.tar.gz gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.tar.bz2 gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.tar.lz gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.tar.xz gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.tar.zst gpt4free-af9ed889c11f2ca5f1df96c40f072012a68b5713.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/Liaobots.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/g4f/Provider/Liaobots.py b/g4f/Provider/Liaobots.py index e65c3a0d..2e0154d5 100644 --- a/g4f/Provider/Liaobots.py +++ b/g4f/Provider/Liaobots.py @@ -1,9 +1,8 @@ from __future__ import annotations -import json import uuid -from aiohttp import ClientSession +from aiohttp import ClientSession, ClientTimeout from ..typing import AsyncGenerator from .base_provider import AsyncGeneratorProvider @@ -55,7 +54,7 @@ class Liaobots(AsyncGeneratorProvider): "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36", } async with ClientSession( - headers=headers, timeout=timeout + headers=headers, timeout=ClientTimeout(timeout) ) as session: cls._auth_code = auth if isinstance(auth, str) else cls._auth_code if not cls._auth_code: |