From b5bd660ed6fc6493a849ae8bbfc6169cb4498607 Mon Sep 17 00:00:00 2001 From: Matt Van Horn Date: Tue, 10 Mar 2026 01:03:27 -0700 Subject: [PATCH] docs: use smaller image URL in vision example The 1599px thumbnail URL causes a 400 error from the API due to the large file size. Use the 440px thumbnail instead. Fixes #2776 Co-Authored-By: Claude Opus 4.6 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e4f0ae657..1cff01d0b4 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ With an image URL: ```python prompt = "What is in this image?" -img_url = "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/2023_06_08_Raccoon1.jpg/1599px-2023_06_08_Raccoon1.jpg" +img_url = "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/2023_06_08_Raccoon1.jpg/440px-2023_06_08_Raccoon1.jpg" response = client.responses.create( model="gpt-5.2",