Class: Braintrust::Models::ProjectLogsEvent::Metrics

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/braintrust/models/project_logs_event.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)


128
# File 'lib/braintrust/models/project_logs_event.rb', line 128

optional :completion_tokens, Integer

#end_Float

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

Returns:

  • (Float)


133
# File 'lib/braintrust/models/project_logs_event.rb', line 133

optional :end_, Float

#prompt_tokensInteger

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

Returns:

  • (Integer)


138
# File 'lib/braintrust/models/project_logs_event.rb', line 138

optional :prompt_tokens, Integer

#startFloat

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

Returns:

  • (Float)


143
# File 'lib/braintrust/models/project_logs_event.rb', line 143

optional :start, Float

#tokensInteger

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

Returns:

  • (Integer)


148
# File 'lib/braintrust/models/project_logs_event.rb', line 148

optional :tokens, Integer