26 lines
508 B
Ruby
26 lines
508 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAi
|
||
|
module Summarization
|
||
|
module Models
|
||
|
class OpenAi < Base
|
||
|
def display_name
|
||
|
"Open AI's #{model}"
|
||
|
end
|
||
|
|
||
|
def correctly_configured?
|
||
|
SiteSetting.ai_openai_api_key.present?
|
||
|
end
|
||
|
|
||
|
def configuration_hint
|
||
|
I18n.t(
|
||
|
"discourse_ai.summarization.configuration_hint",
|
||
|
count: 1,
|
||
|
setting: "ai_openai_api_key",
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|