opik 1.9.13 → 1.9.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -637,10 +637,11 @@ interface ExperimentStreamRequestPublic {
637
637
  /**
638
638
  * This file was auto-generated by Fern from our API Definition.
639
639
  */
640
- type FindFeedbackDefinitionsRequestType = "numerical" | "categorical";
640
+ type FindFeedbackDefinitionsRequestType = "numerical" | "categorical" | "boolean";
641
641
  declare const FindFeedbackDefinitionsRequestType: {
642
642
  readonly Numerical: "numerical";
643
643
  readonly Categorical: "categorical";
644
+ readonly Boolean: "boolean";
644
645
  };
645
646
 
646
647
  /**
@@ -1177,9 +1178,9 @@ interface SpanSearchStreamRequestPublic {
1177
1178
  lastRetrievedId?: string;
1178
1179
  /** Truncate image included in either input, output or metadata */
1179
1180
  truncate?: boolean;
1180
- /** Filter spans created from this time (ISO-8601 format). Must be provided together with 'to_time'. */
1181
+ /** Filter spans created from this time (ISO-8601 format). */
1181
1182
  fromTime?: Date;
1182
- /** Filter spans created up to this time (ISO-8601 format). Must be provided together with 'from_time' and must be after 'from_time'. */
1183
+ /** Filter spans created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'. */
1183
1184
  toTime?: Date;
1184
1185
  }
1185
1186
 
@@ -1562,9 +1563,9 @@ interface TraceThreadSearchStreamRequest {
1562
1563
  truncate?: boolean;
1563
1564
  /** If true, returns attachment references like [file.png]; if false, downloads and reinjects stripped attachments */
1564
1565
  stripAttachments?: boolean;
1565
- /** Filter trace threads created from this time (ISO-8601 format). Must be provided together with 'to_time'. */
1566
+ /** Filter trace threads created from this time (ISO-8601 format). */
1566
1567
  fromTime?: Date;
1567
- /** Filter trace threads created up to this time (ISO-8601 format). Must be provided together with 'from_time' and must be after 'from_time'. */
1568
+ /** Filter trace threads created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'. */
1568
1569
  toTime?: Date;
1569
1570
  }
1570
1571
 
@@ -1583,9 +1584,9 @@ interface TraceSearchStreamRequestPublic {
1583
1584
  truncate?: boolean;
1584
1585
  /** If true, returns attachment references like [file.png]; if false, downloads and reinjects stripped attachments */
1585
1586
  stripAttachments?: boolean;
1586
- /** Filter traces created from this time (ISO-8601 format). Must be provided together with 'to_time'. */
1587
+ /** Filter traces created from this time (ISO-8601 format). */
1587
1588
  fromTime?: Date;
1588
- /** Filter traces created up to this time (ISO-8601 format). Must be provided together with 'from_time' and must be after 'from_time'. */
1589
+ /** Filter traces created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'. */
1589
1590
  toTime?: Date;
1590
1591
  }
1591
1592
 
