From f47c512f7dfe998dd2af3fe69ddf8eee023fecf3 Mon Sep 17 00:00:00 2001 From: nikkie Date: Mon, 4 Aug 2025 22:41:40 +0900 Subject: [PATCH 1/2] fix: Correct typo in `adk run --resume` help Fix by--save_session ``` --resume FILE The json file that contains a previously saved session (by--save_session option). The previous session will be re-displayed. And user can continue to interact with the agent. ``` --- src/google/adk/cli/cli_tools_click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/cli/cli_tools_click.py b/src/google/adk/cli/cli_tools_click.py index 009b96fe70..63c3a5e6d7 100644 --- a/src/google/adk/cli/cli_tools_click.py +++ b/src/google/adk/cli/cli_tools_click.py @@ -392,7 +392,7 @@ def validate_exclusive(ctx, param, value): ), help=( "The json file that contains a previously saved session (by" - "--save_session option). The previous session will be re-displayed. And" + " --save_session option). The previous session will be re-displayed. And" " user can continue to interact with the agent." ), callback=validate_exclusive, From a896fa38e223b13e7edd8125d7b38139f1ca3712 Mon Sep 17 00:00:00 2001 From: Liang Wu <18244712+wuliang229@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:08:33 -0700 Subject: [PATCH 2/2] Address pyink error in help text for --save_session argument --- src/google/adk/cli/cli_tools_click.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/cli/cli_tools_click.py b/src/google/adk/cli/cli_tools_click.py index 63c3a5e6d7..24091df40b 100644 --- a/src/google/adk/cli/cli_tools_click.py +++ b/src/google/adk/cli/cli_tools_click.py @@ -392,8 +392,8 @@ def validate_exclusive(ctx, param, value): ), help=( "The json file that contains a previously saved session (by" - " --save_session option). The previous session will be re-displayed. And" - " user can continue to interact with the agent." + " --save_session option). The previous session will be re-displayed." + " And user can continue to interact with the agent." ), callback=validate_exclusive, )