Class: Xberg::SummarizationConfig
- Inherits:
-
Object
- Object
- Xberg::SummarizationConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#llm ⇒ LlmConfig?
Returns the value of attribute llm.
-
#max_tokens ⇒ Integer?
Returns the value of attribute max_tokens.
-
#strategy ⇒ SummaryStrategy?
Returns the value of attribute strategy.
Instance Method Summary collapse
-
#initialize ⇒ SummarizationConfig
constructor
A new instance of SummarizationConfig.
Constructor Details
#initialize ⇒ SummarizationConfig
Returns a new instance of SummarizationConfig.
500 |
# File 'sig/types.rbs', line 500
def initialize: (?strategy: SummaryStrategy, ?max_tokens: Integer, ?llm: LlmConfig) -> void
|
Instance Attribute Details
#llm ⇒ LlmConfig?
Returns the value of attribute llm.
498 499 500 |
# File 'sig/types.rbs', line 498 def llm @llm end |
#max_tokens ⇒ Integer?
Returns the value of attribute max_tokens.
497 498 499 |
# File 'sig/types.rbs', line 497 def max_tokens @max_tokens end |
#strategy ⇒ SummaryStrategy?
Returns the value of attribute strategy.
496 497 498 |
# File 'sig/types.rbs', line 496 def strategy @strategy end |