Skip to content

Bump ruby_llm from 1.8.2 to 1.12.0#4

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/ruby_llm-1.12.0
Open

Bump ruby_llm from 1.8.2 to 1.12.0#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bundler/ruby_llm-1.12.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Feb 19, 2026

Bumps ruby_llm from 1.8.2 to 1.12.0.

Release notes

Sourced from ruby_llm's releases.

1.12.0

RubyLLM 1.12: Agents + Full Cloud Provider Coverage + New instructions semantics and contributor guidelines 🎉🤖☁️

This is a big one.

RubyLLM 1.12 brings a new Agent interface and concludes cloud provider coverage:

  • GCP coverage via Vertex AI (already supported)
  • New: full AWS coverage via Bedrock Converse API
  • New: full Azure coverage via Azure AI Foundry API

🤖 New Agent Interface

Agents are now a first-class way to define reusable AI behavior once and use it everywhere.

class WorkAssistant < RubyLLM::Agent
  chat_model Chat
  model "gpt-4.1-nano"
  instructions "You are a concise work assistant."
  tools TodoTool, GoogleDriveSearchTool
end

Use it directly:

response = WorkAssistant.new.ask("What should I work on today?")

Or with Rails-backed chats:

chat = WorkAssistant.create!(user: current_user)
WorkAssistant.find(chat.id).complete

Prompt conventions are built in (app/prompts/<agent_name>/instructions.txt.erb).

More on agents: https://rubyllm.com/agents

☁️ Bedrock Converse API: Full Bedrock Coverage

RubyLLM now uses Bedrock Converse API, which means every Bedrock chat model is supported through one consistent path.

chat = RubyLLM.chat(
  model: "anthropic.claude-haiku-4-5-20251001-v1:0",
  provider: :bedrock
)
</tr></table> 

... (truncated)

Commits
  • 6278a05 Bump to 1.12
  • ff9c792 Finished up Agents interface
  • b20acff New .with_instructions behaviour: replace current system prompt by default
  • 2cbdcd9 Trying to fix ci errors
  • 43c1f29 Trying to fix ci errors
  • 2b81dc0 Trying to fix ci errors
  • aa322fa Trying to fix ci errors
  • df2e92b Trying to fix ci errors
  • a638592 Trying to fix ci errors
  • 34ff356 Trying to fix ci errors
  • 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 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.8.2 to 1.12.0.
- [Release notes](https://github.com/crmne/ruby_llm/releases)
- [Commits](crmne/ruby_llm@1.8.2...1.12.0)

---
updated-dependencies:
- dependency-name: ruby_llm
  dependency-version: 1.12.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 Feb 19, 2026
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