-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenapi.yaml
More file actions
5102 lines (4934 loc) · 181 KB
/
openapi.yaml
File metadata and controls
5102 lines (4934 loc) · 181 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: Scorecard API
description: REST API for Scorecard
version: 1.0.0
servers:
- url: https://api2.scorecard.io/api/v2
security:
- ApiKeyAuth: []
paths:
/projects:
post:
operationId: createProject
summary: Create Project
description: Create a new Project.
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: The name of the Project.
description:
type: string
description: The description of the Project.
required:
- name
- description
examples:
Create a new project:
value:
name: My Project
description: This is a test project
summary: Create a new project
description: Request to create a new project with a name and description.
responses:
"201":
description: Project created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/Project"
examples:
Created project response:
value:
id: "314"
name: My Project
description: This is a test project
summary: Created project response
description: Response after successfully creating a project.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: >-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
const project = await client.projects.create({ description: 'This is a test project', name: 'My
Project' });
console.log(project.id);
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
project = client.projects.create(
description="This is a test project",
name="My Project",
)
print(project.id)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/projects \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $SCORECARD_API_KEY" \
-d '{
"description": "This is a test project",
"name": "My Project"
}'
get:
operationId: listProjects
summary: List Projects
description: >-
Retrieve a paginated list of all Projects. Projects are ordered by creation date, with oldest Projects
first.
parameters:
- in: query
name: limit
description: Maximum number of items to return (1-100). Use with `cursor` for pagination through large sets.
schema:
type: integer
exclusiveMinimum: 0
default: 20
example: 20
- in: query
name: cursor
description: >-
Cursor for pagination. Pass the `nextCursor` from the previous response to get the next page of
results.
schema:
type: string
example: "123"
responses:
"200":
description: Successfully retrieved list of Projects.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: "#/components/schemas/Project"
nextCursor:
type:
- string
- "null"
hasMore:
type: boolean
total:
type: integer
minimum: 0
required:
- data
- nextCursor
- hasMore
examples:
Project list with pagination:
value:
data:
- id: "123"
name: Q&A Chatbot
description: Chatbot for answering questions about the company.
- id: "124"
name: Summarizer (Europe)
description: Summarizer for documents in the Europe region.
nextCursor: "125"
hasMore: true
summary: Project list with pagination
description: Example response showing a list of two Projects with pagination information.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
// Automatically fetches more pages as needed.
for await (const project of client.projects.list()) {
console.log(project.id);
}
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
page = client.projects.list()
page = page.data[0]
print(page.id)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/projects \
-H "Authorization: Bearer $SCORECARD_API_KEY"
/projects/{projectId}/testsets:
get:
operationId: listTestsets
summary: List Testsets in Project
description: Retrieve a paginated list of Testsets belonging to a Project.
parameters:
- in: path
name: projectId
description: The ID of the Project.
schema:
type: string
example: "314"
required: true
- in: query
name: limit
description: Maximum number of items to return (1-100). Use with `cursor` for pagination through large sets.
schema:
type: integer
exclusiveMinimum: 0
default: 20
example: 20
- in: query
name: cursor
description: >-
Cursor for pagination. Pass the `nextCursor` from the previous response to get the next page of
results.
schema:
type: string
example: "123"
responses:
"200":
description: Successfully retrieved list of Testsets.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: "#/components/schemas/Testset"
nextCursor:
type:
- string
- "null"
hasMore:
type: boolean
total:
type: integer
minimum: 0
required:
- data
- nextCursor
- hasMore
examples:
Testset list with fields:
value:
data:
- id: "246"
name: Long Context Q&A
description: Testset for long context Q&A chatbot.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
geo:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata:
- provenance
- geo
nextCursor: "247"
hasMore: true
summary: Testset list with fields
description: >-
Example response showing a paginated list of Testsets with schema and field mapping
details.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
// Automatically fetches more pages as needed.
for await (const testset of client.testsets.list('314')) {
console.log(testset.id);
}
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
page = client.testsets.list(
project_id="314",
)
page = page.data[0]
print(page.id)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/projects/$PROJECT_ID/testsets \
-H "Authorization: Bearer $SCORECARD_API_KEY"
post:
operationId: createTestset
summary: Create Testset
description: Create a new Testset for a Project. The Testset will be created in the Project specified in the path.
parameters:
- in: path
name: projectId
description: The ID of the Project to create the Testset in.
schema:
type: string
example: "314"
required: true
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: The name of the Testset.
description:
type: string
description: The description of the Testset.
jsonSchema:
type: object
description: The JSON schema for each Testcase in the Testset.
additionalProperties: true
fieldMapping:
type: object
properties:
inputs:
type: array
items:
type: string
description: Fields that represent inputs to the AI system.
expected:
type: array
items:
type: string
description: Fields that represent expected outputs.
metadata:
type: array
items:
type: string
description: Fields that are not inputs or expected outputs.
required:
- inputs
- expected
- metadata
description: >-
Maps top-level keys of the Testcase schema to their roles (input/expected output).
Unmapped fields are treated as metadata.
required:
- name
- description
- jsonSchema
- fieldMapping
examples:
Create Q&A Testset:
value:
name: Long Context Q&A
description: Testset for long context Q&A chatbot.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
geo:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata: []
summary: Create Q&A Testset
description: >-
Request to create a Testset for evaluating long context Q&A with fields for the question,
ideal answer, and metadata like provenance and geographical context.
responses:
"201":
description: Testset created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/Testset"
examples:
Created Testset response:
value:
id: "246"
name: Long Context Q&A
description: Testset for long context Q&A chatbot.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
geo:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata:
- provenance
- geo
summary: Created Testset response
description: >-
Response after successfully creating a Testset, showing the assigned ID and complete
schema with automatically populated field mappings.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
const testset = await client.testsets.create('314', {
description: 'Testset for long context Q&A chatbot.',
fieldMapping: { inputs: ['question'], expected: ['idealAnswer'], metadata: [] },
jsonSchema: {
type: 'object',
properties: {
question: { type: 'string' },
idealAnswer: { type: 'string' },
provenance: { type: 'string' },
geo: { type: 'string' },
},
},
name: 'Long Context Q&A',
});
console.log(testset.id);
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
testset = client.testsets.create(
project_id="314",
description="Testset for long context Q&A chatbot.",
field_mapping={
"inputs": ["question"],
"expected": ["idealAnswer"],
"metadata": [],
},
json_schema={
"type": "object",
"properties": {
"question": {
"type": "string"
},
"idealAnswer": {
"type": "string"
},
"provenance": {
"type": "string"
},
"geo": {
"type": "string"
},
},
},
name="Long Context Q&A",
)
print(testset.id)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/projects/$PROJECT_ID/testsets \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $SCORECARD_API_KEY" \
-d '{
"description": "Testset for long context Q&A chatbot.",
"fieldMapping": {
"expected": [
"idealAnswer"
],
"inputs": [
"question"
],
"metadata": [
"string"
]
},
"jsonSchema": {
"type": "bar",
"properties": "bar"
},
"name": "Long Context Q&A"
}'
/testsets/{testsetId}:
get:
operationId: getTestset
summary: Get Testset
parameters:
- in: path
name: testsetId
description: The ID of the Testset.
schema:
type: string
example: "246"
required: true
responses:
"200":
description: Successfully retrieved Testset
content:
application/json:
schema:
$ref: "#/components/schemas/Testset"
examples:
Complete Testset details:
value:
id: "246"
name: Long Context Q&A
description: Testset for long context Q&A chatbot.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
geo:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata:
- provenance
- geo
summary: Complete Testset details
description: >-
Example response showing all details of a Testset including its schema definition and
field mappings.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
const testset = await client.testsets.get('246');
console.log(testset.id);
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
testset = client.testsets.get(
"246",
)
print(testset.id)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/testsets/$TESTSET_ID \
-H "Authorization: Bearer $SCORECARD_API_KEY"
patch:
operationId: updateTestset
summary: Update Testset
description: >-
Update a Testset. Only the fields provided in the request body will be updated.
If a field is provided, the new content will replace the existing content.
If a field is not provided, the existing content will remain unchanged.
When updating the schema:
- If field mappings are not provided and existing mappings reference fields that no longer exist,
those mappings will be automatically removed
- To preserve all existing mappings, ensure all referenced fields remain in the updated schema
- For complete control, provide both schema and fieldMapping when updating the schema
parameters:
- in: path
name: testsetId
description: The ID of the Testset to update.
schema:
type: string
example: "246"
required: true
requestBody:
content:
application/json:
schema:
type: object
properties:
name:
type: string
description: The name of the Testset.
description:
type: string
description: The description of the Testset.
jsonSchema:
type: object
description: The JSON schema for each Testcase in the Testset.
additionalProperties: true
fieldMapping:
type: object
properties:
inputs:
type: array
items:
type: string
description: Fields that represent inputs to the AI system.
expected:
type: array
items:
type: string
description: Fields that represent expected outputs.
metadata:
type: array
items:
type: string
description: Fields that are not inputs or expected outputs.
required:
- inputs
- expected
- metadata
description: >-
Maps top-level keys of the Testcase schema to their roles (input/expected output).
Unmapped fields are treated as metadata.
examples:
Update metadata only:
value:
name: Updated Q&A Testset
description: Updated description for the Q&A Testset.
summary: Update metadata only
description: >-
Simple metadata update without changing schema or mappings. Updates only the name and
description fields while preserving the existing schema and field mappings.
Remove schema field:
value:
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
summary: Remove schema field
description: >-
This request removes the 'geo' field that existed in the original schema, but doesn't
explicitly update the field mappings. Scorecard will automatically remove any field mappings
that reference deleted fields.
Full schema revision:
value:
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata: []
summary: Full schema revision
description: >-
Explicit update of both schema and field mappings, allowing complete control over the
Testset structure. This example removes the 'geo' field and explicitly updates the field
mappings to exclude 'provenance' from metadata.
responses:
"200":
description: Testset updated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/Testset"
examples:
Updated metadata only:
value:
id: "246"
name: Updated Q&A Testset
description: Updated description for the Q&A Testset.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
geo:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata:
- provenance
- geo
summary: Updated metadata only
description: >-
Result after updating only the Testset's name and description. All schema fields and
mappings remain unchanged.
Auto-updated mappings:
value:
id: "246"
name: Long Context Q&A
description: Testset for long context Q&A chatbot.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata:
- provenance
summary: Auto-updated mappings
description: >-
Result after schema update with automatic field mapping cleanup. The 'geo' field has been
automatically removed from the metadata mapping since it no longer exists in the schema.
Custom field mapping:
value:
id: "246"
name: Long Context Q&A
description: Testset for long context Q&A chatbot.
jsonSchema:
type: object
properties:
question:
type: string
idealAnswer:
type: string
provenance:
type: string
fieldMapping:
inputs:
- question
expected:
- idealAnswer
metadata: []
summary: Custom field mapping
description: >-
Result after explicit schema and field mapping update. Note that 'provenance' is not
included in metadata since it wasn't specified in the request's field mapping.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
const testset = await client.testsets.update('246', {
description: 'Updated description for the Q&A Testset.',
name: 'Updated Q&A Testset',
});
console.log(testset.id);
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
testset = client.testsets.update(
testset_id="246",
description="Updated description for the Q&A Testset.",
name="Updated Q&A Testset",
)
print(testset.id)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/testsets/$TESTSET_ID \
-X PATCH \
-H "Authorization: Bearer $SCORECARD_API_KEY"
delete:
operationId: deleteTestset
summary: Delete Testset
parameters:
- in: path
name: testsetId
description: The ID of the Testset to delete.
schema:
type: string
example: "246"
required: true
responses:
"200":
description: Testset deleted successfully
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
description: Whether the deletion was successful.
required:
- success
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
const testset = await client.testsets.delete('246');
console.log(testset.success);
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(
api_key="My API Key",
)
testset = client.testsets.delete(
"246",
)
print(testset.success)
- lang: cURL
source: |-
curl https://api2.scorecard.io/api/v2/testsets/$TESTSET_ID \
-X DELETE \
-H "Authorization: Bearer $SCORECARD_API_KEY"
/testsets/{testsetId}/testcases:
get:
operationId: listTestcases
summary: List Testcases in Testset
description: Retrieve a paginated list of Testcases belonging to a Testset.
parameters:
- in: path
name: testsetId
description: The ID of the Testset to list Testcases from.
schema:
type: string
example: "246"
required: true
- in: query
name: limit
description: Maximum number of items to return (1-100). Use with `cursor` for pagination through large sets.
schema:
type: integer
exclusiveMinimum: 0
default: 20
example: 20
- in: query
name: cursor
description: >-
Cursor for pagination. Pass the `nextCursor` from the previous response to get the next page of
results.
schema:
type: string
example: "123"
responses:
"200":
description: Successfully retrieved list of Testcases.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: "#/components/schemas/Testcase"
nextCursor:
type:
- string
- "null"
hasMore:
type: boolean
total:
type: integer
minimum: 0
required:
- data
- nextCursor
- hasMore
examples:
Testcase list with pagination:
value:
data:
- id: "123"
testsetId: "246"
jsonData:
question: What is the capital of France?
idealAnswer: Paris
provenance: hand_curated
inputs:
question: What is the capital of France?
expected:
idealAnswer: Paris
- id: "124"
testsetId: "246"
jsonData:
question: What is the largest planet in our solar system?
idealAnswer: Jupiter
provenance: synthetic
inputs:
question: What is the largest planet in our solar system?
expected:
idealAnswer: Jupiter
- id: "125"
testsetId: "246"
jsonData:
question: What is the deepest ocean on Earth?
provenance: user_feedback
inputs:
question: What is the deepest ocean on Earth?
expected: {}
validationErrors:
- path: /data
message: Required field 'idealAnswer' is missing
nextCursor: "126"
hasMore: true
summary: Testcase list with pagination
description: Example response showing a paginated list of Testcases.
"401":
$ref: "#/components/responses/UnauthenticatedError"
"500":
$ref: "#/components/responses/ServiceError"
x-codeSamples:
- lang: JavaScript
source: |-
import Scorecard from 'scorecard-ai';
const client = new Scorecard({
apiKey: 'My API Key',
});
// Automatically fetches more pages as needed.
for await (const testcase of client.testcases.list('246')) {
console.log(testcase.id);
}
- lang: Python
source: |-
from scorecard_ai import Scorecard
client = Scorecard(