diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-07 09:02:48 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-07 09:02:48 +0200 |
commit | 4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6 (patch) | |
tree | 78c7dbfda4469a074434583bb1fe1dee36cc7e18 /g4f/Provider/Liaobots.py | |
parent | Add GPTalk and GptForLove Provider (diff) | |
download | gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.gz gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.bz2 gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.lz gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.xz gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.tar.zst gpt4free-4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6.zip |
Diffstat (limited to 'g4f/Provider/Liaobots.py')
-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 2e0154d5..2ab96ce3 100644 --- a/g4f/Provider/Liaobots.py +++ b/g4f/Provider/Liaobots.py @@ -2,7 +2,7 @@ from __future__ import annotations import uuid -from aiohttp import ClientSession, ClientTimeout +from aiohttp import ClientSession from ..typing import AsyncGenerator from .base_provider import AsyncGeneratorProvider @@ -42,7 +42,6 @@ class Liaobots(AsyncGeneratorProvider): messages: list[dict[str, str]], auth: str = None, proxy: str = None, - timeout: int = 30, **kwargs ) -> AsyncGenerator: model = model if model in models else "gpt-3.5-turbo" @@ -54,7 +53,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=ClientTimeout(timeout) + headers=headers ) as session: cls._auth_code = auth if isinstance(auth, str) else cls._auth_code if not cls._auth_code: |