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.
502 |
# File 'sig/types.rbs', line 502
def initialize: (?strategy: SummaryStrategy, ?max_tokens: Integer, ?llm: LlmConfig) -> void
|
Instance Attribute Details
#llm ⇒ LlmConfig?
Returns the value of attribute llm.
500 501 502 |
# File 'sig/types.rbs', line 500 def llm @llm end |
#max_tokens ⇒ Integer?
Returns the value of attribute max_tokens.
499 500 501 |
# File 'sig/types.rbs', line 499 def max_tokens @max_tokens end |
#strategy ⇒ SummaryStrategy?
Returns the value of attribute strategy.
498 499 500 |
# File 'sig/types.rbs', line 498 def strategy @strategy end |