From 454176cd7a7e8b0a0a7a54dccf29371c48eb20af Mon Sep 17 00:00:00 2001 From: aoki-ryusei Date: Mon, 24 Aug 2026 01:14:34 +0900 Subject: [PATCH] fix: load RubyLLM when the gem registers its acronym ruby_llm's railtie inflects "RubyLLM" as an acronym, so provider_load requires rubyllm_provider.rb. Add that alias, matching openai_provider.rb. --- lib/active_agent/providers/rubyllm_provider.rb | 1 + 1 file changed, 1 insertion(+) create mode 100644 lib/active_agent/providers/rubyllm_provider.rb diff --git a/lib/active_agent/providers/rubyllm_provider.rb b/lib/active_agent/providers/rubyllm_provider.rb new file mode 100644 index 00000000..87458645 --- /dev/null +++ b/lib/active_agent/providers/rubyllm_provider.rb @@ -0,0 +1 @@ +require_relative "ruby_llm_provider"