From cd62f028636d9b21c8f91d93dfa37e8ae2ba9826 Mon Sep 17 00:00:00 2001 From: Matt Zhou Date: Fri, 3 Jan 2025 12:42:52 -0800 Subject: [PATCH] chore: Remove commented out print --- letta/client/streaming.py | 1 - 1 file changed, 1 deletion(-) diff --git a/letta/client/streaming.py b/letta/client/streaming.py index 86be5c41..c8722534 100644 --- a/letta/client/streaming.py +++ b/letta/client/streaming.py @@ -45,7 +45,6 @@ def _sse_post(url: str, data: dict, headers: dict) -> Generator[LettaStreamingRe # break if sse.data in [status.value for status in MessageStreamStatus]: # break - # print("sse.data::", sse.data) yield MessageStreamStatus(sse.data) else: chunk_data = json.loads(sse.data)