From edce0b38c613b5b2c4c322640699dd5e2c6de40b Mon Sep 17 00:00:00 2001 From: purvii-n <120627798+purvii-n@users.noreply.github.com> Date: Tue, 5 Aug 2025 15:02:02 +0530 Subject: [PATCH] Update cloud-run.md Modified get_fast_api_app method parameters according to current code implementation --- docs/deploy/cloud-run.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deploy/cloud-run.md b/docs/deploy/cloud-run.md index 5d39de710..fbd1adb26 100644 --- a/docs/deploy/cloud-run.md +++ b/docs/deploy/cloud-run.md @@ -162,8 +162,8 @@ export GOOGLE_GENAI_USE_VERTEXAI=True # Call the function to get the FastAPI app instance # Ensure the agent directory name ('capital_agent') matches your agent folder app = get_fast_api_app( - agents_dir=AGENT_DIR, - session_service_uri=SESSION_SERVICE_URI, + agent_dir=AGENT_DIR, + session_db_url=SESSION_SERVICE_URI, allow_origins=ALLOWED_ORIGINS, web=SERVE_WEB_INTERFACE, )