mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-23 17:23:57 +03:00
Fix cookies is None bug
This commit is contained in:
parent
0ade2098a6
commit
dd2264b616
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user