Class: Braintrust::Models::ExperimentFetchPostResponse::Event

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

Defined Under Namespace

Classes: Context, Metrics, SpanAttributes

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#_xact_idString

The transaction id of an event is unique to the network operation that processed the event insertion. Transaction ids are monotonically increasing over time and can be used to retrieve a versioned snapshot of the experiment (see the version parameter)

Returns:

  • (String)


27
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 27

required :_xact_id, String

#contextBraintrust::Models::ExperimentFetchPostResponse::Event::Context

Context is additional information about the code that produced the experiment event. It is essentially the textual counterpart to metrics. Use the caller_* attributes to track the location in code which produced the experiment event



57
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 57

optional :context, -> { Braintrust::Models::ExperimentFetchPostResponse::Event::Context }

#createdString

The timestamp the experiment event was created

Returns:

  • (String)


32
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 32

required :created, String

#dataset_record_idString

If the experiment is associated to a dataset, this is the event-level dataset id this experiment event is tied to

Returns:

  • (String)


62
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 62

optional :dataset_record_id, String

#expectedObject

The ground truth value (an arbitrary, JSON serializable object) that you'd compare to output to determine if your output value is correct or not. Braintrust currently does not compare output to expected for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models

Returns:

  • (Object)


67
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 67

optional :expected, Braintrust::Unknown

#experiment_idString

Unique identifier for the experiment

Returns:

  • (String)


37
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 37

required :experiment_id, String

#idString

A unique identifier for the experiment event. If you don't provide one, BrainTrust will generate one for you

Returns:

  • (String)


22
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 22

required :id, String

#inputObject

The arguments that uniquely define a test case (an arbitrary, JSON serializable object). Later on, Braintrust will use the input to know whether two test cases are the same between experiments, so they should not contain experiment-specific state. A simple rule of thumb is that if you run the same experiment twice, the input should be identical

Returns:

  • (Object)


72
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 72

optional :input, Braintrust::Unknown

#metadataHash

A dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the prompt, example's id, or anything else that would be useful to slice/dice later. The values in metadata can be any JSON-serializable type, but its keys must be strings

Returns:

  • (Hash)


77
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 77

optional :metadata, Hash

#metricsBraintrust::Models::ExperimentFetchPostResponse::Event::Metrics

Metrics are numerical measurements tracking the execution of the code that produced the experiment event. Use "start" and "end" to track the time span over which the experiment event was produced



82
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 82

optional :metrics, -> { Braintrust::Models::ExperimentFetchPostResponse::Event::Metrics }

#outputObject

The output of your application, including post-processing (an arbitrary, JSON serializable object), that allows you to determine whether the result is correct or not. For example, in an app that generates SQL queries, the output should be the result of the SQL query generated by the model, not the query itself, because there may be multiple valid queries that answer a single question

Returns:

  • (Object)


87
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 87

optional :output, Braintrust::Unknown

#project_idString

Unique identifier for the project that the experiment belongs under

Returns:

  • (String)


42
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 42

required :project_id, String

#root_span_idString

The span_id of the root of the trace this experiment event belongs to

Returns:

  • (String)


47
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 47

required :root_span_id, String

#scoresHash

A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments

Returns:

  • (Hash)


92
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 92

optional :scores, Hash

#span_attributesBraintrust::Models::ExperimentFetchPostResponse::Event::SpanAttributes

Human-identifying attributes of the span, such as name, type, etc.



97
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 97

optional :span_attributes, -> { Braintrust::Models::ExperimentFetchPostResponse::Event::SpanAttributes }

#span_idString

A unique identifier used to link different experiment events together as part of a full trace. See the tracing guide for full details on tracing

Returns:

  • (String)


52
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 52

required :span_id, String

#span_parentsArray<String>

An array of the parent span_ids of this experiment event. This should be empty for the root span of a trace, and should most often contain just one parent element for subspans

Returns:

  • (Array<String>)


102
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 102

optional :span_parents, Braintrust::ArrayOf.new(String)

#tagsArray<String>

A list of tags to log

Returns:

  • (Array<String>)


107
# File 'lib/braintrust/models/experiment_fetch_post_response.rb', line 107

optional :tags, Braintrust::ArrayOf.new(String)