Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 20, 2025

Bumps ruby_llm from 1.3.1 to 1.6.3.

Release notes

Sourced from ruby_llm's releases.

1.6.3

RubyLLM 1.6.3: Smarter Defaults & Easier Contributing 🎯

Maintenance release improving model temperature defaults and making it easier to contribute to the project.

🌡️ Models Now Use Their Own Temperature Defaults

We were overriding model defaults with temperature: 0.7 everywhere. But different models have different optimal defaults - why fight them?

# Before 1.6.3: Always forced temperature to 0.7
chat = RubyLLM.chat(model: 'claude-3-5-haiku')  # temperature: 0.7
Now: Models use their native defaults
chat = RubyLLM.chat(model: 'claude-3-5-haiku')  # temperature: (model's default)
chat = RubyLLM.chat(model: 'gpt-4.1-nano')      # temperature: (model's default)
You can still override when needed
chat = RubyLLM.chat(model: 'claude-3-5-haiku', temperature: 0.9)

Each provider knows the best default for their models. OpenAI might default to 1.0, Anthropic to something else - we now respect those choices. Fixes #349.

🤝 Easier Contributing: Overcommit Improvements

The RakeTarget pre-commit hook was making it difficult for contributors to submit PRs. As noted in discussion #335, the hook would run models:update which deleted models if you didn't have API keys for all providers!

# Removed from .overcommit.yml:
RakeTarget:
  enabled: true
  command: ['bundle', 'exec', 'rake']
  targets: ['models:update', 'models:docs', 'aliases:generate']

Now contributors can:

  • Submit PRs without having all provider API keys
  • Make targeted changes without unintended side effects
  • Focus on their contributions without fighting the tooling

The model registry is now maintained centrally rather than requiring every contributor to have complete API access.

🧹 Additional Updates

  • Test cassettes refreshed: All VCR cassettes updated for reliable testing
  • Model registry updated: Latest models from all providers

Installation

</tr></table> 

... (truncated)

Commits
  • 20bb0c5 Updated appraisal gemfiles
  • 75e0d87 Bump version to 1.6.3
  • 153aad7 Remove unnecessary comments
  • 11c9f95 Updated models
  • 3a904fd Remove RakeTarget from overcommit configuration
  • 8ec45b6 Updated cassettes
  • 1e30203 Remove default temperature, let models use their own defaults
  • 5c824b1 Promote vision, audio, and document features
  • 12a8c5b updated models and appraisal gemfiles
  • 6bf7f03 Update docs navigation and simplify README
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [ruby_llm](https://github.com/crmne/ruby_llm) from 1.3.1 to 1.6.3.
- [Release notes](https://github.com/crmne/ruby_llm/releases)
- [Commits](crmne/ruby_llm@1.3.1...1.6.3)

---
updated-dependencies:
- dependency-name: ruby_llm
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Aug 20, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Aug 21, 2025

Superseded by #42.

@dependabot dependabot bot closed this Aug 21, 2025
@dependabot dependabot bot deleted the dependabot/bundler/ruby_llm-1.6.3 branch August 21, 2025 06:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants