fix:修复正常响应结果后额外追加‘出错了,请稍后再试’bug

This commit is contained in:
helloworld_xy 2023-04-11 19:03:09 +08:00
parent 8d2abe36a9
commit d8ef4a1031

View File

@ -171,10 +171,15 @@ export async function requestChatStream(
const resTimeoutId = setTimeout(() => finish(), TIME_OUT_MS);
const content = await reader?.read();
clearTimeout(resTimeoutId);
const text = decoder.decode(content?.value, { stream: true });
if (!content || !content.value) {
break;
}
const text = decoder.decode(content.value, { stream: true });
responseText += text;
const done = !content || content.done;
const done = content.done;
options?.onMessage(responseText, false);
if (done) {