XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Update ChatgptFree.py

68089ff0
H Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

1 个文件 +3 -3
Modified g4f/Provider/ChatgptFree.py +3 -3
@@ -42,11 +42,11 @@ class ChatgptFree(AsyncProvider):
42 42 async with StreamSession(
43 43 headers=headers,
44 44 cookies=cookies,
45 impersonate="chrome107",
46 proxies={"https": proxy},
45 impersonate="chrome",
46 proxies={"all": proxy},
47 47 timeout=timeout
48 48 ) as session:
49
49
50 50 if not cls._nonce:
51 51 async with session.get(f"{cls.url}/") as response:
52 52