Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Nov 27, 2024
1 parent 62a36be commit 769f6a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/sdk-py/langgraph_sdk/sse.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def decode(self, text: bytes) -> list[bytes]:

if len(lines) == 1 and not trailing_newline:
# No new lines, buffer the input and continue.
self.buffer.append(lines[0])
self.buffer.write(lines[0])
return []

if self.buffer:
Expand Down
2 changes: 1 addition & 1 deletion libs/sdk-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langgraph-sdk"
version = "0.1.37"
version = "0.1.38"
description = "SDK for interacting with LangGraph API"
authors = []
license = "MIT"
Expand Down

0 comments on commit 769f6a1

Please sign in to comment.