8 lines
125 B
Ruby
8 lines
125 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class LlmModel < ActiveRecord::Base
|
||
|
def tokenizer_class
|
||
|
tokenizer.constantize
|
||
|
end
|
||
|
end
|