Class: Braintrust::Models::ExperimentEvent::Metrics
- Defined in:
- lib/braintrust/models/experiment_event.rb
Instance Attribute Summary collapse
-
#completion_tokens ⇒ Integer
The number of tokens in the completion generated by the model (only set if this is an LLM span).
-
#end_ ⇒ Float
A unix timestamp recording when the section of code which produced the experiment event finished.
-
#prompt_tokens ⇒ Integer
The number of tokens in the prompt used to generate the experiment event (only set if this is an LLM span).
-
#start ⇒ Float
A unix timestamp recording when the section of code which produced the experiment event started.
-
#tokens ⇒ Integer
The total number of tokens in the input and output of the experiment event.
Method Summary
Methods inherited from BaseModel
#[], #initialize, #inspect, #to_h, #to_s
Constructor Details
This class inherits a constructor from Braintrust::BaseModel
Instance Attribute Details
#completion_tokens ⇒ Integer
The number of tokens in the completion generated by the model (only set if this is an LLM span)
122 |
# File 'lib/braintrust/models/experiment_event.rb', line 122 optional :completion_tokens, Integer |
#end_ ⇒ Float
A unix timestamp recording when the section of code which produced the experiment event finished
127 |
# File 'lib/braintrust/models/experiment_event.rb', line 127 optional :end_, Float |
#prompt_tokens ⇒ Integer
The number of tokens in the prompt used to generate the experiment event (only set if this is an LLM span)
132 |
# File 'lib/braintrust/models/experiment_event.rb', line 132 optional :prompt_tokens, Integer |
#start ⇒ Float
A unix timestamp recording when the section of code which produced the experiment event started
137 |
# File 'lib/braintrust/models/experiment_event.rb', line 137 optional :start, Float |
#tokens ⇒ Integer
The total number of tokens in the input and output of the experiment event.
142 |
# File 'lib/braintrust/models/experiment_event.rb', line 142 optional :tokens, Integer |