From ba10bc79121a32e93a2bbc8722ce20d4ee749149 Mon Sep 17 00:00:00 2001 From: adk-bot Date: Fri, 8 May 2026 21:43:34 +0000 Subject: [PATCH] Update ADK doc according to issue #1743 - 5 --- docs/agents/models/apigee.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/agents/models/apigee.md b/docs/agents/models/apigee.md index 1ec45bface..6d142c0c33 100644 --- a/docs/agents/models/apigee.md +++ b/docs/agents/models/apigee.md @@ -43,7 +43,9 @@ Integrate Apigee's governance into your agent's workflow by instantiating the # The proxy URL of your deployed Apigee proxy including the base path proxy_url=f"https://{APIGEE_PROXY_URL}", # Pass necessary authentication/authorization headers (like an API key) - custom_headers={"foo": "bar"} + custom_headers={"foo": "bar"}, + # Optional: Pass google-auth credentials if the proxy requires additional OAuth scopes + # credentials=my_credentials ) # Pass the configured model wrapper to your LlmAgent