From 74e820d1042d918788a5bbe280808db3ad3d6824 Mon Sep 17 00:00:00 2001 From: furniturewalatkNIH <137434977+furniturewalatkNIH@users.noreply.github.com> Date: Tue, 3 Dec 2024 21:01:37 -0600 Subject: [PATCH] adding debug print --- notebooks/GenAI/Gemini_Intro.ipynb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notebooks/GenAI/Gemini_Intro.ipynb b/notebooks/GenAI/Gemini_Intro.ipynb index aec6aba..4eb6420 100644 --- a/notebooks/GenAI/Gemini_Intro.ipynb +++ b/notebooks/GenAI/Gemini_Intro.ipynb @@ -107,6 +107,10 @@ "project_id = config.get(\"NOTEBOOK_GCP_PROJECT_ID\")\n", "location = config.get(\"NOTEBOOK_GCP_LOCATION\")\n", "\n", + "print(\"Checking parameters from ENV\")\n", + "print(project_id)\n", + "print(location)\n", + "\n", "# TODO( FOR developer): If not defined in ENV earlier, uncomment and add it below\n", "#project_id = \"\"\n", "#location = \"\" #(e.g., us-central1)\n",