Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Sep 11, 2025

Bumps ruby_llm from 1.3.1 to 1.7.0.

Release notes

Sourced from ruby_llm's releases.

1.7.0

RubyLLM 1.7: Rails Revolution & Vertex AI 🚀

Major Rails integration overhaul bringing database-backed models, UI generators, and a more intuitive acts_as API. Plus Google Cloud Vertex AI support, regional AWS Bedrock, and streamlined installation!

🌟 Google Cloud Vertex AI Support

Full Vertex AI provider integration with dynamic model discovery:

# Add to your Gemfile:
gem "googleauth"  # Required for Vertex AI authentication
Configure Vertex AI:
RubyLLM.configure do |config|
config.vertexai_project_id = "your-project"
config.vertexai_location = "us-central1"
end
Access Gemini and other Google models through Vertex AI
chat = RubyLLM.chat(model: "gemini-2.5-pro", provider: :vertexai)
response = chat.ask("What can you do?")

Features:

  • Dynamic model fetching from Vertex AI API with pagination
  • Automatic discovery of Gemini foundation models
  • Metadata enrichment from Parsera API
  • Full chat and embeddings support
  • Seamless integration with existing Gemini provider
  • Uses Application Default Credentials (ADC) for authentication

🎉 New Rails-Like acts_as API

The Rails integration gets a massive upgrade with a more intuitive, Rails-like API:

# OLD way (still works, deprecated in v2.0)
class Chat < ApplicationRecord
  acts_as_chat message_class: 'Message', tool_call_class: 'ToolCall'
end
NEW way - use association names as primary parameters!
class Chat < ApplicationRecord
acts_as_chat messages: :messages, model: :model
end
class Message < ApplicationRecord
acts_as_message chat: :chat, tool_calls: :tool_calls, model: :model
end
</tr></table>

... (truncated)

Commits
  • 7f00d26 Updated appraisal gemfiles
  • 3b1e8cf Bump to 1.7.0
  • da34385 Enhance chat UI generator with improved UX and models management
  • 7a77dcc Update upgrade instructions for custom model names and API usage
  • c893323 Improve v1.7 upgrade experience
  • e109713 Remove Git LFS completely from the project
  • 89f8c3c Simplified post install
  • f22e0bd Update generators to support custom model names consistently
  • c8df558 Move broadcasts_to from install to chat_ui generator
  • 4076001 Add chat UI scaffold generator with Turbo streaming
  • 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.7.0.
- [Release notes](https://github.com/crmne/ruby_llm/releases)
- [Commits](crmne/ruby_llm@1.3.1...1.7.0)

---
updated-dependencies:
- dependency-name: ruby_llm
  dependency-version: 1.7.0
  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 Sep 11, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 12, 2025

Superseded by #47.

@dependabot dependabot bot closed this Sep 12, 2025
@dependabot dependabot bot deleted the dependabot/bundler/ruby_llm-1.7.0 branch September 12, 2025 05:26
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