From 94c03c9494d24fd2559548b14d4f0a4649f3314c Mon Sep 17 00:00:00 2001 From: Zhaofeng Zhang <24791380+vcfgv@users.noreply.github.com> Date: Wed, 19 Nov 2025 10:59:40 +0800 Subject: [PATCH] fix: disable listener by default in RemoteConnections.start_agent --- python/valuecell/core/agent/connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/valuecell/core/agent/connect.py b/python/valuecell/core/agent/connect.py index ddc8ed0e8..039cf935e 100644 --- a/python/valuecell/core/agent/connect.py +++ b/python/valuecell/core/agent/connect.py @@ -226,7 +226,7 @@ def load_from_dir(self, config_dir: str) -> None: async def start_agent( self, agent_name: str, - with_listener: bool = True, + with_listener: bool = False, listener_port: int | None = None, listener_host: str = "localhost", notification_callback: NotificationCallbackType = None,