From cbc05489e8f111611cbdd8c31f209b7f59cb41e2 Mon Sep 17 00:00:00 2001 From: shima004 Date: Tue, 7 Apr 2026 16:14:28 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E6=8E=A5=E7=B6=9A=E5=BE=8C=E3=81=AE?= =?UTF-8?q?=E7=A2=BA=E8=AA=8D=E5=BF=9C=E7=AD=94=E3=81=AE=E9=80=81=E4=BF=A1?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE=E3=82=92=E4=BF=AE=E6=AD=A3=20fix:=20?= =?UTF-8?q?=E3=82=B9=E3=83=AC=E3=83=83=E3=83=89=E5=BE=85=E6=A9=9F=E6=99=82?= =?UTF-8?q?=E9=96=93=E3=82=925=E7=A7=92=E3=81=8B=E3=82=891=E7=A7=92?= =?UTF-8?q?=E3=81=AB=E7=9F=AD=E7=B8=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/adf_core_python/core/agent/agent.py | 3 ++- src/adf_core_python/core/launcher/agent_launcher.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/adf_core_python/core/agent/agent.py b/src/adf_core_python/core/agent/agent.py index f96dd588..6d9c7624 100644 --- a/src/adf_core_python/core/agent/agent.py +++ b/src/adf_core_python/core/agent/agent.py @@ -282,8 +282,9 @@ def handle_connect_ok(self, msg: Any) -> None: for key, value in config.data.items(): self.config.set_value(key, value) - self.send_acknowledge(msg.request_id) self.post_connect() + + self.send_acknowledge(msg.request_id) self.logger.info( f"Connected to kernel: {self.__class__.__qualname__} (request_id: {msg.request_id}, agent_id: {self.agent_id}, mode: {self._mode})", request_id=msg.request_id, diff --git a/src/adf_core_python/core/launcher/agent_launcher.py b/src/adf_core_python/core/launcher/agent_launcher.py index d53d33ef..e4fec019 100644 --- a/src/adf_core_python/core/launcher/agent_launcher.py +++ b/src/adf_core_python/core/launcher/agent_launcher.py @@ -108,7 +108,7 @@ def start_connector_threads( ) -> None: for thread, event in threads.items(): thread.start() - event.wait(5) + event.wait(1) connector_thread = threading.Thread( target=start_connector_threads, args=(threads,) From e1b7d60ce0466e363e6d0763b87a8e6bfc63d451 Mon Sep 17 00:00:00 2001 From: shima004 Date: Tue, 7 Apr 2026 16:15:24 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E7=95=AA=E5=8F=B7=E3=82=920.2.13=E3=81=AB=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- uv.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 161d2f04..94825591 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "adf_core_python" -version = "0.2.12" +version = "0.2.13" description = "Agent Development Framework for Python" readme = "README.md" authors = [ diff --git a/uv.lock b/uv.lock index 9dadb622..7433f044 100644 --- a/uv.lock +++ b/uv.lock @@ -3,7 +3,7 @@ revision = 3 requires-python = ">=3.13" [options] -exclude-newer = "2026-03-31T04:22:55.504458416Z" +exclude-newer = "2026-03-31T07:15:12.529465123Z" exclude-newer-span = "P1W" [[package]] @@ -20,7 +20,7 @@ wheels = [ [[package]] name = "adf-core-python" -version = "0.2.12" +version = "0.2.13" source = { editable = "." } dependencies = [ { name = "bitarray" },