From 3982f39424ea037aca1086d45c6f657b4bfc457c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=B2=98r=E1=B9=A8h=E0=B8=AA=E2=88=82ow?= <71973368+MrShadowDev@users.noreply.github.com> Date: Mon, 23 Oct 2023 09:46:25 +0200 Subject: 'Refactored by Sourcery' (#1125) Co-authored-by: Sourcery AI <> --- g4f/Provider/GptChatly.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'g4f/Provider/GptChatly.py') diff --git a/g4f/Provider/GptChatly.py b/g4f/Provider/GptChatly.py index f4953b78..465d2527 100644 --- a/g4f/Provider/GptChatly.py +++ b/g4f/Provider/GptChatly.py @@ -23,13 +23,15 @@ class GptChatly(AsyncProvider): cookies = get_cookies('gptchatly.com') if not cookies else cookies if not cookies: - raise RuntimeError(f"g4f.provider.GptChatly requires cookies, [refresh https://gptchatly.com on chrome]") - + raise RuntimeError( + "g4f.provider.GptChatly requires cookies, [refresh https://gptchatly.com on chrome]" + ) + if model.startswith("gpt-4"): chat_url = f"{cls.url}/fetch-gpt4-response" else: chat_url = f"{cls.url}/fetch-response" - + headers = { 'authority': 'gptchatly.com', 'accept': '*/*', @@ -45,7 +47,7 @@ class GptChatly(AsyncProvider): 'sec-fetch-site': 'same-origin', 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36', } - + async with StreamSession(headers=headers, proxies={"https": proxy}, cookies=cookies, impersonate='chrome110') as session: data = { -- cgit v1.2.3