@@ -1738,10 +1739,12 @@ interface WorkspaceTraceCount {
1738
1739
  /**
1739
1740
  * This file was auto-generated by Fern from our API Definition.
1740
1741
  */
1741
- type AlertTriggerConfigWriteType = "scope:project" | "threshold:feedback_score";
1742
+ type AlertTriggerConfigWriteType = "scope:project" | "threshold:feedback_score" | "threshold:cost" | "threshold:latency";
1742
1743
  declare const AlertTriggerConfigWriteType: {
1743
1744
  readonly ScopeProject: "scope:project";
1744
1745
  readonly ThresholdFeedbackScore: "threshold:feedback_score";
1746
+ readonly ThresholdCost: "threshold:cost";
1747
+ readonly ThresholdLatency: "threshold:latency";
1745
1748
  };
1746
1749
 
1747
1750
  /**
@@ -1838,10 +1841,12 @@ interface AlertPagePublic {
1838
1841
  /**
1839
1842
  * This file was auto-generated by Fern from our API Definition.
1840
1843
  */
1841
- type AlertTriggerConfigPublicType = "scope:project" | "threshold:feedback_score";
1844
+ type AlertTriggerConfigPublicType = "scope:project" | "threshold:feedback_score" | "threshold:cost" | "threshold:latency";
1842
1845
  declare const AlertTriggerConfigPublicType: {
1843
1846
  readonly ScopeProject: "scope:project";
1844
1847
  readonly ThresholdFeedbackScore: "threshold:feedback_score";
1848
+ readonly ThresholdCost: "threshold:cost";
1849
+ readonly ThresholdLatency: "threshold:latency";
1845
1850
  };
1846
1851
 
1847
1852
  /**
@@ -3965,6 +3970,24 @@ interface GroupContentWithAggregations {
3965
3970
  */
3966
3971
  type JsonNode = Record<string, unknown>;
3967
3972
 
3973
+ /**
3974
+ * This file was auto-generated by Fern from our API Definition.
3975
+ */
3976
+
3977
+ interface BooleanFeedbackDefinitionCreate {
3978
+ details?: BooleanFeedbackDetailCreate;
3979
+ }
3980
+
3981
+ /**
3982
+ * This file was auto-generated by Fern from our API Definition.
3983
+ */
3984
+ interface BooleanFeedbackDetailCreate {
3985
+ /** Label for true/1 value */
3986
+ trueLabel: string;
3987
+ /** Label for false/0 value */
3988
+ falseLabel: string;
3989
+ }
3990
+
3968
3991
  /**
3969
3992
  * This file was auto-generated by Fern from our API Definition.
3970
3993
  */
@@ -3984,7 +4007,7 @@ interface CategoricalFeedbackDetailCreate {
3984
4007
  * This file was auto-generated by Fern from our API Definition.
3985
4008
  */
3986
4009
 
3987
- type FeedbackCreate = FeedbackCreate.Numerical | FeedbackCreate.Categorical;
4010
+ type FeedbackCreate = FeedbackCreate.Numerical | FeedbackCreate.Categorical | FeedbackCreate.Boolean;
3988
4011
  declare namespace FeedbackCreate {
3989
4012
  interface Numerical extends NumericalFeedbackDefinitionCreate, _Base {
3990
4013
  type: "numerical";
@@ -3992,6 +4015,9 @@ declare namespace FeedbackCreate {
3992
4015
  interface Categorical extends CategoricalFeedbackDefinitionCreate, _Base {
3993
4016
  type: "categorical";
3994
4017
  }
4018
+ interface Boolean extends BooleanFeedbackDefinitionCreate, _Base {
4019
+ type: "boolean";
4020
+ }
3995
4021
  interface _Base {
3996
4022
  id?: string;
3997
4023
  name: string;
@@ -4016,6 +4042,28 @@ interface NumericalFeedbackDetailCreate {
4016
4042
  min: number;
4017
4043
  }
4018
4044
 
4045
+ /**
4046
+ * This file was auto-generated by Fern from our API Definition.
4047
+ */
4048
+
4049
+ interface BooleanFeedbackDefinitionPublic {
4050
+ details?: BooleanFeedbackDetailPublic;
4051
+ createdAt?: Date;
4052
+ createdBy?: string;
4053
+ lastUpdatedAt?: Date;
4054
+ lastUpdatedBy?: string;
4055
+ }
4056
+
4057
+ /**
4058
+ * This file was auto-generated by Fern from our API Definition.
4059
+ */
4060
+ interface BooleanFeedbackDetailPublic {
4061
+ /** Label for true/1 value */
4062
+ trueLabel: string;
4063
+ /** Label for false/0 value */
4064
+ falseLabel: string;
4065
+ }
4066
+
4019
4067
  /**
4020
4068
  * This file was auto-generated by Fern from our API Definition.
4021
4069
  */
@@ -4050,7 +4098,7 @@ interface FeedbackDefinitionPagePublic {
4050
4098
  * This file was auto-generated by Fern from our API Definition.
4051
4099
  */
4052
4100
 
4053
- type FeedbackObjectPublic = FeedbackObjectPublic.Numerical | FeedbackObjectPublic.Categorical;
4101
+ type FeedbackObjectPublic = FeedbackObjectPublic.Numerical | FeedbackObjectPublic.Categorical | FeedbackObjectPublic.Boolean;
4054
4102
  declare namespace FeedbackObjectPublic {
4055
4103
  interface Numerical extends NumericalFeedbackDefinitionPublic, _Base {
4056
4104
  type: "numerical";
@@ -4058,6 +4106,9 @@ declare namespace FeedbackObjectPublic {
4058
4106
  interface Categorical extends CategoricalFeedbackDefinitionPublic, _Base {
4059
4107
  type: "categorical";
4060
4108
  }
4109
+ interface Boolean extends BooleanFeedbackDefinitionPublic, _Base {
4110
+ type: "boolean";
4111
+ }
4061
4112
  interface _Base {
4062
4113
  id?: string;
4063
4114
  name: string;
@@ -4094,7 +4145,7 @@ interface NumericalFeedbackDetailPublic {
4094
4145
  * This file was auto-generated by Fern from our API Definition.
4095
4146
  */
4096
4147
 
4097
- type FeedbackPublic = FeedbackPublic.Numerical | FeedbackPublic.Categorical;
4148
+ type FeedbackPublic = FeedbackPublic.Numerical | FeedbackPublic.Categorical | FeedbackPublic.Boolean;
4098
4149
  declare namespace FeedbackPublic {
4099
4150
  interface Numerical extends NumericalFeedbackDefinitionPublic, _Base {
4100
4151
  type: "numerical";
@@ -4102,6 +4153,9 @@ declare namespace FeedbackPublic {
4102
4153
  interface Categorical extends CategoricalFeedbackDefinitionPublic, _Base {
4103
4154
  type: "categorical";
4104
4155
  }
4156
+ interface Boolean extends BooleanFeedbackDefinitionPublic, _Base {
4157
+ type: "boolean";
4158
+ }
4105
4159
  interface _Base {
4106
4160
  id?: string;
4107
4161
  name: string;
@@ -4114,6 +4168,24 @@ declare namespace FeedbackPublic {
4114
4168
  }
4115
4169
  }
4116
4170
 
4171
+ /**
4172
+ * This file was auto-generated by Fern from our API Definition.
4173
+ */
4174
+
4175
+ interface BooleanFeedbackDefinitionUpdate {
4176
+ details?: BooleanFeedbackDetailUpdate;
4177
+ }
4178
+
4179
+ /**
4180
+ * This file was auto-generated by Fern from our API Definition.
4181
+ */
4182
+ interface BooleanFeedbackDetailUpdate {
4183
+ /** Label for true/1 value */
4184
+ trueLabel: string;
4185
+ /** Label for false/0 value */
4186
+ falseLabel: string;
4187
+ }
4188
+
4117
4189
  /**
4118
4190
  * This file was auto-generated by Fern from our API Definition.
4119
4191
  */
@@ -4133,7 +4205,7 @@ interface CategoricalFeedbackDetailUpdate {
4133
4205
  * This file was auto-generated by Fern from our API Definition.
4134
4206
  */
4135
4207
 
4136
- type FeedbackUpdate = FeedbackUpdate.Numerical | FeedbackUpdate.Categorical;
4208
+ type FeedbackUpdate = FeedbackUpdate.Numerical | FeedbackUpdate.Categorical | FeedbackUpdate.Boolean;
4137
4209
  declare namespace FeedbackUpdate {
4138
4210
  interface Numerical extends NumericalFeedbackDefinitionUpdate, _Base {
4139
4211
  type: "numerical";
@@ -4141,6 +4213,9 @@ declare namespace FeedbackUpdate {
4141
4213
  interface Categorical extends CategoricalFeedbackDefinitionUpdate, _Base {
4142
4214
  type: "categorical";
4143
4215
  }
4216
+ interface Boolean extends BooleanFeedbackDefinitionUpdate, _Base {
4217
+ type: "boolean";
4218
+ }
4144
4219
  interface _Base {
4145
4220
  id?: string;
4146
4221
  name: string;
package/dist/index.d.ts CHANGED
@@ -637,10 +637,11 @@ interface ExperimentStreamRequestPublic {
637
637
  /**
638
638
  * This file was auto-generated by Fern from our API Definition.
639
639
  */
640
- type FindFeedbackDefinitionsRequestType = "numerical" | "categorical";
640
+ type FindFeedbackDefinitionsRequestType = "numerical" | "categorical" | "boolean";
641
641
  declare const FindFeedbackDefinitionsRequestType: {
642
642
  readonly Numerical: "numerical";
643
643
  readonly Categorical: "categorical";
644
+ readonly Boolean: "boolean";
644
645
  };
645
646
 
646
647
  /**
@@ -1177,9 +1178,9 @@ interface SpanSearchStreamRequestPublic {
1177
1178
  lastRetrievedId?: string;
1178
1179
  /** Truncate image included in either input, output or metadata */
1179
1180
  truncate?: boolean;
1180
- /** Filter spans created from this time (ISO-8601 format). Must be provided together with 'to_time'. */
1181
+ /** Filter spans created from this time (ISO-8601 format). */
1181
1182
  fromTime?: Date;
1182
- /** Filter spans created up to this time (ISO-8601 format). Must be provided together with 'from_time' and must be after 'from_time'. */
1183
+ /** Filter spans created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'. */
1183
1184
  toTime?: Date;
1184
1185
  }
1185
1186
 
@@ -1562,9 +1563,9 @@ interface TraceThreadSearchStreamRequest {
1562
1563
  truncate?: boolean;
1563
1564
  /** If true, returns attachment references like [file.png]; if false, downloads and reinjects stripped attachments */
1564
1565
  stripAttachments?: boolean;
1565
- /** Filter trace threads created from this time (ISO-8601 format). Must be provided together with 'to_time'. */
1566
+ /** Filter trace threads created from this time (ISO-8601 format). */
1566
1567
  fromTime?: Date;
1567
- /** Filter trace threads created up to this time (ISO-8601 format). Must be provided together with 'from_time' and must be after 'from_time'. */
1568
+ /** Filter trace threads created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'. */
1568
1569
  toTime?: Date;
1569
1570
  }
1570
1571
 
@@ -1583,9 +1584,9 @@ interface TraceSearchStreamRequestPublic {
1583
1584
  truncate?: boolean;
1584
1585
  /** If true, returns attachment references like [file.png]; if false, downloads and reinjects stripped attachments */
1585
1586
  stripAttachments?: boolean;
1586
- /** Filter traces created from this time (ISO-8601 format). Must be provided together with 'to_time'. */
1587
+ /** Filter traces created from this time (ISO-8601 format). */
1587
1588
  fromTime?: Date;
1588
- /** Filter traces created up to this time (ISO-8601 format). Must be provided together with 'from_time' and must be after 'from_time'. */
1589
+ /** Filter traces created up to this time (ISO-8601 format). If not provided, defaults to current time. Must be after 'from_time'. */
1589
1590
  toTime?: Date;
1590
1591
  }
1591
1592
 
@@ -1738,10 +1739,12 @@ interface WorkspaceTraceCount {
1738
1739
  /**
1739
1740
  * This file was auto-generated by Fern from our API Definition.
1740
1741
  */
1741
- type AlertTriggerConfigWriteType = "scope:project" | "threshold:feedback_score";
1742
+ type AlertTriggerConfigWriteType = "scope:project" | "threshold:feedback_score" | "threshold:cost" | "threshold:latency";
1742
1743
  declare const AlertTriggerConfigWriteType: {
1743
1744
  readonly ScopeProject: "scope:project";
1744
1745
  readonly ThresholdFeedbackScore: "threshold:feedback_score";
1746
+ readonly ThresholdCost: "threshold:cost";
1747
+ readonly ThresholdLatency: "threshold:latency";
1745
1748
  };
1746
1749
 
1747
1750
  /**
@@ -1838,10 +1841,12 @@ interface AlertPagePublic {
1838
1841
  /**
1839
1842
  * This file was auto-generated by Fern from our API Definition.
1840
1843
  */
1841
- type AlertTriggerConfigPublicType = "scope:project" | "threshold:feedback_score";
1844
+ type AlertTriggerConfigPublicType = "scope:project" | "threshold:feedback_score" | "threshold:cost" | "threshold:latency";
1842
1845
  declare const AlertTriggerConfigPublicType: {
1843
1846
  readonly ScopeProject: "scope:project";
1844
1847
  readonly ThresholdFeedbackScore: "threshold:feedback_score";
1848
+ readonly ThresholdCost: "threshold:cost";
1849
+ readonly ThresholdLatency: "threshold:latency";
1845
1850
  };
1846
1851
 
1847
1852
  /**
@@ -3965,6 +3970,24 @@ interface GroupContentWithAggregations {
3965
3970
  */
3966
3971
  type JsonNode = Record<string, unknown>;
3967
3972
 
3973
+ /**
3974
+ * This file was auto-generated by Fern from our API Definition.
3975
+ */
3976
+
3977
+ interface BooleanFeedbackDefinitionCreate {
3978
+ details?: BooleanFeedbackDetailCreate;
3979
+ }
3980
+
3981
+ /**
3982
+ * This file was auto-generated by Fern from our API Definition.
3983
+ */
3984
+ interface BooleanFeedbackDetailCreate {
3985
+ /** Label for true/1 value */
3986
+ trueLabel: string;
3987
+ /** Label for false/0 value */
3988
+ falseLabel: string;
3989
+ }
3990
+
3968
3991
  /**
3969
3992
  * This file was auto-generated by Fern from our API Definition.
3970
3993
  */
@@ -3984,7 +4007,7 @@ interface CategoricalFeedbackDetailCreate {
3984
4007
  * This file was auto-generated by Fern from our API Definition.
3985
4008
  */
3986
4009
 
3987
- type FeedbackCreate = FeedbackCreate.Numerical | FeedbackCreate.Categorical;
4010
+ type FeedbackCreate = FeedbackCreate.Numerical | FeedbackCreate.Categorical | FeedbackCreate.Boolean;
3988
4011
  declare namespace FeedbackCreate {
3989
4012
  interface Numerical extends NumericalFeedbackDefinitionCreate, _Base {
3990
4013
  type: "numerical";
@@ -3992,6 +4015,9 @@ declare namespace FeedbackCreate {
3992
4015
  interface Categorical extends CategoricalFeedbackDefinitionCreate, _Base {
3993
4016
  type: "categorical";
3994
4017
  }
4018
+ interface Boolean extends BooleanFeedbackDefinitionCreate, _Base {
4019
+ type: "boolean";
4020
+ }
3995
4021
  interface _Base {
3996
4022
  id?: string;
3997
4023
  name: string;
@@ -4016,6 +4042,28 @@ interface NumericalFeedbackDetailCreate {
4016
4042
  min: number;
4017
4043
  }
4018
4044
 
4045
+ /**
4046
+ * This file was auto-generated by Fern from our API Definition.
4047
+ */
4048
+
4049
+ interface BooleanFeedbackDefinitionPublic {
4050
+ details?: BooleanFeedbackDetailPublic;
4051
+ createdAt?: Date;
4052
+ createdBy?: string;
4053
+ lastUpdatedAt?: Date;
4054
+ lastUpdatedBy?: string;
4055
+ }
4056
+
4057
+ /**
4058
+ * This file was auto-generated by Fern from our API Definition.
4059
+ */
4060
+ interface BooleanFeedbackDetailPublic {
4061
+ /** Label for true/1 value */
4062
+ trueLabel: string;
4063
+ /** Label for false/0 value */
4064
+ falseLabel: string;
4065
+ }
4066
+
4019
4067
  /**
4020
4068
  * This file was auto-generated by Fern from our API Definition.
4021
4069
  */
@@ -4050,7 +4098,7 @@ interface FeedbackDefinitionPagePublic {
4050
4098
  * This file was auto-generated by Fern from our API Definition.
4051
4099
  */
4052
4100
 
4053
- type FeedbackObjectPublic = FeedbackObjectPublic.Numerical | FeedbackObjectPublic.Categorical;
4101
+ type FeedbackObjectPublic = FeedbackObjectPublic.Numerical | FeedbackObjectPublic.Categorical | FeedbackObjectPublic.Boolean;
4054
4102
  declare namespace FeedbackObjectPublic {
4055
4103
  interface Numerical extends NumericalFeedbackDefinitionPublic, _Base {
4056
4104
  type: "numerical";
@@ -4058,6 +4106,9 @@ declare namespace FeedbackObjectPublic {
4058
4106
  interface Categorical extends CategoricalFeedbackDefinitionPublic, _Base {
4059
4107
  type: "categorical";
4060
4108
  }
4109
+ interface Boolean extends BooleanFeedbackDefinitionPublic, _Base {
4110
+ type: "boolean";
4111
+ }
4061
4112
  interface _Base {
4062
4113
  id?: string;
4063
4114
  name: string;
@@ -4094,7 +4145,7 @@ interface NumericalFeedbackDetailPublic {
4094
4145
  * This file was auto-generated by Fern from our API Definition.
4095
4146
  */
4096
4147
 
4097
- type FeedbackPublic = FeedbackPublic.Numerical | FeedbackPublic.Categorical;
4148
+ type FeedbackPublic = FeedbackPublic.Numerical | FeedbackPublic.Categorical | FeedbackPublic.Boolean;
4098
4149
  declare namespace FeedbackPublic {
4099
4150
  interface Numerical extends NumericalFeedbackDefinitionPublic, _Base {
4100
4151
  type: "numerical";
@@ -4102,6 +4153,9 @@ declare namespace FeedbackPublic {
4102
4153
  interface Categorical extends CategoricalFeedbackDefinitionPublic, _Base {
4103
4154
  type: "categorical";
4104
4155
  }
4156
+ interface Boolean extends BooleanFeedbackDefinitionPublic, _Base {
4157
+ type: "boolean";
4158
+ }
4105
4159
  interface _Base {
4106
4160
  id?: string;
4107
4161
  name: string;
@@ -4114,6 +4168,24 @@ declare namespace FeedbackPublic {
4114
4168
  }
4115
4169
  }
4116
4170
 
4171
+ /**
4172
+ * This file was auto-generated by Fern from our API Definition.
4173
+ */
4174
+
4175
+ interface BooleanFeedbackDefinitionUpdate {
4176
+ details?: BooleanFeedbackDetailUpdate;
4177
+ }
4178
+
4179
+ /**
4180
+ * This file was auto-generated by Fern from our API Definition.
4181
+ */
4182
+ interface BooleanFeedbackDetailUpdate {
4183
+ /** Label for true/1 value */
4184
+ trueLabel: string;
4185
+ /** Label for false/0 value */
4186
+ falseLabel: string;
4187
+ }
4188
+
4117
4189
  /**
4118
4190
  * This file was auto-generated by Fern from our API Definition.
4119
4191
  */
@@ -4133,7 +4205,7 @@ interface CategoricalFeedbackDetailUpdate {
4133
4205
  * This file was auto-generated by Fern from our API Definition.
4134
4206
  */
4135
4207
 
4136
- type FeedbackUpdate = FeedbackUpdate.Numerical | FeedbackUpdate.Categorical;
4208
+ type FeedbackUpdate = FeedbackUpdate.Numerical | FeedbackUpdate.Categorical | FeedbackUpdate.Boolean;
4137
4209
  declare namespace FeedbackUpdate {
4138
4210
  interface Numerical extends NumericalFeedbackDefinitionUpdate, _Base {
4139
4211
  type: "numerical";
@@ -4141,6 +4213,9 @@ declare namespace FeedbackUpdate {
4141
4213
  interface Categorical extends CategoricalFeedbackDefinitionUpdate, _Base {
4142
4214
  type: "categorical";
4143
4215
  }
4216
+ interface Boolean extends BooleanFeedbackDefinitionUpdate, _Base {
4217
+ type: "boolean";
4218
+ }
4144
4219
  interface _Base {
4145
4220
  id?: string;
4146
4221
  name: string;