Skip to content

Commit 21c4ee0

Browse files
Merge branch 'main' into generators
2 parents 7cded01 + fd7e972 commit 21c4ee0

File tree

94 files changed

+5493
-5627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+5493
-5627
lines changed

.github/workflows/cicd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
rm -rf spec/fixtures/vcr_cassettes
123123
124124
echo "Running tests with real API calls..."
125-
env -u CI bundle exec rspec
125+
env -u CI bundle exec rspec --fail-fast
126126
env:
127127
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
128128
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ end
118118
## Have great conversations
119119

120120
```ruby
121-
# Start a chat with the default model (GPT-4o-mini)
121+
# Start a chat with the default model (gpt-4.1-nano)
122122
chat = RubyLLM.chat
123123

124124
# Or specify what you want
@@ -195,7 +195,7 @@ class ToolCall < ApplicationRecord
195195
end
196196

197197
# In a background job
198-
chat = Chat.create! model_id: "gpt-4o-mini"
198+
chat = Chat.create! model_id: "gpt-4.1-nano"
199199

200200
# Set personality or behavior with instructions (aka system prompts) - they're persisted too!
201201
chat.with_instructions "You are a friendly Ruby expert who loves to help beginners"

docs/guides/available-models.md

+250-145
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)