We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5da331 commit eb1e87eCopy full SHA for eb1e87e
docs/guides/models.md
@@ -57,11 +57,11 @@ When you specify a model, RubyLLM follows these steps to find it:
57
The same model ID can exist both as a concrete model and as an alias, particularly when the same model is available through different providers:
58
59
```ruby
60
-# Use native OpenAI GPT-4
61
-chat = RubyLLM.chat(model: 'gpt-4o')
+# Use native Claude 3.5
+chat = RubyLLM.chat(model: 'claude-3-5-sonnet')
62
63
-# Use GPT-4 through Bedrock
64
-chat = RubyLLM.chat(model: 'gpt-4o', provider: 'bedrock')
+# Use Claude 3.5 through Bedrock
+chat = RubyLLM.chat(model: 'claude-3-5-sonnet', provider: 'bedrock')
65
```
66
67
### Model Aliases
0 commit comments