Class: Xberg::CaptioningConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCaptioningConfig

Returns a new instance of CaptioningConfig.

Parameters:

  • llm: (LlmConfig)
  • prompt: (String)
  • min_image_area: (Integer)


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

def initialize: (llm: LlmConfig, ?prompt: String, min_image_area: Integer) -> void

Instance Attribute Details

#llmLlmConfig (readonly)

Returns the value of attribute llm.

Returns:



30
31
32
# File 'sig/types.rbs', line 30

def llm
  @llm
end

#min_image_areaInteger (readonly)

Returns the value of attribute min_image_area.

Returns:

  • (Integer)


32
33
34
# File 'sig/types.rbs', line 32

def min_image_area
  @min_image_area
end

#promptString (readonly)

Returns the value of attribute prompt.

Returns:

  • (String)


31
32
33
# File 'sig/types.rbs', line 31

def prompt
  @prompt
end