Files
leadchat/app/services/llm_formatter/default_llm_formatter.rb

10 lines
136 B
Ruby

class LlmFormatter::DefaultLlmFormatter
def initialize(record)
@record = record
end
def format
# override this
end
end