Module: RubyLLMInflectionFix

Defined in:
lib/ruby_llm/agents/core/inflections.rb

Overview

Override underscore behavior for RubyLLM specifically This ensures view paths resolve correctly (ruby_llm/agents/… not rubyllm/agents/…)

Instance Method Summary collapse

Instance Method Details

#underscoreObject



25
26
27
28
# File 'lib/ruby_llm/agents/core/inflections.rb', line 25

def underscore
  result = super
  result.gsub("rubyllm", "ruby_llm")
end