We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6b8a42 commit 16a3a19Copy full SHA for 16a3a19
src/openai/_streaming.py
@@ -59,7 +59,7 @@ def __stream__(self) -> Iterator[_T]:
59
if sse.data.startswith("[DONE]"):
60
break
61
62
- if sse.event is None or sse.event.startswith("response."):
+ if sse.event is None or sse.event.startswith("response.") or sse.event.startswith('transcript.'):
63
data = sse.json()
64
if is_mapping(data) and data.get("error"):
65
message = None
@@ -161,7 +161,7 @@ async def __stream__(self) -> AsyncIterator[_T]:
161
162
163
164
165
166
167
0 commit comments