Class: Xberg::CaptioningConfig
- Inherits:
-
Object
- Object
- Xberg::CaptioningConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#llm ⇒ LlmConfig
readonly
Returns the value of attribute llm.
-
#min_image_area ⇒ Integer
readonly
Returns the value of attribute min_image_area.
-
#prompt ⇒ String
readonly
Returns the value of attribute prompt.
Instance Method Summary collapse
-
#initialize ⇒ CaptioningConfig
constructor
A new instance of CaptioningConfig.
Constructor Details
#initialize ⇒ CaptioningConfig
Returns a new instance of CaptioningConfig.
34 |
# File 'sig/types.rbs', line 34
def initialize: (llm: LlmConfig, ?prompt: String, min_image_area: Integer) -> void
|
Instance Attribute Details
#llm ⇒ LlmConfig (readonly)
Returns the value of attribute llm.
30 31 32 |
# File 'sig/types.rbs', line 30 def llm @llm end |
#min_image_area ⇒ Integer (readonly)
Returns the value of attribute min_image_area.
32 33 34 |
# File 'sig/types.rbs', line 32 def min_image_area @min_image_area end |
#prompt ⇒ String (readonly)
Returns the value of attribute prompt.
31 32 33 |
# File 'sig/types.rbs', line 31 def prompt @prompt end |