Sha256: 8b584c320547230c34ebf6b5a94b671f0c7b1e0bc80da2d29ce32363c6dab6e1
Contents?: true
Size: 1.92 KB
Versions: 2
Compression:
Stored size: 1.92 KB
Contents
module OpenAI class Files include HTTParty base_uri "https://api.openai.com" def initialize(access_token: nil, organization_id: nil) @access_token = access_token || ENV.fetch("OPENAI_ACCESS_TOKEN") @organization_id = organization_id || ENV.fetch("OPENAI_ORGANIZATION_ID", nil) end def list(version: default_version) self.class.get( "/#{version}/files", headers: { "Content-Type" => "application/json", "Authorization" => "Bearer #{@access_token}", "OpenAI-Organization" => @organization_id } ) end def upload(version: default_version, parameters: {}) validate(file: parameters[:file]) self.class.post( "/#{version}/files", headers: { "Content-Type" => "application/json", "Authorization" => "Bearer #{@access_token}", "OpenAI-Organization" => @organization_id }, body: parameters.merge(file: File.open(parameters[:file])) ) end def retrieve(id:, version: default_version) self.class.get( "/#{version}/files/#{id}", headers: { "Content-Type" => "application/json", "Authorization" => "Bearer #{@access_token}", "OpenAI-Organization" => @organization_id } ) end def delete(id:, version: default_version) self.class.delete( "/#{version}/files/#{id}", headers: { "Content-Type" => "application/json", "Authorization" => "Bearer #{@access_token}", "OpenAI-Organization" => @organization_id } ) end private def default_version "v1".freeze end def validate(file:) File.open(file).each_line.with_index do |line, index| JSON.parse(line) rescue JSON::ParserError => e raise JSON::ParserError, "#{e.message} - found on line #{index + 1} of #{file}" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-openai-2.3.0 | lib/ruby/openai/files.rb |
ruby-openai-2.2.0 | lib/ruby/openai/files.rb |