From d094447dc97fc227af68dac5f54eee726f788a0b Mon Sep 17 00:00:00 2001 From: adk-bot Date: Fri, 8 May 2026 21:40:41 +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 1ec45bfac..6d142c0c3 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