mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-11-01 06:58:39 +00:00
18 lines
428 B
Ruby
18 lines
428 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
module DiscourseAi
|
||
|
|
module Embeddings
|
||
|
|
module HydeGenerators
|
||
|
|
class Base
|
||
|
|
def self.current_hyde_model
|
||
|
|
DiscourseAi::Embeddings::HydeGenerators::Base.descendants.find do |generator_klass|
|
||
|
|
generator_klass.new.models.include?(
|
||
|
|
SiteSetting.ai_embeddings_semantic_search_hyde_model,
|
||
|
|
)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|