From e369c283b3ac47282207fd6940ac2d249fe04463 Mon Sep 17 00:00:00 2001 From: nikkie Date: Mon, 4 Aug 2025 13:31:29 -0700 Subject: [PATCH] fix: typo againt (in `adk run --replay` help) Merge https://github.com/google/adk-python/pull/2327 `adk run --help` (adk 1.9.0) ``` --replay FILE The json file that contains the initial state of the session and user queries. A new session will be created using this state. And user queries are run againt the newly created session. Users cannot continue to interact with the agent. ``` ``` $ git grep againt src/google/adk/cli/cli_tools_click.py: " queries are run againt the newly created session. Users cannot" ``` COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2327 from ftnext:fix-typo-run-replay-help 77cae65a235d9119810fe3d209910562672713c8 PiperOrigin-RevId: 790872246 --- 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 fc1662ad..ccf43783 100644 --- a/src/google/adk/cli/cli_tools_click.py +++ b/src/google/adk/cli/cli_tools_click.py @@ -225,7 +225,7 @@ def validate_exclusive(ctx, param, value): help=( "The json file that contains the initial state of the session and user" " queries. A new session will be created using this state. And user" - " queries are run againt the newly created session. Users cannot" + " queries are run against the newly created session. Users cannot" " continue to interact with the agent." ), callback=validate_exclusive,