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.
127 |
# File 'sig/types.rbs', line 127
def initialize: (llm: LlmConfig, ?prompt: String, min_image_area: Integer) -> void
|
Instance Attribute Details
#llm ⇒ LlmConfig (readonly)
Returns the value of attribute llm.
123 124 125 |
# File 'sig/types.rbs', line 123 def llm @llm end |
#min_image_area ⇒ Integer (readonly)
Returns the value of attribute min_image_area.
125 126 127 |
# File 'sig/types.rbs', line 125 def min_image_area @min_image_area end |
#prompt ⇒ String? (readonly)
Returns the value of attribute prompt.
124 125 126 |
# File 'sig/types.rbs', line 124 def prompt @prompt end |