Class: Braintrust::Models::InsertExperimentEventReplace::Metrics

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/braintrust/models/insert_experiment_event_replace.rb

Instance Attribute Summary collapse

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_tokensInteger

The number of tokens in the completion generated by the model (only set if this is an LLM span)

Returns:

  • (Integer)


111
# File 'lib/braintrust/models/insert_experiment_event_replace.rb', line 111

optional :completion_tokens, Integer

#end_Float

A unix timestamp recording when the section of code which produced the experiment event finished

Returns:

  • (Float)


116
# File 'lib/braintrust/models/insert_experiment_event_replace.rb', line 116

optional :end_, Float

#prompt_tokensInteger

The number of tokens in the prompt used to generate the experiment event (only set if this is an LLM span)

Returns:

  • (Integer)


121
# File 'lib/braintrust/models/insert_experiment_event_replace.rb', line 121

optional :prompt_tokens, Integer

#startFloat

A unix timestamp recording when the section of code which produced the experiment event started

Returns:

  • (Float)


126
# File 'lib/braintrust/models/insert_experiment_event_replace.rb', line 126

optional :start, Float

#tokensInteger

The total number of tokens in the input and output of the experiment event.

Returns:

  • (Integer)


131
# File 'lib/braintrust/models/insert_experiment_event_replace.rb', line 131

optional :tokens, Integer