From 88d2cbff099df00944ed6dfb6c73b1b5e8dfc7f9 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Thu, 5 Oct 2023 05:13:37 +0200 Subject: Add AiAsk, Chatgpt4Online, ChatgptDemo and ChatgptX Provider Fix Bing, Liaobots and ChatgptAi Provider Add "gpt_35_long" model and custom timeout --- g4f/Provider/Ylokh.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'g4f/Provider/Ylokh.py') diff --git a/g4f/Provider/Ylokh.py b/g4f/Provider/Ylokh.py index 3c8b32dd..a15f7894 100644 --- a/g4f/Provider/Ylokh.py +++ b/g4f/Provider/Ylokh.py @@ -19,6 +19,7 @@ class Ylokh(AsyncGeneratorProvider): messages: list[dict[str, str]], stream: bool = True, proxy: str = None, + timeout: int = 30, **kwargs ) -> AsyncGenerator: model = model if model else "gpt-3.5-turbo" @@ -39,7 +40,8 @@ class Ylokh(AsyncGeneratorProvider): } async with StreamSession( headers=headers, - proxies={"https": proxy} + proxies={"https": proxy}, + timeout=timeout ) as session: async with session.post("https://chatapi.ylokh.xyz/v1/chat/completions", json=data) as response: response.raise_for_status() -- cgit v1.2.3