opik 1.8.13 → 1.8.14

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.
@@ -416,6 +416,20 @@ interface FindFeedbackScoreNamesRequest {
416
416
  experimentIds?: string;
417
417
  }
418
418
 
419
+ /**
420
+ * This file was auto-generated by Fern from our API Definition.
421
+ */
422
+ /**
423
+ * @example
424
+ * {}
425
+ */
426
+ interface FindExperimentGroupsRequest {
427
+ groups?: string;
428
+ types?: string;
429
+ name?: string;
430
+ filters?: string;
431
+ }
432
+
419
433
  /**
420
434
  * This file was auto-generated by Fern from our API Definition.
421
435
  */
@@ -2948,6 +2962,21 @@ interface PromptVersionLinkPublic {
2948
2962
  promptId?: string;
2949
2963
  }
2950
2964
 
2965
+ /**
2966
+ * This file was auto-generated by Fern from our API Definition.
2967
+ */
2968
+
2969
+ interface ExperimentGroupResponse {
2970
+ content?: Record<string, GroupContent>;
2971
+ }
2972
+
2973
+ /**
2974
+ * This file was auto-generated by Fern from our API Definition.
2975
+ */
2976
+ interface GroupContent {
2977
+ label?: string;
2978
+ }
2979
+
2951
2980
  /**
2952
2981
  * This file was auto-generated by Fern from our API Definition.
2953
2982
  */
@@ -5102,6 +5131,19 @@ declare class Experiments {
5102
5131
  */
5103
5132
  findFeedbackScoreNames(request?: FindFeedbackScoreNamesRequest, requestOptions?: Experiments.RequestOptions): HttpResponsePromise<string[]>;
5104
5133
  private __findFeedbackScoreNames;
5134
+ /**
5135
+ * Find experiments grouped by specified fields
5136
+ *
5137
+ * @param {OpikApi.FindExperimentGroupsRequest} request
5138
+ * @param {Experiments.RequestOptions} requestOptions - Request-specific configuration.
5139
+ *
5140
+ * @throws {@link OpikApi.BadRequestError}
5141
+ *
5142
+ * @example
5143
+ * await client.experiments.findExperimentGroups()
5144
+ */
5145
+ findExperimentGroups(request?: FindExperimentGroupsRequest, requestOptions?: Experiments.RequestOptions): HttpResponsePromise<ExperimentGroupResponse>;
5146
+ private __findExperimentGroups;
5105
5147
  /**
5106
5148
  * Get experiment by id
5107
5149
  *
@@ -416,6 +416,20 @@ interface FindFeedbackScoreNamesRequest {
416
416
  experimentIds?: string;
417
417
  }
418
418
 
419
+ /**
420
+ * This file was auto-generated by Fern from our API Definition.
421
+ */
422
+ /**
423
+ * @example
424
+ * {}
425
+ */
426
+ interface FindExperimentGroupsRequest {
427
+ groups?: string;
428
+ types?: string;
429
+ name?: string;
430
+ filters?: string;
431
+ }
432
+
419
433
  /**
420
434
  * This file was auto-generated by Fern from our API Definition.
421
435
  */
@@ -2948,6 +2962,21 @@ interface PromptVersionLinkPublic {
2948
2962
  promptId?: string;
2949
2963
  }
2950
2964
 
2965
+ /**
2966
+ * This file was auto-generated by Fern from our API Definition.
2967
+ */
2968
+
2969
+ interface ExperimentGroupResponse {
2970
+ content?: Record<string, GroupContent>;
2971
+ }
2972
+
2973
+ /**
2974
+ * This file was auto-generated by Fern from our API Definition.
2975
+ */
2976
+ interface GroupContent {
2977
+ label?: string;
2978
+ }
2979
+
2951
2980
  /**
2952
2981
  * This file was auto-generated by Fern from our API Definition.
2953
2982
  */
@@ -5102,6 +5131,19 @@ declare class Experiments {
5102
5131
  */
5103
5132
  findFeedbackScoreNames(request?: FindFeedbackScoreNamesRequest, requestOptions?: Experiments.RequestOptions): HttpResponsePromise<string[]>;
5104
5133
  private __findFeedbackScoreNames;
5134
+ /**
5135
+ * Find experiments grouped by specified fields
5136
+ *
5137
+ * @param {OpikApi.FindExperimentGroupsRequest} request
5138
+ * @param {Experiments.RequestOptions} requestOptions - Request-specific configuration.
5139
+ *
5140
+ * @throws {@link OpikApi.BadRequestError}
5141
+ *
5142
+ * @example
5143
+ * await client.experiments.findExperimentGroups()
5144
+ */
5145
+ findExperimentGroups(request?: FindExperimentGroupsRequest, requestOptions?: Experiments.RequestOptions): HttpResponsePromise<ExperimentGroupResponse>;
5146
+ private __findExperimentGroups;
5105
5147
  /**
5106
5148
  * Get experiment by id
5107
5149
  *