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)


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

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

Instance Attribute Details

#llmLlmConfig (readonly)

Returns the value of attribute llm.

Returns:



123
124
125
# File 'sig/types.rbs', line 123

def llm
  @llm
end

#min_image_areaInteger (readonly)

Returns the value of attribute min_image_area.

Returns:

  • (Integer)


125
126
127
# File 'sig/types.rbs', line 125

def min_image_area
  @min_image_area
end

#promptString? (readonly)

Returns the value of attribute prompt.

Returns:

  • (String, nil)


124
125
126
# File 'sig/types.rbs', line 124

def prompt
  @prompt
end