forked from open-webui/open-webui
Fix OpenRouter hearbeats breaking streaming
This commit is contained in:
parent
1092ee9c1c
commit
7449634290
1 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,10 @@ async function* openAIStreamToIterator(
|
|||
console.log(line);
|
||||
if (line === 'data: [DONE]') {
|
||||
yield { done: true, value: '' };
|
||||
} if (line.startsWith(':')) {
|
||||
// Events starting with : are comments https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#event_stream_format
|
||||
// OpenRouter sends heartbeats like ": OPENROUTER PROCESSING"
|
||||
continue
|
||||
} else {
|
||||
const data = JSON.parse(line.replace(/^data: /, ''));
|
||||
console.log(data);
|
||||
|
|
Loading…
Reference in a new issue