Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 16a3a19

Browse files
committedMar 27, 2025·
fix(audio): correctly parse transcription stream events
1 parent e6b8a42 commit 16a3a19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/openai/_streaming.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __stream__(self) -> Iterator[_T]:
5959
if sse.data.startswith("[DONE]"):
6060
break
6161

62-
if sse.event is None or sse.event.startswith("response."):
62+
if sse.event is None or sse.event.startswith("response.") or sse.event.startswith('transcript.'):
6363
data = sse.json()
6464
if is_mapping(data) and data.get("error"):
6565
message = None
@@ -161,7 +161,7 @@ async def __stream__(self) -> AsyncIterator[_T]:
161161
if sse.data.startswith("[DONE]"):
162162
break
163163

164-
if sse.event is None or sse.event.startswith("response."):
164+
if sse.event is None or sse.event.startswith("response.") or sse.event.startswith('transcript.'):
165165
data = sse.json()
166166
if is_mapping(data) and data.get("error"):
167167
message = None

0 commit comments

Comments
 (0)
Please sign in to comment.