Class: Braintrust::Models::InsertProjectLogsEventReplace::Metrics
- Inherits:
-
BaseModel
- Object
- BaseModel
- Braintrust::Models::InsertProjectLogsEventReplace::Metrics
- Defined in:
- lib/braintrust/models/insert_project_logs_event_replace.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 project logs event finished.
-
#prompt_tokens ⇒ Integer
The number of tokens in the prompt used to generate the project logs event (only set if this is an LLM span).
-
#start ⇒ Float
A unix timestamp recording when the section of code which produced the project logs event started.
-
#tokens ⇒ Integer
The total number of tokens in the input and output of the project logs 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)
106 |
# File 'lib/braintrust/models/insert_project_logs_event_replace.rb', line 106 optional :completion_tokens, Integer |
#end_ ⇒ Float
A unix timestamp recording when the section of code which produced the project logs event finished
111 |
# File 'lib/braintrust/models/insert_project_logs_event_replace.rb', line 111 optional :end_, Float |
#prompt_tokens ⇒ Integer
The number of tokens in the prompt used to generate the project logs event (only set if this is an LLM span)
116 |
# File 'lib/braintrust/models/insert_project_logs_event_replace.rb', line 116 optional :prompt_tokens, Integer |
#start ⇒ Float
A unix timestamp recording when the section of code which produced the project logs event started
121 |
# File 'lib/braintrust/models/insert_project_logs_event_replace.rb', line 121 optional :start, Float |
#tokens ⇒ Integer
The total number of tokens in the input and output of the project logs event.
126 |
# File 'lib/braintrust/models/insert_project_logs_event_replace.rb', line 126 optional :tokens, Integer |