forked from openai/openai-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevals.ts
More file actions
902 lines (800 loc) · 25.6 KB
/
evals.ts
File metadata and controls
902 lines (800 loc) · 25.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../core/resource';
import * as Shared from '../shared';
import * as GraderModelsAPI from '../graders/grader-models';
import * as ResponsesAPI from '../responses/responses';
import * as RunsAPI from './runs/runs';
import {
CreateEvalCompletionsRunDataSource,
CreateEvalJSONLRunDataSource,
EvalAPIError,
RunCancelParams,
RunCancelResponse,
RunCreateParams,
RunCreateResponse,
RunDeleteParams,
RunDeleteResponse,
RunListParams,
RunListResponse,
RunListResponsesPage,
RunRetrieveParams,
RunRetrieveResponse,
Runs,
} from './runs/runs';
import { APIPromise } from '../../core/api-promise';
import { CursorPage, type CursorPageParams, PagePromise } from '../../core/pagination';
import { RequestOptions } from '../../internal/request-options';
import { path } from '../../internal/utils/path';
export class Evals extends APIResource {
runs: RunsAPI.Runs = new RunsAPI.Runs(this._client);
/**
* Create the structure of an evaluation that can be used to test a model's
* performance. An evaluation is a set of testing criteria and the config for a
* data source, which dictates the schema of the data used in the evaluation. After
* creating an evaluation, you can run it on different models and model parameters.
* We support several types of graders and datasources. For more information, see
* the [Evals guide](https://platform.openai.com/docs/guides/evals).
*/
create(body: EvalCreateParams, options?: RequestOptions): APIPromise<EvalCreateResponse> {
return this._client.post('/evals', { body, ...options });
}
/**
* Get an evaluation by ID.
*/
retrieve(evalID: string, options?: RequestOptions): APIPromise<EvalRetrieveResponse> {
return this._client.get(path`/evals/${evalID}`, options);
}
/**
* Update certain properties of an evaluation.
*/
update(evalID: string, body: EvalUpdateParams, options?: RequestOptions): APIPromise<EvalUpdateResponse> {
return this._client.post(path`/evals/${evalID}`, { body, ...options });
}
/**
* List evaluations for a project.
*/
list(
query: EvalListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<EvalListResponsesPage, EvalListResponse> {
return this._client.getAPIList('/evals', CursorPage<EvalListResponse>, { query, ...options });
}
/**
* Delete an evaluation.
*/
delete(evalID: string, options?: RequestOptions): APIPromise<EvalDeleteResponse> {
return this._client.delete(path`/evals/${evalID}`, options);
}
}
export type EvalListResponsesPage = CursorPage<EvalListResponse>;
/**
* A CustomDataSourceConfig which specifies the schema of your `item` and
* optionally `sample` namespaces. The response schema defines the shape of the
* data that will be:
*
* - Used to define your testing criteria and
* - What data is required when creating a run
*/
export interface EvalCustomDataSourceConfig {
/**
* The json schema for the run data source items. Learn how to build JSON schemas
* [here](https://json-schema.org/).
*/
schema: Record<string, unknown>;
/**
* The type of data source. Always `custom`.
*/
type: 'custom';
}
/**
* @deprecated Deprecated in favor of LogsDataSourceConfig.
*/
export interface EvalStoredCompletionsDataSourceConfig {
/**
* The json schema for the run data source items. Learn how to build JSON schemas
* [here](https://json-schema.org/).
*/
schema: Record<string, unknown>;
/**
* The type of data source. Always `stored_completions`.
*/
type: 'stored_completions';
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
}
/**
* An Eval object with a data source config and testing criteria. An Eval
* represents a task to be done for your LLM integration. Like:
*
* - Improve the quality of my chatbot
* - See how well my chatbot handles customer support
* - Check if o4-mini is better at my usecase than gpt-4o
*/
export interface EvalCreateResponse {
/**
* Unique identifier for the evaluation.
*/
id: string;
/**
* The Unix timestamp (in seconds) for when the eval was created.
*/
created_at: number;
/**
* Configuration of data sources used in runs of the evaluation.
*/
data_source_config:
| EvalCustomDataSourceConfig
| EvalCreateResponse.Logs
| EvalStoredCompletionsDataSourceConfig;
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata: Shared.Metadata | null;
/**
* The name of the evaluation.
*/
name: string;
/**
* The object type.
*/
object: 'eval';
/**
* A list of testing criteria.
*/
testing_criteria: Array<
| GraderModelsAPI.LabelModelGrader
| GraderModelsAPI.StringCheckGrader
| EvalCreateResponse.EvalGraderTextSimilarity
| EvalCreateResponse.EvalGraderPython
| EvalCreateResponse.EvalGraderScoreModel
>;
}
export namespace EvalCreateResponse {
/**
* A LogsDataSourceConfig which specifies the metadata property of your logs query.
* This is usually metadata like `usecase=chatbot` or `prompt-version=v2`, etc. The
* schema returned by this data source config is used to defined what variables are
* available in your evals. `item` and `sample` are both defined when using this
* data source config.
*/
export interface Logs {
/**
* The json schema for the run data source items. Learn how to build JSON schemas
* [here](https://json-schema.org/).
*/
schema: Record<string, unknown>;
/**
* The type of data source. Always `logs`.
*/
type: 'logs';
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
}
/**
* A TextSimilarityGrader object which grades text based on similarity metrics.
*/
export interface EvalGraderTextSimilarity extends GraderModelsAPI.TextSimilarityGrader {
/**
* The threshold for the score.
*/
pass_threshold: number;
}
/**
* A PythonGrader object that runs a python script on the input.
*/
export interface EvalGraderPython extends GraderModelsAPI.PythonGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
/**
* A ScoreModelGrader object that uses a model to assign a score to the input.
*/
export interface EvalGraderScoreModel extends GraderModelsAPI.ScoreModelGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
}
/**
* An Eval object with a data source config and testing criteria. An Eval
* represents a task to be done for your LLM integration. Like:
*
* - Improve the quality of my chatbot
* - See how well my chatbot handles customer support
* - Check if o4-mini is better at my usecase than gpt-4o
*/
export interface EvalRetrieveResponse {
/**
* Unique identifier for the evaluation.
*/
id: string;
/**
* The Unix timestamp (in seconds) for when the eval was created.
*/
created_at: number;
/**
* Configuration of data sources used in runs of the evaluation.
*/
data_source_config:
| EvalCustomDataSourceConfig
| EvalRetrieveResponse.Logs
| EvalStoredCompletionsDataSourceConfig;
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata: Shared.Metadata | null;
/**
* The name of the evaluation.
*/
name: string;
/**
* The object type.
*/
object: 'eval';
/**
* A list of testing criteria.
*/
testing_criteria: Array<
| GraderModelsAPI.LabelModelGrader
| GraderModelsAPI.StringCheckGrader
| EvalRetrieveResponse.EvalGraderTextSimilarity
| EvalRetrieveResponse.EvalGraderPython
| EvalRetrieveResponse.EvalGraderScoreModel
>;
}
export namespace EvalRetrieveResponse {
/**
* A LogsDataSourceConfig which specifies the metadata property of your logs query.
* This is usually metadata like `usecase=chatbot` or `prompt-version=v2`, etc. The
* schema returned by this data source config is used to defined what variables are
* available in your evals. `item` and `sample` are both defined when using this
* data source config.
*/
export interface Logs {
/**
* The json schema for the run data source items. Learn how to build JSON schemas
* [here](https://json-schema.org/).
*/
schema: Record<string, unknown>;
/**
* The type of data source. Always `logs`.
*/
type: 'logs';
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
}
/**
* A TextSimilarityGrader object which grades text based on similarity metrics.
*/
export interface EvalGraderTextSimilarity extends GraderModelsAPI.TextSimilarityGrader {
/**
* The threshold for the score.
*/
pass_threshold: number;
}
/**
* A PythonGrader object that runs a python script on the input.
*/
export interface EvalGraderPython extends GraderModelsAPI.PythonGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
/**
* A ScoreModelGrader object that uses a model to assign a score to the input.
*/
export interface EvalGraderScoreModel extends GraderModelsAPI.ScoreModelGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
}
/**
* An Eval object with a data source config and testing criteria. An Eval
* represents a task to be done for your LLM integration. Like:
*
* - Improve the quality of my chatbot
* - See how well my chatbot handles customer support
* - Check if o4-mini is better at my usecase than gpt-4o
*/
export interface EvalUpdateResponse {
/**
* Unique identifier for the evaluation.
*/
id: string;
/**
* The Unix timestamp (in seconds) for when the eval was created.
*/
created_at: number;
/**
* Configuration of data sources used in runs of the evaluation.
*/
data_source_config:
| EvalCustomDataSourceConfig
| EvalUpdateResponse.Logs
| EvalStoredCompletionsDataSourceConfig;
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata: Shared.Metadata | null;
/**
* The name of the evaluation.
*/
name: string;
/**
* The object type.
*/
object: 'eval';
/**
* A list of testing criteria.
*/
testing_criteria: Array<
| GraderModelsAPI.LabelModelGrader
| GraderModelsAPI.StringCheckGrader
| EvalUpdateResponse.EvalGraderTextSimilarity
| EvalUpdateResponse.EvalGraderPython
| EvalUpdateResponse.EvalGraderScoreModel
>;
}
export namespace EvalUpdateResponse {
/**
* A LogsDataSourceConfig which specifies the metadata property of your logs query.
* This is usually metadata like `usecase=chatbot` or `prompt-version=v2`, etc. The
* schema returned by this data source config is used to defined what variables are
* available in your evals. `item` and `sample` are both defined when using this
* data source config.
*/
export interface Logs {
/**
* The json schema for the run data source items. Learn how to build JSON schemas
* [here](https://json-schema.org/).
*/
schema: Record<string, unknown>;
/**
* The type of data source. Always `logs`.
*/
type: 'logs';
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
}
/**
* A TextSimilarityGrader object which grades text based on similarity metrics.
*/
export interface EvalGraderTextSimilarity extends GraderModelsAPI.TextSimilarityGrader {
/**
* The threshold for the score.
*/
pass_threshold: number;
}
/**
* A PythonGrader object that runs a python script on the input.
*/
export interface EvalGraderPython extends GraderModelsAPI.PythonGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
/**
* A ScoreModelGrader object that uses a model to assign a score to the input.
*/
export interface EvalGraderScoreModel extends GraderModelsAPI.ScoreModelGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
}
/**
* An Eval object with a data source config and testing criteria. An Eval
* represents a task to be done for your LLM integration. Like:
*
* - Improve the quality of my chatbot
* - See how well my chatbot handles customer support
* - Check if o4-mini is better at my usecase than gpt-4o
*/
export interface EvalListResponse {
/**
* Unique identifier for the evaluation.
*/
id: string;
/**
* The Unix timestamp (in seconds) for when the eval was created.
*/
created_at: number;
/**
* Configuration of data sources used in runs of the evaluation.
*/
data_source_config:
| EvalCustomDataSourceConfig
| EvalListResponse.Logs
| EvalStoredCompletionsDataSourceConfig;
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata: Shared.Metadata | null;
/**
* The name of the evaluation.
*/
name: string;
/**
* The object type.
*/
object: 'eval';
/**
* A list of testing criteria.
*/
testing_criteria: Array<
| GraderModelsAPI.LabelModelGrader
| GraderModelsAPI.StringCheckGrader
| EvalListResponse.EvalGraderTextSimilarity
| EvalListResponse.EvalGraderPython
| EvalListResponse.EvalGraderScoreModel
>;
}
export namespace EvalListResponse {
/**
* A LogsDataSourceConfig which specifies the metadata property of your logs query.
* This is usually metadata like `usecase=chatbot` or `prompt-version=v2`, etc. The
* schema returned by this data source config is used to defined what variables are
* available in your evals. `item` and `sample` are both defined when using this
* data source config.
*/
export interface Logs {
/**
* The json schema for the run data source items. Learn how to build JSON schemas
* [here](https://json-schema.org/).
*/
schema: Record<string, unknown>;
/**
* The type of data source. Always `logs`.
*/
type: 'logs';
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
}
/**
* A TextSimilarityGrader object which grades text based on similarity metrics.
*/
export interface EvalGraderTextSimilarity extends GraderModelsAPI.TextSimilarityGrader {
/**
* The threshold for the score.
*/
pass_threshold: number;
}
/**
* A PythonGrader object that runs a python script on the input.
*/
export interface EvalGraderPython extends GraderModelsAPI.PythonGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
/**
* A ScoreModelGrader object that uses a model to assign a score to the input.
*/
export interface EvalGraderScoreModel extends GraderModelsAPI.ScoreModelGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
}
export interface EvalDeleteResponse {
deleted: boolean;
eval_id: string;
object: string;
}
export interface EvalCreateParams {
/**
* The configuration for the data source used for the evaluation runs. Dictates the
* schema of the data used in the evaluation.
*/
data_source_config: EvalCreateParams.Custom | EvalCreateParams.Logs | EvalCreateParams.StoredCompletions;
/**
* A list of graders for all eval runs in this group. Graders can reference
* variables in the data source using double curly braces notation, like
* `{{item.variable_name}}`. To reference the model's output, use the `sample`
* namespace (ie, `{{sample.output_text}}`).
*/
testing_criteria: Array<
| EvalCreateParams.LabelModel
| GraderModelsAPI.StringCheckGrader
| EvalCreateParams.TextSimilarity
| EvalCreateParams.Python
| EvalCreateParams.ScoreModel
>;
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
/**
* The name of the evaluation.
*/
name?: string;
}
export namespace EvalCreateParams {
/**
* A CustomDataSourceConfig object that defines the schema for the data source used
* for the evaluation runs. This schema is used to define the shape of the data
* that will be:
*
* - Used to define your testing criteria and
* - What data is required when creating a run
*/
export interface Custom {
/**
* The json schema for each row in the data source.
*/
item_schema: Record<string, unknown>;
/**
* The type of data source. Always `custom`.
*/
type: 'custom';
/**
* Whether the eval should expect you to populate the sample namespace (ie, by
* generating responses off of your data source)
*/
include_sample_schema?: boolean;
}
/**
* A data source config which specifies the metadata property of your logs query.
* This is usually metadata like `usecase=chatbot` or `prompt-version=v2`, etc.
*/
export interface Logs {
/**
* The type of data source. Always `logs`.
*/
type: 'logs';
/**
* Metadata filters for the logs data source.
*/
metadata?: Record<string, unknown>;
}
/**
* @deprecated Deprecated in favor of LogsDataSourceConfig.
*/
export interface StoredCompletions {
/**
* The type of data source. Always `stored_completions`.
*/
type: 'stored_completions';
/**
* Metadata filters for the stored completions data source.
*/
metadata?: Record<string, unknown>;
}
/**
* A LabelModelGrader object which uses a model to assign labels to each item in
* the evaluation.
*/
export interface LabelModel {
/**
* A list of chat messages forming the prompt or context. May include variable
* references to the `item` namespace, ie {{item.name}}.
*/
input: Array<LabelModel.SimpleInputMessage | LabelModel.EvalItem>;
/**
* The labels to classify to each item in the evaluation.
*/
labels: Array<string>;
/**
* The model to use for the evaluation. Must support structured outputs.
*/
model: string;
/**
* The name of the grader.
*/
name: string;
/**
* The labels that indicate a passing result. Must be a subset of labels.
*/
passing_labels: Array<string>;
/**
* The object type, which is always `label_model`.
*/
type: 'label_model';
}
export namespace LabelModel {
export interface SimpleInputMessage {
/**
* The content of the message.
*/
content: string;
/**
* The role of the message (e.g. "system", "assistant", "user").
*/
role: string;
}
/**
* A message input to the model with a role indicating instruction following
* hierarchy. Instructions given with the `developer` or `system` role take
* precedence over instructions given with the `user` role. Messages with the
* `assistant` role are presumed to have been generated by the model in previous
* interactions.
*/
export interface EvalItem {
/**
* Text inputs to the model - can contain template strings.
*/
content: string | ResponsesAPI.ResponseInputText | EvalItem.OutputText;
/**
* The role of the message input. One of `user`, `assistant`, `system`, or
* `developer`.
*/
role: 'user' | 'assistant' | 'system' | 'developer';
/**
* The type of the message input. Always `message`.
*/
type?: 'message';
}
export namespace EvalItem {
/**
* A text output from the model.
*/
export interface OutputText {
/**
* The text output from the model.
*/
text: string;
/**
* The type of the output text. Always `output_text`.
*/
type: 'output_text';
}
}
}
/**
* A TextSimilarityGrader object which grades text based on similarity metrics.
*/
export interface TextSimilarity extends GraderModelsAPI.TextSimilarityGrader {
/**
* The threshold for the score.
*/
pass_threshold: number;
}
/**
* A PythonGrader object that runs a python script on the input.
*/
export interface Python extends GraderModelsAPI.PythonGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
/**
* A ScoreModelGrader object that uses a model to assign a score to the input.
*/
export interface ScoreModel extends GraderModelsAPI.ScoreModelGrader {
/**
* The threshold for the score.
*/
pass_threshold?: number;
}
}
export interface EvalUpdateParams {
/**
* Set of 16 key-value pairs that can be attached to an object. This can be useful
* for storing additional information about the object in a structured format, and
* querying for objects via API or the dashboard.
*
* Keys are strings with a maximum length of 64 characters. Values are strings with
* a maximum length of 512 characters.
*/
metadata?: Shared.Metadata | null;
/**
* Rename the evaluation.
*/
name?: string;
}
export interface EvalListParams extends CursorPageParams {
/**
* Sort order for evals by timestamp. Use `asc` for ascending order or `desc` for
* descending order.
*/
order?: 'asc' | 'desc';
/**
* Evals can be ordered by creation time or last updated time. Use `created_at` for
* creation time or `updated_at` for last updated time.
*/
order_by?: 'created_at' | 'updated_at';
}
Evals.Runs = Runs;
export declare namespace Evals {
export {
type EvalCustomDataSourceConfig as EvalCustomDataSourceConfig,
type EvalStoredCompletionsDataSourceConfig as EvalStoredCompletionsDataSourceConfig,
type EvalCreateResponse as EvalCreateResponse,
type EvalRetrieveResponse as EvalRetrieveResponse,
type EvalUpdateResponse as EvalUpdateResponse,
type EvalListResponse as EvalListResponse,
type EvalDeleteResponse as EvalDeleteResponse,
type EvalListResponsesPage as EvalListResponsesPage,
type EvalCreateParams as EvalCreateParams,
type EvalUpdateParams as EvalUpdateParams,
type EvalListParams as EvalListParams,
};
export {
Runs as Runs,
type CreateEvalCompletionsRunDataSource as CreateEvalCompletionsRunDataSource,
type CreateEvalJSONLRunDataSource as CreateEvalJSONLRunDataSource,
type EvalAPIError as EvalAPIError,
type RunCreateResponse as RunCreateResponse,
type RunRetrieveResponse as RunRetrieveResponse,
type RunListResponse as RunListResponse,
type RunDeleteResponse as RunDeleteResponse,
type RunCancelResponse as RunCancelResponse,
type RunListResponsesPage as RunListResponsesPage,
type RunCreateParams as RunCreateParams,
type RunRetrieveParams as RunRetrieveParams,
type RunListParams as RunListParams,
type RunDeleteParams as RunDeleteParams,
type RunCancelParams as RunCancelParams,
};
}