mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 02:05:37 +08:00
13 lines
248 B
Ruby
Vendored
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
|