8 lines
142 B
Ruby
8 lines
142 B
Ruby
module LlmFormattable
|
|
extend ActiveSupport::Concern
|
|
|
|
def to_llm_text
|
|
LlmFormatter::LlmTextFormatterService.new(self).format
|
|
end
|
|
end
|