From ee53f2b08ec4bad2534ae78d43d100a413e5be7f Mon Sep 17 00:00:00 2001 From: Kurtis Tamulonis Date: Fri, 7 Nov 2025 11:56:32 -0500 Subject: [PATCH] Update README.md gpt-4-vision-preview was depreciated 12-06-2024 they recommend using gpt-4o instead. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2021daf..ac9fdf5f 100644 --- a/README.md +++ b/README.md @@ -458,7 +458,7 @@ client.chat( #### Vision -You can use the GPT-4 Vision model to generate a description of an image: +You can use the GPT-4o as a Vision model to generate a description of an image: ```ruby messages = [ @@ -471,7 +471,7 @@ messages = [ ] response = client.chat( parameters: { - model: "gpt-4-vision-preview", # Required. + model: "gpt-4o", # Required. messages: [{ role: "user", content: messages}], # Required. } )