diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-02-25 07:23:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 07:23:20 +0100 |
commit | db58b58cd0dee2340f56781b830c49431bb5bec8 (patch) | |
tree | b82dabb5fc6f03104c4065207cd85f4d9ba9b848 /g4f/Provider/needs_auth | |
parent | Merge pull request #1627 from nullstreak/deepinfra (diff) | |
parent | Fix typo in system_message in FlowGpt (diff) | |
download | gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.tar gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.tar.gz gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.tar.bz2 gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.tar.lz gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.tar.xz gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.tar.zst gpt4free-db58b58cd0dee2340f56781b830c49431bb5bec8.zip |
Diffstat (limited to 'g4f/Provider/needs_auth')
-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 = { |