26 lines
651 B
Ruby
26 lines
651 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::DiscourseAi
|
|
module Inference
|
|
class OpenAiCompletions
|
|
def self.perform!(content, model = "gpt-3.5-turbo")
|
|
headers = {
|
|
"Authorization" => "Bearer #{SiteSetting.ai_openai_api_key}",
|
|
"Content-Type" => "application/json",
|
|
}
|
|
|
|
response =
|
|
Faraday.post(
|
|
"https://api.openai.com/v1/chat/completions",
|
|
{ model: model, messages: content }.to_json,
|
|
headers,
|
|
)
|
|
|
|
raise Net::HTTPBadResponse unless response.status == 200
|
|
|
|
JSON.parse(response.body, symbolize_names: true)
|
|
end
|
|
end
|
|
end
|
|
end
|