From bc92cab4c483d3d28290da6df1afaa1c9b1bd698 Mon Sep 17 00:00:00 2001 From: MarkoBosnjak1 Date: Fri, 25 Jul 2025 16:34:26 +0200 Subject: [PATCH 1/3] Change posthog project --- cloud/posthog.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/posthog.html b/cloud/posthog.html index 5ef4a68e..30d2ebd5 100644 --- a/cloud/posthog.html +++ b/cloud/posthog.html @@ -1,8 +1,8 @@ \ No newline at end of file From a7afdfc7cd484396071b348e4d2e7056251e0f37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 29 Jul 2025 06:08:54 +0000 Subject: [PATCH 2/3] version 2.0.7 --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 887a7bb5..9b21bcd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# (2025-07-23) +# (2025-07-29) diff --git a/pyproject.toml b/pyproject.toml index f567c153..5cf456a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pythagora-core" -version = "2.0.6" +version = "2.0.7" description = "Build complete apps using AI agents" authors = ["Leon Ostrez "] license = "FSL-1.1-MIT" From fce429002f9a9b2876ce7331edde19d111fe1978 Mon Sep 17 00:00:00 2001 From: Cody Daniels <69248644+codydaniels@users.noreply.github.com> Date: Tue, 5 Aug 2025 10:15:37 +0900 Subject: [PATCH 3/3] Re-enable stream end tags for new listener setup --- core/ui/api_server.py | 2 +- core/ui/ipc_client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/ui/api_server.py b/core/ui/api_server.py index 26f9dd1e..ac0621d7 100644 --- a/core/ui/api_server.py +++ b/core/ui/api_server.py @@ -346,7 +346,7 @@ class IPCServer: await self._add_to_chat_history(project_state_id, convo, message, str(response)) # Send final message - # await send_stream_chunk(writer, message_type, None, request_id) + await send_stream_chunk(writer, message_type, None, request_id) except (ConnectionResetError, BrokenPipeError) as err: log.error(f"Failed to send streaming response: {err}", exc_info=True) diff --git a/core/ui/ipc_client.py b/core/ui/ipc_client.py index 9e3dfc53..9f274c64 100644 --- a/core/ui/ipc_client.py +++ b/core/ui/ipc_client.py @@ -228,7 +228,7 @@ class IPCClientUI(UIBase): return if chunk is None: - chunk = "\n" # end of stream + chunk = "<__stream_end__>" # end of stream await self._send( MessageType.STREAM,