chatwoot-develop/app/models/concerns/llm_formattable.rb

8 lines
163 B
Ruby
Executable File

module LlmFormattable
extend ActiveSupport::Concern
def to_llm_text(config = {})
LlmFormatter::LlmTextFormatterService.new(self).format(config)
end
end