Skip to content

Commit

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

* Update api_requestor.py

* fix: SSE event for api_requestor.py
  • Loading branch information
michaelfeil authored Sep 25, 2023
1 parent 7fba4dc commit 8944bd1
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 8944bd1

Please sign in to comment.