Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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.
}
)
Expand Down