mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 03:23:50 +08:00
13 lines
250 B
Ruby
Vendored
13 lines
250 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseAi
|
|
module Translation
|
|
class TopicTitleTranslator < BaseTranslator
|
|
private
|
|
|
|
def agent_setting
|
|
SiteSetting.ai_translation_topic_title_translator_agent
|
|
end
|
|
end
|
|
end
|
|
end
|