Class: Regent::LLM::Result
- Inherits:
-
Struct
- Object
- Struct
- Regent::LLM::Result
- Defined in:
- lib/regent/llm/base.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#input_tokens ⇒ Object
Returns the value of attribute input_tokens.
-
#model ⇒ Object
Returns the value of attribute model.
-
#output_tokens ⇒ Object
Returns the value of attribute output_tokens.
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content
5 6 7 |
# File 'lib/regent/llm/base.rb', line 5 def content @content end |
#input_tokens ⇒ Object
Returns the value of attribute input_tokens
5 6 7 |
# File 'lib/regent/llm/base.rb', line 5 def input_tokens @input_tokens end |
#model ⇒ Object
Returns the value of attribute model
5 6 7 |
# File 'lib/regent/llm/base.rb', line 5 def model @model end |
#output_tokens ⇒ Object
Returns the value of attribute output_tokens
5 6 7 |
# File 'lib/regent/llm/base.rb', line 5 def output_tokens @output_tokens end |