From 3e7ece46812a72ff1db785d7e11110822ef0f88b Mon Sep 17 00:00:00 2001 From: Holt Skinner <13262395+holtskinner@users.noreply.github.com> Date: Fri, 26 Sep 2025 10:29:30 -0500 Subject: [PATCH] docs(genai): Update quickstart_example.py to use us-east4 as default region --- generative_ai/rag/quickstart_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generative_ai/rag/quickstart_example.py b/generative_ai/rag/quickstart_example.py index 1a4f2144826..32649f64aeb 100644 --- a/generative_ai/rag/quickstart_example.py +++ b/generative_ai/rag/quickstart_example.py @@ -39,7 +39,7 @@ def quickstart( # paths = ["https://drive.google.com/file/d/123", "gs://my_bucket/my_files_dir"] # Supports Google Cloud Storage and Google Drive Links # Initialize Vertex AI API once per session - vertexai.init(project=PROJECT_ID, location="us-central1") + vertexai.init(project=PROJECT_ID, location="us-east4") # Create RagCorpus # Configure embedding model, for example "text-embedding-005".