forked from eval-hub/eval-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1618 lines (1612 loc) · 48.9 KB
/
openapi.yaml
File metadata and controls
1618 lines (1612 loc) · 48.9 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
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Eval Hub
description: API REST server for evaluation backend orchestration
version: 0.3.0
contact:
name: API Support
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8080
description: Local development server
security: []
tags:
- name: Evaluations
description: Evaluation job management endpoints
- name: Collections
description: Benchmark collection management endpoints
- name: Providers
description: Evaluation provider endpoints
- name: Health
description: Health check endpoints
paths:
/api/v1/health:
get:
summary: Health Check
description: Health check endpoint.
operationId: get_health
tags:
- Health
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/HealthResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
/api/v1/evaluations/jobs:
post:
tags:
- Evaluations
summary: Create Evaluation
description: Create and execute evaluation request using the simplified benchmark schema.
operationId: post_evaluations_jobs
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EvaluationJobConfig'
responses:
'202':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/EvaluationJobResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
get:
tags:
- Evaluations
summary: List Evaluations
description: List all evaluation requests.
operationId: get_evaluations_jobs
parameters:
- name: limit
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Maximum number of evaluations to return
default: 50
title: Limit
description: Maximum number of evaluations to return
- name: offset
in: query
required: false
schema:
type: integer
minimum: 0
description: Offset for pagination
default: 0
title: Offset
description: Offset for pagination
- name: status
in: query
required: false
schema:
type: string
description: Filter by status
title: Status Filter
description: Filter by status
- name: name
in: query
required: false
schema:
type: string
title: Name
description: Name to search for
- name: tags
in: query
required: false
schema:
type: string
title: Tags
description: Tags to search for
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/EvaluationJobResourceList'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
/api/v1/evaluations/jobs/{id}:
get:
tags:
- Evaluations
summary: Get Evaluation
description: Returns the evaluation job resource with the current status and results.
operationId: get_evaluations_jobs_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Id
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/EvaluationJobResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
delete:
tags:
- Evaluations
summary: Cancel Evaluation
description: Cancel a running evaluation.
operationId: delete_evaluations_jobs_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Id
- name: hard_delete
in: query
required: false
schema:
type: boolean
description: If `true`, delete the evaluation job permanently so that `GET /api/v1/evaluations/jobs/{id}` will return a 404.
default: false
title: Hard Delete
responses:
'204':
description: Successful Response
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'409':
$ref: '#/components/responses/Conflict'
/api/v1/evaluations/providers:
get:
tags:
- Providers
summary: List Providers
description: List all registered evaluation providers.
operationId: list_providers
parameters:
- name: limit
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Maximum number of providers to return
default: 50
title: Limit
description: Maximum number of providers to return
- name: offset
in: query
required: false
schema:
type: integer
minimum: 0
description: Offset for pagination
default: 0
title: Offset
description: Offset for pagination
- name: benchmarks
in: query
required: false
schema:
type: boolean
default: true
description: Set to false to not include benchmarks supported by this provider in the response
title: Benchmarks
description: Include or exclude benchmarks supported by this provider in the response
- name: name
in: query
required: false
schema:
type: string
title: Name
description: Name to search for
- name: tags
in: query
required: false
schema:
type: string
title: Tags
description: Tags to search for
- name: scope
in: query
required: false
schema:
type: string
enum:
- system
- tenant
title: Scope of providers
description: |
Set to `system` to get only system defined providers, or `tenant` to get only user defined providers. If `scope` is not provided, both system and user defined providers will be returned.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderResourceList'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
post:
tags:
- Providers
summary: Create a new provider scoped to the current tenant (Bring Your Own Provider)
description: Create a new provider scoped to the current tenant (Bring Your Own Provider)
operationId: post_providers
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderConfig'
required: true
responses:
'201':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
/api/v1/evaluations/providers/{id}:
get:
tags:
- Providers
summary: Get Provider
description: Get a provider by ID.
operationId: get_providers_id
parameters:
- name: id
in: path
required: true
schema:
type: string
description: Provider ID
title: Provider Id
description: Provider ID
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
put:
tags:
- Providers
summary: Update Provider
description: Update an existing provider.
operationId: put_providers_id
parameters:
- name: id
in: path
required: true
schema:
type: string
description: Provider ID
title: Provider Id
description: Provider ID
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderConfig'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
patch:
tags:
- Providers
summary: Patch Provider
description: Partially update an existing provider.
operationId: patch_providers_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Provider Id
requestBody:
required: true
content:
application/json:
schema:
type: array
title: Json Patch
description: JSON Patch operation
items:
$ref: '#/components/schemas/PatchOperation'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProviderResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
delete:
tags:
- Providers
summary: Delete Provider
description: Delete provider by ID.
operationId: delete_providers_id
parameters:
- name: id
in: path
required: true
schema:
type: string
description: Provider ID
title: Provider Id
description: Provider ID
responses:
'204':
description: Successful Response
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
/api/v1/evaluations/collections:
get:
tags:
- Collections
summary: List Collections
description: List all benchmark collections.
operationId: get_collections
parameters:
- name: limit
in: query
required: false
schema:
type: integer
maximum: 100
minimum: 1
description: Maximum number of collections to return
default: 50
title: Limit
description: Maximum number of collections to return
- name: offset
in: query
required: false
schema:
type: integer
minimum: 0
description: Offset for pagination
default: 0
title: Offset
description: Offset for pagination
- name: name
in: query
required: false
schema:
type: string
title: Name
description: Name to search for
- name: category
in: query
required: false
schema:
type: string
title: Category
description: Category to search for
- name: tags
in: query
required: false
schema:
type: string
title: Tags
description: Tags to search for
- name: scope
in: query
required: false
schema:
type: string
enum:
- system
- tenant
title: Scope of collections
description: |
Set to `system` to get only system defined collections, or `tenant` to get only user defined collections. If `scope` is not provided, both system and user defined collections will be returned.
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionResourceList'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
post:
tags:
- Collections
summary: Create Collection
description: Create a new collection.
operationId: post_collections
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionConfig'
required: true
responses:
'201':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
/api/v1/evaluations/collections/{id}:
get:
tags:
- Collections
summary: Get Collection
description: Get details of a specific collection.
operationId: get_collections_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Collection Id
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
put:
tags:
- Collections
summary: Update Collection
description: Update an existing collection.
operationId: put_collections_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Collection Id
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionConfig'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
patch:
tags:
- Collections
summary: Patch Collection
description: Partially update an existing collection.
operationId: patch_collections_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Collection Id
requestBody:
required: true
content:
application/json:
schema:
type: array
title: Json Patch
description: JSON Patch operation
items:
$ref: '#/components/schemas/PatchOperation'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CollectionResource'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
delete:
tags:
- Collections
summary: Delete Collection
description: Delete a collection.
operationId: delete_collections_id
parameters:
- name: id
in: path
required: true
schema:
type: string
title: Collection Id
responses:
'204':
description: Success
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
HealthResponse:
type: object
description: Health check response
properties:
status:
type: string
description: Overall status (e.g. healthy, degraded)
version:
type: string
description: Service version
timestamp:
type: string
format: date-time
description: Server timestamp
components:
type: object
additionalProperties:
type: object
additionalProperties: true
description: Per-component health
uptime:
type: integer
description: Uptime in nanoseconds (or use string for duration)
active_evaluations:
type: integer
description: Number of active evaluations
Error:
type: object
description: Error response
properties:
message_code:
type: string
description: Machine-readable error code
message:
type: string
description: Human-readable message
trace:
type: string
description: Request trace or debug info
required:
- message_code
- message
HRef:
type: object
description: Hypermedia reference
properties:
href:
type: string
description: URI reference
Page:
type: object
description: Generic pagination schema
properties:
first:
$ref: '#/components/schemas/HRef'
description: Link to first page
next:
$ref: '#/components/schemas/HRef'
description: Link to next page (omit if none)
limit:
type: integer
description: Page size
total_count:
type: integer
description: Total number of items
Resource:
type: object
description: Base resource fields
properties:
id:
type: string
description: Unique identifier
tenant:
type: string
description: Tenant for scoping
created_at:
type: string
format: date-time
description: Creation timestamp
updated_at:
type: string
format: date-time
description: Last update timestamp
owner:
type: string
description: Owner of the resource
EvaluationResource:
type: object
description: Evaluation resource (base fields for an evaluation)
allOf:
- $ref: '#/components/schemas/Resource'
- type: object
properties:
mlflow_experiment_id:
type: string
description: MLFlow experiment ID
OverallState:
type: string
enum:
- pending
- running
- completed
- failed
- cancelled
- partially_failed
description: Overall evaluation job state
MessageInfo:
type: object
description: Message from a downstream service
properties:
message:
type: string
description: Human-readable message
message_code:
type: string
description: Machine-readable code
EvaluationJobState:
type: object
description: Overall evaluation job state and message
required:
- state
- message
properties:
state:
$ref: '#/components/schemas/OverallState'
message:
$ref: '#/components/schemas/MessageInfo'
State:
type: string
enum:
- pending
- running
- completed
- failed
- cancelled
description: Evaluation or benchmark state
BenchmarkStatus:
type: object
description: Status of an individual benchmark in an evaluation
properties:
provider_id:
type: string
description: Provider ID
id:
type: string
description: Benchmark ID
benchmark_index:
type: integer
description: Benchmark index in the evaluation job request
status:
$ref: '#/components/schemas/State'
error_message:
$ref: '#/components/schemas/MessageInfo'
started_at:
type: string
format: date-time
description: RFC3339 start time
completed_at:
type: string
format: date-time
description: RFC3339 completion time
EvaluationJobStatus:
type: object
description: Current status of an evaluation job
allOf:
- $ref: '#/components/schemas/EvaluationJobState'
- type: object
properties:
benchmarks:
type: array
items:
$ref: '#/components/schemas/BenchmarkStatus'
description: Per-benchmark status
BenchmarkTest:
type: object
description: The test result of a single benchmark run
properties:
primary_score:
type: number
format: float
description: Primary score value
threshold:
type: number
format: float
description: Threshold value
pass:
type: boolean
description: Whether the benchmark passed
BenchmarkResult:
type: object
description: Result of a single benchmark run
properties:
id:
type: string
description: Benchmark ID
provider_id:
type: string
description: Provider ID
benchmark_index:
type: integer
description: Benchmark index in the evaluation job request
metrics:
type: object
additionalProperties: true
description: Metric name to value
artifacts:
type: object
additionalProperties: true
description: Artifact key to location/info
mlflow_run_id:
type: string
description: MLFlow run ID
logs_path:
type: string
description: Path to logs
test:
$ref: '#/components/schemas/BenchmarkTest'
description: Test result
EvaluationTest:
type: object
description: The test result for an evaluation
properties:
score:
type: number
format: float
description: Evaluation score value
threshold:
type: number
format: float
description: Threshold value
pass:
type: boolean
description: Whether the entire evaluation passed
EvaluationJobResults:
type: object
description: Results section for an evaluation job
properties:
benchmarks:
type: array
items:
$ref: '#/components/schemas/BenchmarkResult'
description: Per-benchmark results
mlflow_experiment_url:
type: string
description: URL to MLFlow experiment
test:
$ref: '#/components/schemas/EvaluationTest'
description: Test result
ModelAuth:
type: object
description: The model authentication configuration
properties:
secret_ref:
type: string
description: The reference to the secret containing the model authentication credentials
ModelRef:
type: object
description: Model specification for evaluation requests
required:
- url
- name
properties:
url:
type: string
description: Model URL
name:
type: string
description: Model name
parameters:
type: object
additionalProperties: true
description: Model specific parameters
auth:
$ref: '#/components/schemas/ModelAuth'
description: The model authentication configuration
EvaluationJobConfigCommon1:
type: object
title: EvaluationJobConfigCommon1
description: |
The evaluation job request configuration.
required:
- name
- model
properties:
name:
type: string
description: |
The evaluation job name.
description:
type: string
description: |
The evaluation job description.
tags:
type: array
items:
type: string
description: |
The evaluation job tags.
model:
$ref: '#/components/schemas/ModelRef'
description: |
The model to evaluate.
Ref:
type: object
description: Reference by ID
required:
- id
properties:
id:
type: string
description: Unique identifier
PrimaryScore:
type: object
description: Primary score metric configuration
properties:
metric:
type: string
description: Metric name
lower_is_better:
type: boolean
default: false
description: Whether lower values indicate better performance
PassCriteria:
type: object
description: Pass/fail threshold criteria
properties:
threshold:
type: number
format: float
default: 0
description: Threshold value
TestDataRefS3: