From dd2264b616feae91642d5f430827db7cee1cf7a8 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Sun, 25 Feb 2024 07:16:54 +0100 Subject: Fix cookies is None bug --- g4f/Provider/needs_auth/OpenaiChat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/g4f/Provider/needs_auth/OpenaiChat.py b/g4f/Provider/needs_auth/OpenaiChat.py index 001f5a3c..556c3d9b 100644 --- a/g4f/Provider/needs_auth/OpenaiChat.py +++ b/g4f/Provider/needs_auth/OpenaiChat.py @@ -336,7 +336,7 @@ class OpenaiChat(AsyncGeneratorProvider, ProviderModelMixin): if cls._args is None and cookies is None: cookies = get_cookies("chat.openai.com", False) api_key = kwargs["access_token"] if "access_token" in kwargs else api_key - if api_key is None: + if api_key is None and cookies is not None: api_key = cookies["access_token"] if "access_token" in cookies else api_key if cls._args is None: cls._args = { -- cgit v1.2.3