22 lines
421 B
Ruby
22 lines
421 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAi
|
|
module Configuration
|
|
class EmbeddingsDependencyValidator
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(val)
|
|
return true if val == "f"
|
|
|
|
SiteSetting.ai_embeddings_model.present?
|
|
end
|
|
|
|
def error_message
|
|
I18n.t("discourse_ai.embeddings.configuration.choose_model")
|
|
end
|
|
end
|
|
end
|
|
end
|