We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 162b697 + e09a047 commit 292427fCopy full SHA for 292427f
src/core/streaming.ts
@@ -54,13 +54,7 @@ export class Stream<Item> implements AsyncIterable<Item> {
54
continue;
55
}
56
57
- if (
58
- sse.event === null ||
59
- sse.event.startsWith('response.') ||
60
- sse.event.startsWith('image_edit.') ||
61
- sse.event.startsWith('image_generation.') ||
62
- sse.event.startsWith('transcript.')
63
- ) {
+ if (sse.event === null || !sse.event.startsWith('thread.')) {
64
let data;
65
66
try {
0 commit comments