# frozen_string_literal: true module DiscourseAi module Embeddings class SemanticRelated def self.candidates_for(topic) return ::Topic.none if SiteSetting.ai_embeddings_semantic_related_topics < 1 cache_for = case topic.created_at when 6.hour.ago..Time.now 15.minutes when 1.day.ago..6.hour.ago 1.hour else 1.day end model = DiscourseAi::Embeddings::Model.instantiate( SiteSetting.ai_embeddings_semantic_related_model, ) begin candidate_ids = Discourse .cache .fetch("semantic-suggested-topic-#{topic.id}", expires_in: cache_for) do DiscourseAi::Embeddings::Topic.new.symmetric_semantic_search(model, topic) end rescue StandardError => e Rails.logger.error("SemanticRelated: #{e}") Jobs.enqueue(:generate_embeddings, topic_id: topic.id) return ::Topic.none end # array_position forces the order of the topics to be preserved ::Topic .visible .listable_topics .secured .where("id <> ?", topic.id) .where(id: candidate_ids) .order("array_position(ARRAY#{candidate_ids}, id)") .limit(SiteSetting.ai_embeddings_semantic_related_topics) end end end end