diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-25 07:16:54 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-25 07:16:54 +0100 |
commit | dd2264b616feae91642d5f430827db7cee1cf7a8 (patch) | |
tree | 888789ebaa8076b3fd2fd2cd3c6d6c098fb6b870 | |
parent | Add count word and tokens in gui (diff) | |
download | gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.tar gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.tar.gz gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.tar.bz2 gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.tar.lz gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.tar.xz gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.tar.zst gpt4free-dd2264b616feae91642d5f430827db7cee1cf7a8.zip |
-rw-r--r-- | g4f/Provider/needs_auth/OpenaiChat.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = { |