42 lines
1.3 KiB
Ruby
Executable File
42 lines
1.3 KiB
Ruby
Executable File
# frozen_string_literal: true
|
|
|
|
# DEPRECATED: This class uses the legacy OpenAI Ruby gem directly.
|
|
# Only used for PDF/file operations that require OpenAI's files API:
|
|
# - Captain::Llm::PdfProcessingService (files.upload for assistants)
|
|
# - Captain::Llm::PaginatedFaqGeneratorService (uses file_id from uploaded files)
|
|
#
|
|
# For all other LLM operations, use Llm::BaseAiService with RubyLLM instead.
|
|
class Llm::LegacyBaseOpenAiService
|
|
DEFAULT_MODEL = 'gpt-4o-mini'
|
|
|
|
attr_reader :client, :model
|
|
|
|
def initialize
|
|
api_key = ENV['OPENAI_API_KEY'] || InstallationConfig.find_by(name: 'CAPTAIN_OPEN_AI_API_KEY')&.value
|
|
raise 'No API Key found' if api_key.blank?
|
|
|
|
request_timeout = ENV.fetch('CAPTAIN_OPEN_AI_REQUEST_TIMEOUT', '120').to_i
|
|
@client = OpenAI::Client.new(
|
|
access_token: api_key,
|
|
uri_base: uri_base,
|
|
log_errors: Rails.env.development?,
|
|
request_timeout: request_timeout
|
|
)
|
|
setup_model
|
|
rescue StandardError => e
|
|
raise "Failed to initialize OpenAI client: #{e.message}"
|
|
end
|
|
|
|
private
|
|
|
|
def uri_base
|
|
endpoint = InstallationConfig.find_by(name: 'CAPTAIN_OPEN_AI_ENDPOINT')&.value
|
|
endpoint.presence || 'https://api.openai.com/'
|
|
end
|
|
|
|
def setup_model
|
|
config_value = InstallationConfig.find_by(name: 'CAPTAIN_OPEN_AI_MODEL')&.value
|
|
@model = (config_value.presence || DEFAULT_MODEL)
|
|
end
|
|
end
|