Skip to content

Commit

Permalink
Fix: SSE Stream parser expects additional space after colon "data:" (o…
Browse files Browse the repository at this point in the history
…penai#559)

* Update api_requestor.py

* fix: SSE event for api_requestor.py
  • Loading branch information
michaelfeil authored and megamanics committed Aug 14, 2024
1 parent e10ec01 commit 3c1c3e7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions openai/api_requestor.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,18 @@ def _make_session() -> requests.Session:


def parse_stream_helper(line: bytes) -> Optional[str]:
if line:
if line.strip() == b"data: [DONE]":
# return here will cause GeneratorExit exception in urllib3
# and it will close http connection with TCP Reset
return None
if line and line.startswith(b"data:"):
if line.startswith(b"data: "):
# SSE event may be valid when it contain whitespace
line = line[len(b"data: "):]
return line.decode("utf-8")
else:
line = line[len(b"data:"):]
if line.strip() == b"[DONE]":
# return here will cause GeneratorExit exception in urllib3
# and it will close http connection with TCP Reset
return None
else:
return line.decode("utf-8")
return None


Expand Down

0 comments on commit 3c1c3e7

Please sign in to comment.