Class: LiterLlm::CreateTranscriptionRequest

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCreateTranscriptionRequest

Returns a new instance of CreateTranscriptionRequest.

Parameters:

  • model: (String)
  • file: (String)
  • language: (String)
  • prompt: (String)
  • response_format: (String)
  • temperature: (Float)


335
# File 'sig/types.rbs', line 335

def initialize: (?model: String, ?file: String, ?language: String, ?prompt: String, ?response_format: String, ?temperature: Float) -> void

Instance Attribute Details

#fileString?

Returns the value of attribute file.

Returns:

  • (String, nil)


329
330
331
# File 'sig/types.rbs', line 329

def file
  @file
end

#languageString?

Returns the value of attribute language.

Returns:

  • (String, nil)


330
331
332
# File 'sig/types.rbs', line 330

def language
  @language
end

#modelString?

Returns the value of attribute model.

Returns:

  • (String, nil)


328
329
330
# File 'sig/types.rbs', line 328

def model
  @model
end

#promptString?

Returns the value of attribute prompt.

Returns:

  • (String, nil)


331
332
333
# File 'sig/types.rbs', line 331

def prompt
  @prompt
end

#response_formatString?

Returns the value of attribute response_format.

Returns:

  • (String, nil)


332
333
334
# File 'sig/types.rbs', line 332

def response_format
  @response_format
end

#temperatureFloat?

Returns the value of attribute temperature.

Returns:

  • (Float, nil)


333
334
335
# File 'sig/types.rbs', line 333

def temperature
  @temperature
end