fixup: decode in stream mode

This commit is contained in:
Yidadaa 2023-05-15 02:01:50 +08:00
parent 4618c624c8
commit 9e602eb575
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ export class ChatGPTApi implements LLMApi {
return finish();
}
const chunk = decoder.decode(value);
const chunk = decoder.decode(value, { stream: true });
const lines = chunk.split("data: ");
for (const line of lines) {