From 003fb5121bd6b1dcac2adc40fe3d9f077d835c5f Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Wed, 22 Jul 2026 20:56:48 -0700 Subject: [PATCH] Remove unused httpx imports and related comments --- .../generative_ai/anthropic_claude_intro.ipynb | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/notebooks/official/generative_ai/anthropic_claude_intro.ipynb b/notebooks/official/generative_ai/anthropic_claude_intro.ipynb index 8f4b5a095..42ba98d84 100644 --- a/notebooks/official/generative_ai/anthropic_claude_intro.ipynb +++ b/notebooks/official/generative_ai/anthropic_claude_intro.ipynb @@ -361,7 +361,6 @@ "import base64\n", "import json\n", "\n", - "import httpx\n", "import requests\n", "from IPython.display import Image" ] @@ -450,9 +449,7 @@ "id": "3d627efff784" }, "source": [ - "#### Encode And Preview Image\n", - "\n", - "We fetch sample images from Wikipedia using the httpx library, but you can use whatever image sources work for you." + "#### Encode And Preview Image", ] }, { @@ -622,8 +619,7 @@ }, "outputs": [], "source": [ - "! pip3 install -U -q 'anthropic[vertex]'\n", - "! pip3 install -U -q httpx" + "! pip3 install -U -q 'anthropic[vertex]'" ] }, { @@ -865,7 +861,6 @@ "source": [ "import base64\n", "\n", - "import httpx\n", "import requests\n", "from IPython.display import Image" ] @@ -966,9 +961,7 @@ "id": "2fe57432a56d" }, "source": [ - "#### Encode And Preview Image\n", - "\n", - "We fetch sample images from Wikipedia using the httpx library, but you can use whatever image sources work for you." + "#### Encode And Preview Image" ] }, {