10 lines
139 B
Ruby
Executable File
10 lines
139 B
Ruby
Executable File
class LlmFormatter::DefaultLlmFormatter
|
|
def initialize(record)
|
|
@record = record
|
|
end
|
|
|
|
def format(*)
|
|
# override this
|
|
end
|
|
end
|