From 5460b22ce8625d8345e9478eac542ff6de932c03 Mon Sep 17 00:00:00 2001 From: Jeroen Overschie Date: Fri, 22 Aug 2025 13:59:40 +0300 Subject: [PATCH 1/3] docs: fix spelling error in `response_for_auth_required` parameter docstring --- src/google/adk/tools/authenticated_function_tool.py | 2 +- src/google/adk/tools/base_authenticated_tool.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/tools/authenticated_function_tool.py b/src/google/adk/tools/authenticated_function_tool.py index 67cc5885f7..0d48f77566 100644 --- a/src/google/adk/tools/authenticated_function_tool.py +++ b/src/google/adk/tools/authenticated_function_tool.py @@ -58,7 +58,7 @@ def __init__( the tool doesn't configure any credentials (auth_config.raw_auth_credential is missing) or the credentials configured is not enough to authenticate the tool (e.g. an OAuth - client id and client secrect is configured.) and needs client input + client id and client secret is configured) and needs client input (e.g. client need to involve the end user in an oauth flow and get back the oauth response.) """ diff --git a/src/google/adk/tools/base_authenticated_tool.py b/src/google/adk/tools/base_authenticated_tool.py index 4858e49534..4cc83154e1 100644 --- a/src/google/adk/tools/base_authenticated_tool.py +++ b/src/google/adk/tools/base_authenticated_tool.py @@ -57,7 +57,7 @@ def __init__( the tool doesn't configure any credentials (auth_config.raw_auth_credential is missing) or the credentials configured is not enough to authenticate the tool (e.g. an OAuth - client id and client secrect is configured.) and needs client input + client id and client secret is configured) and needs client input (e.g. client need to involve the end user in an oauth flow and get back the oauth response.) """ From 799775128b97cab5a5297e68552a1c5f03332a9d Mon Sep 17 00:00:00 2001 From: Jeroen Overschie Date: Fri, 22 Aug 2025 14:04:53 +0300 Subject: [PATCH 2/3] Update src/google/adk/tools/authenticated_function_tool.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- src/google/adk/tools/authenticated_function_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/tools/authenticated_function_tool.py b/src/google/adk/tools/authenticated_function_tool.py index 0d48f77566..01e44ed000 100644 --- a/src/google/adk/tools/authenticated_function_tool.py +++ b/src/google/adk/tools/authenticated_function_tool.py @@ -58,7 +58,7 @@ def __init__( the tool doesn't configure any credentials (auth_config.raw_auth_credential is missing) or the credentials configured is not enough to authenticate the tool (e.g. an OAuth - client id and client secret is configured) and needs client input + client id and client secret are configured) and needs client input (e.g. client need to involve the end user in an oauth flow and get back the oauth response.) """ From b714ed429fc5ad61bbddf0f177c5e35f2102db10 Mon Sep 17 00:00:00 2001 From: Jeroen Overschie Date: Fri, 22 Aug 2025 14:05:08 +0300 Subject: [PATCH 3/3] Update src/google/adk/tools/base_authenticated_tool.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- src/google/adk/tools/base_authenticated_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/tools/base_authenticated_tool.py b/src/google/adk/tools/base_authenticated_tool.py index 4cc83154e1..043bc872a6 100644 --- a/src/google/adk/tools/base_authenticated_tool.py +++ b/src/google/adk/tools/base_authenticated_tool.py @@ -57,7 +57,7 @@ def __init__( the tool doesn't configure any credentials (auth_config.raw_auth_credential is missing) or the credentials configured is not enough to authenticate the tool (e.g. an OAuth - client id and client secret is configured) and needs client input + client id and client secret are configured) and needs client input (e.g. client need to involve the end user in an oauth flow and get back the oauth response.) """