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

XFEstudio/gpt4free

Update Vercel.py

1baca306
H Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified g4f/Provider/Vercel.py +1 -1
@@ -64,7 +64,7 @@ class Vercel(AbstractProvider):
64 64 continue
65 65 for token in response.iter_content(chunk_size=None):
66 66 try:
67 yield token.decode()
67 yield token.decode(errors="ignore")
68 68 except UnicodeDecodeError:
69 69 pass
70 70 break