返回提交历史
Modified
g4f/Provider/GptGo.py
+3
-2
XFEstudio/gpt4free
Update GptGo.py
ad785898
代码差异
1 个文件
+3
-2
@@ -62,5 +62,6 @@ class GptGo(AsyncGeneratorProvider):
62
62
line = json.loads(line[len(start):-1])
63
63
if line["choices"][0]["finish_reason"] == "stop":
64
64
break
65
if content := line["choices"][0]["delta"].get("content"):
66
yield content
65
content = line["choices"][0]["delta"].get("content")
66
if content:
67
yield content