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

XFEstudio/gpt4free

Update copy_image

faf94ccf
hlohaus <983577+hlohaus@users.noreply.github.com>
提交于

代码差异

1 个文件 +2 -0
Modified g4f/gui/server/api.py +2 -0
@@ -224,6 +224,8 @@ class Api:
224 224 yield self._format_json("suggestions", chunk.suggestions)
225 225 elif isinstance(chunk, DebugResponse):
226 226 yield self._format_json("log", chunk.log)
227 elif isinstance(chunk, ContinueResponse):
228 yield self._format_json("continue", chunk.log)
227 229 elif isinstance(chunk, RawResponse):
228 230 yield self._format_json(chunk.type, **chunk.get_dict())
229 231 else: