@@ -95,28 +95,27 @@ func (r InferencePipelineDataStreamParams) MarshalJSON() (data []byte, err error
95
95
// Configuration for the data stream. Depends on your **Openlayer project task
96
96
// type**.
97
97
type InferencePipelineDataStreamParamsConfig struct {
98
- CategoricalFeatureNames param.Field [interface {}] `json:"categoricalFeatureNames,required"`
99
- ClassNames param.Field [interface {}] `json:"classNames,required"`
100
- FeatureNames param.Field [interface {}] `json:"featureNames,required"`
101
- InputVariableNames param.Field [interface {}] `json:"inputVariableNames,required"`
102
- Metadata param.Field [interface {}] `json:"metadata,required"`
103
- Prompt param.Field [interface {}] `json:"prompt,required"`
98
+ CategoricalFeatureNames param.Field [interface {}] `json:"categoricalFeatureNames"`
99
+ ClassNames param.Field [interface {}] `json:"classNames"`
104
100
// Name of the column with the context retrieved. Applies to RAG use cases.
105
101
// Providing the context enables RAG-specific metrics.
106
102
ContextColumnName param.Field [string ] `json:"contextColumnName"`
107
103
// Name of the column with the cost associated with each row.
108
- CostColumnName param.Field [string ] `json:"costColumnName"`
104
+ CostColumnName param.Field [string ] `json:"costColumnName"`
105
+ FeatureNames param.Field [interface {}] `json:"featureNames"`
109
106
// Name of the column with the ground truths.
110
107
GroundTruthColumnName param.Field [string ] `json:"groundTruthColumnName"`
111
108
// Name of the column with the inference ids. This is useful if you want to update
112
109
// rows at a later point in time. If not provided, a unique id is generated by
113
110
// Openlayer.
114
- InferenceIDColumnName param.Field [string ] `json:"inferenceIdColumnName"`
111
+ InferenceIDColumnName param.Field [string ] `json:"inferenceIdColumnName"`
112
+ InputVariableNames param.Field [interface {}] `json:"inputVariableNames"`
115
113
// Name of the column with the labels. The data in this column must be
116
114
// **zero-indexed integers**, matching the list provided in `classNames`.
117
115
LabelColumnName param.Field [string ] `json:"labelColumnName"`
118
116
// Name of the column with the latencies.
119
- LatencyColumnName param.Field [string ] `json:"latencyColumnName"`
117
+ LatencyColumnName param.Field [string ] `json:"latencyColumnName"`
118
+ Metadata param.Field [interface {}] `json:"metadata"`
120
119
// Name of the column with the total number of tokens.
121
120
NumOfTokenColumnName param.Field [string ] `json:"numOfTokenColumnName"`
122
121
// Name of the column with the model outputs.
@@ -125,7 +124,8 @@ type InferencePipelineDataStreamParamsConfig struct {
125
124
PredictionsColumnName param.Field [string ] `json:"predictionsColumnName"`
126
125
// Name of the column with the model's predictions as **lists of class
127
126
// probabilities**.
128
- PredictionScoresColumnName param.Field [string ] `json:"predictionScoresColumnName"`
127
+ PredictionScoresColumnName param.Field [string ] `json:"predictionScoresColumnName"`
128
+ Prompt param.Field [interface {}] `json:"prompt"`
129
129
// Name of the column with the questions. Applies to RAG use cases. Providing the
130
130
// question enables RAG-specific metrics.
131
131
QuestionColumnName param.Field [string ] `json:"questionColumnName"`
0 commit comments