discourse/plugins/discourse-ai/lib/translation/short_text_translator.rb
Sam e3fae646d4
DEV: AI persona to agent migration (#38319)
Co-authored-by: Keegan George <kgeorge13@gmail.com>
2026-03-10 15:59:45 +11:00

13 lines
248 B
Ruby
Vendored

# frozen_string_literal: true
module DiscourseAi
module Translation
class ShortTextTranslator < BaseTranslator
private
def agent_setting
SiteSetting.ai_translation_short_text_translator_agent
end
end
end
end