From e389b4a39697729060e49be06ff7284873f2f8fe Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 17 Jul 2025 17:19:10 +0800 Subject: [PATCH] chore: change default setting (#1087) live_output = True --- rdagent/utils/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdagent/utils/env.py b/rdagent/utils/env.py index cb5f9315..2eaeb3cb 100644 --- a/rdagent/utils/env.py +++ b/rdagent/utils/env.py @@ -450,7 +450,7 @@ class LocalConf(EnvConf): """path like ::, which will be prepend to bin path.""" retry_count: int = 0 # retry count for; run `retry_count + 1` times - live_output: bool = False + live_output: bool = True ASpecificLocalConf = TypeVar("ASpecificLocalConf", bound=LocalConf)