From a7a7bda0f9baf25c0279afa72b095cb47f85d9cd Mon Sep 17 00:00:00 2001 From: bhandarivijay Date: Tue, 9 Dec 2025 16:19:31 +0000 Subject: [PATCH] Manual Changes --- .../model_garden/model_garden_vllm_text_only_tutorial.ipynb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notebooks/community/model_garden/model_garden_vllm_text_only_tutorial.ipynb b/notebooks/community/model_garden/model_garden_vllm_text_only_tutorial.ipynb index f996e118e..a7560febe 100644 --- a/notebooks/community/model_garden/model_garden_vllm_text_only_tutorial.ipynb +++ b/notebooks/community/model_garden/model_garden_vllm_text_only_tutorial.ipynb @@ -231,8 +231,12 @@ " BUCKET_NAME = \"/\".join(BUCKET_URI.split(\"/\")[:3])\n", " ! gcloud storage buckets create --location={REGION} {BUCKET_URI}\n", "else:\n", " assert BUCKET_URI.startswith(\"gs://\"), \"BUCKET_URI must start with `gs://`.\"\n", +<<<<<<< HEAD " shell_output = ! gcloud storage buckets describe {BUCKET_NAME} | grep \"^location:\" | sed \"s/location: //\"\n", " bucket_region = shell_output[0].strip().lower()\n", +======= + " shell_output = ! gcloud storage ls --full --buckets {BUCKET_NAME} | grep \"Location constraint:\" | sed \"s/Location constraint://\"\n", " bucket_region = shell_output[0].strip().lower()\n", +>>>>>>> parent of 5d897fd6 (Manual Changes) " if bucket_region != REGION:\n", " raise ValueError(\n", " \"Bucket region %s is different from notebook region %s\"\n",