summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/needs_auth/OpenaiChat.py
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-02-25 07:23:20 +0100
committerGitHub <noreply@github.com>2024-02-25 07:23:20 +0100
commitdb58b58cd0dee2340f56781b830c49431bb5bec8 (patch)
treeb82dabb5fc6f03104c4065207cd85f4d9ba9b848 /g4f/Provider/needs_auth/OpenaiChat.py
parentMerge pull request #1627 from nullstreak/deepinfra (diff)
parentFix typo in system_message in FlowGpt (diff)
downloadgpt4free-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/OpenaiChat.py')
-rw-r--r--g4f/Provider/needs_auth/OpenaiChat.py2
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 = {