-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.yaml
More file actions
4767 lines (4452 loc) · 173 KB
/
openapi.yaml
File metadata and controls
4767 lines (4452 loc) · 173 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
info:
title: Isaacus API
version: 0.8.2
description: A RESTful API for using Isaacus legal AI models, data and other solutions.
termsOfService: https://isaacus.com/terms
contact:
name: Isaacus Support
url: https://isaacus.com/support
email: support@isaacus.com
license:
name: Apache 2.0
url: https://github.com/isaacus-dev/openapi/blob/main/LICENSE
openapi: 3.1.0
servers:
- url: https://api.isaacus.com/v1
paths:
/embeddings:
post:
tags:
- Embeddings
summary: Embedding
description: Embed legal texts with an Isaacus legal AI embedder.
operationId: CreateEmbeddings
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EmbeddingRequest'
required: true
responses:
'200':
description: Embeddings of legal texts produced by an Isaacus legal AI embedder.
content:
application/json:
schema:
$ref: '#/components/schemas/EmbeddingResponse'
examples:
example:
value:
embeddings:
- index: 0
embedding:
- -0.0258
- 0.02062
- -0.0114
- index: 1
embedding:
- -0.0358
- -0.0128
- 0.00251
usage:
input_tokens: 42
'400':
description: The request was invalid or could not be processed.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/ValidationError'
examples:
Validation error:
summary: Validation error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Validation error
status: 400
detail: The request was invalid or could not be processed.
instance: null
Embedding input too large error:
summary: Embedding input too large error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Embedding input too large error
status: 400
detail: The input to the embedding model exceeds the maximum allowed
size.
instance: null
Unsupported embedding dimension error:
summary: Unsupported embedding dimension error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Unsupported embedding dimension error
status: 400
detail: The provided embedding dimension is not supported by the
model.
instance: null
Unsupported embedding task error:
summary: Unsupported embedding task error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Unsupported embedding task error
status: 400
detail: The provided embedding task is not supported by the model.
instance: null
'401':
description: The API key you provided does not exist, is expired or revoked,
or is not authorized to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/UnauthorizedAPIKeyError'
examples:
Unauthorized API key error:
summary: Unauthorized API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Unauthorized API key error
status: 401
detail: The API key you provided does not exist, is expired or
revoked, or is not authorized to access this resource.
instance: null
Incorrect API key error:
summary: Incorrect API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Incorrect API key error
status: 401
detail: The API key you provided does not exist or is expired
or revoked.
instance: null
'402':
description: Your account is overdue, please pay any outstanding invoices
to continue using our services.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccountOverdueError'
examples:
Account overdue error:
summary: Account overdue error
value:
type: https://docs.isaacus.com/api-reference/errors#402-payment-required
title: Account overdue error
status: 402
detail: Your account is overdue, please pay any outstanding invoices
to continue using our services.
instance: null
'403':
description: You are not allowed to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccessForbiddenError'
examples:
Access forbidden error:
summary: Access forbidden error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: Access forbidden error
status: 403
detail: You are not allowed to access this resource.
instance: null
No subscription error:
summary: No subscription error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: No subscription error
status: 403
detail: You do not have an active subscription to our zero-flat
fee, usage-based API plan.
instance: null
'413':
description: The request is larger than the server is willing or able to
process.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/RequestTooLargeError'
examples:
Request too large error:
summary: Request too large error
value:
type: https://docs.isaacus.com/api-reference/errors#413-request-too-large
title: Request too large error
status: 413
detail: The request is larger than the server is willing or able
to process.
instance: null
'500':
description: An unexpected error occurred while processing the request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/InternalServerError'
examples:
Internal server error:
summary: Internal server error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Internal server error
status: 500
detail: An unexpected error occurred while processing the request.
instance: null
deprecated: false
/rerankings:
post:
tags:
- Rerankings
summary: Reranking
description: Rank legal documents by their relevance to a query with an Isaacus
legal AI reranker.
operationId: CreateReranking
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/RerankingRequest'
required: true
responses:
'200':
description: Request fulfilled, document follows
headers: {}
content:
application/json:
schema:
$ref: '#/components/schemas/RerankingResponse'
'400':
description: The request was invalid or could not be processed.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/ValidationError'
examples:
Validation error:
summary: Validation error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Validation error
status: 400
detail: The request was invalid or could not be processed.
instance: null
Invalid IQL query error:
summary: Invalid IQL query error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Invalid IQL query error
status: 400
detail: The provided query is not valid Isaacus Query Language
(IQL) syntax.
instance: null
Query too long error:
summary: Query too long error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Query too long error
status: 400
detail: The provided query exceeds the model's maximum input length
less overhead.
instance: null
'401':
description: The API key you provided does not exist, is expired or revoked,
or is not authorized to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/UnauthorizedAPIKeyError'
examples:
Unauthorized API key error:
summary: Unauthorized API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Unauthorized API key error
status: 401
detail: The API key you provided does not exist, is expired or
revoked, or is not authorized to access this resource.
instance: null
Incorrect API key error:
summary: Incorrect API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Incorrect API key error
status: 401
detail: The API key you provided does not exist or is expired
or revoked.
instance: null
'402':
description: Your account is overdue, please pay any outstanding invoices
to continue using our services.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccountOverdueError'
examples:
Account overdue error:
summary: Account overdue error
value:
type: https://docs.isaacus.com/api-reference/errors#402-payment-required
title: Account overdue error
status: 402
detail: Your account is overdue, please pay any outstanding invoices
to continue using our services.
instance: null
'403':
description: You are not allowed to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccessForbiddenError'
examples:
Access forbidden error:
summary: Access forbidden error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: Access forbidden error
status: 403
detail: You are not allowed to access this resource.
instance: null
No subscription error:
summary: No subscription error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: No subscription error
status: 403
detail: You do not have an active subscription to our zero-flat
fee, usage-based API plan.
instance: null
'413':
description: The request is larger than the server is willing or able to
process.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/RequestTooLargeError'
examples:
Request too large error:
summary: Request too large error
value:
type: https://docs.isaacus.com/api-reference/errors#413-request-too-large
title: Request too large error
status: 413
detail: The request is larger than the server is willing or able
to process.
instance: null
'500':
description: An unexpected error occurred while processing the request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/InternalServerError'
examples:
Internal server error:
summary: Internal server error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Internal server error
status: 500
detail: An unexpected error occurred while processing the request.
instance: null
Chunking timeout error:
summary: Chunking timeout error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Chunking timeout error
status: 500
detail: Chunking timed out. Did you try to chunk a very large
text with a very low chunk size or very little variation in
levels of whitespace?
instance: null
deprecated: false
/extractions/qa:
post:
tags:
- Extractions
summary: Extractive question answering
description: Extract answers to questions from legal documents with an Isaacus
legal AI answer extractor.
operationId: CreateAnswerExtractions
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AnswerExtractionRequest'
required: true
responses:
'200':
description: The results of extracting answers from texts.
content:
application/json:
schema:
$ref: '#/components/schemas/AnswerExtractionResponse'
examples:
example:
value:
extractions:
- index: 0
answers:
- text: 30 years if the person murdered was a police officer
and 25 years in any other case
start: 61
end: 144
score: 0.11460486645671249
inextractability_score: 0.0027424068182309302
usage:
input_tokens: 43
'400':
description: The request was invalid or could not be processed.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/ValidationError'
examples:
Validation error:
summary: Validation error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Validation error
status: 400
detail: The request was invalid or could not be processed.
instance: null
Query too long error:
summary: Query too long error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Query too long error
status: 400
detail: The provided query exceeds the model's maximum input length
less overhead.
instance: null
'401':
description: The API key you provided does not exist, is expired or revoked,
or is not authorized to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/UnauthorizedAPIKeyError'
examples:
Unauthorized API key error:
summary: Unauthorized API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Unauthorized API key error
status: 401
detail: The API key you provided does not exist, is expired or
revoked, or is not authorized to access this resource.
instance: null
Incorrect API key error:
summary: Incorrect API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Incorrect API key error
status: 401
detail: The API key you provided does not exist or is expired
or revoked.
instance: null
'402':
description: Your account is overdue, please pay any outstanding invoices
to continue using our services.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccountOverdueError'
examples:
Account overdue error:
summary: Account overdue error
value:
type: https://docs.isaacus.com/api-reference/errors#402-payment-required
title: Account overdue error
status: 402
detail: Your account is overdue, please pay any outstanding invoices
to continue using our services.
instance: null
'403':
description: You are not allowed to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccessForbiddenError'
examples:
Access forbidden error:
summary: Access forbidden error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: Access forbidden error
status: 403
detail: You are not allowed to access this resource.
instance: null
No subscription error:
summary: No subscription error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: No subscription error
status: 403
detail: You do not have an active subscription to our zero-flat
fee, usage-based API plan.
instance: null
'413':
description: The request is larger than the server is willing or able to
process.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/RequestTooLargeError'
examples:
Request too large error:
summary: Request too large error
value:
type: https://docs.isaacus.com/api-reference/errors#413-request-too-large
title: Request too large error
status: 413
detail: The request is larger than the server is willing or able
to process.
instance: null
'500':
description: An unexpected error occurred while processing the request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/InternalServerError'
examples:
Internal server error:
summary: Internal server error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Internal server error
status: 500
detail: An unexpected error occurred while processing the request.
instance: null
Chunking timeout error:
summary: Chunking timeout error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Chunking timeout error
status: 500
detail: Chunking timed out. Did you try to chunk a very large
text with a very low chunk size or very little variation in
levels of whitespace?
instance: null
deprecated: false
/classifications/universal:
post:
tags:
- Classifications
summary: Universal classification
description: Classify the relevance of legal documents to a query with an Isaacus
universal legal AI classifier.
operationId: CreateUniversalClassifications
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UniversalClassificationRequest'
required: true
responses:
'200':
description: Classifications of the relevance of legal documents to a query
produced by an Isaacus universal legal AI classifier.
content:
application/json:
schema:
$ref: '#/components/schemas/UniversalClassificationResponse'
examples:
example:
value:
classifications:
- index: 0
score: 0.8825573934438159
chunks:
- index: 0
start: 0
end: 46
score: 0.8825573934438159
text: I agree not to tell anyone about the document.
usage:
input_tokens: 19
'400':
description: The request was invalid or could not be processed.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/ValidationError'
examples:
Validation error:
summary: Validation error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Validation error
status: 400
detail: The request was invalid or could not be processed.
instance: null
Invalid IQL query error:
summary: Invalid IQL query error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Invalid IQL query error
status: 400
detail: The provided query is not valid Isaacus Query Language
(IQL) syntax.
instance: null
Query too long error:
summary: Query too long error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Query too long error
status: 400
detail: The provided query exceeds the model's maximum input length
less overhead.
instance: null
'401':
description: The API key you provided does not exist, is expired or revoked,
or is not authorized to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/UnauthorizedAPIKeyError'
examples:
Unauthorized API key error:
summary: Unauthorized API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Unauthorized API key error
status: 401
detail: The API key you provided does not exist, is expired or
revoked, or is not authorized to access this resource.
instance: null
Incorrect API key error:
summary: Incorrect API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Incorrect API key error
status: 401
detail: The API key you provided does not exist or is expired
or revoked.
instance: null
'402':
description: Your account is overdue, please pay any outstanding invoices
to continue using our services.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccountOverdueError'
examples:
Account overdue error:
summary: Account overdue error
value:
type: https://docs.isaacus.com/api-reference/errors#402-payment-required
title: Account overdue error
status: 402
detail: Your account is overdue, please pay any outstanding invoices
to continue using our services.
instance: null
'403':
description: You are not allowed to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccessForbiddenError'
examples:
Access forbidden error:
summary: Access forbidden error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: Access forbidden error
status: 403
detail: You are not allowed to access this resource.
instance: null
No subscription error:
summary: No subscription error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: No subscription error
status: 403
detail: You do not have an active subscription to our zero-flat
fee, usage-based API plan.
instance: null
'413':
description: The request is larger than the server is willing or able to
process.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/RequestTooLargeError'
examples:
Request too large error:
summary: Request too large error
value:
type: https://docs.isaacus.com/api-reference/errors#413-request-too-large
title: Request too large error
status: 413
detail: The request is larger than the server is willing or able
to process.
instance: null
'500':
description: An unexpected error occurred while processing the request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/InternalServerError'
examples:
Internal server error:
summary: Internal server error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Internal server error
status: 500
detail: An unexpected error occurred while processing the request.
instance: null
Chunking timeout error:
summary: Chunking timeout error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Chunking timeout error
status: 500
detail: Chunking timed out. Did you try to chunk a very large
text with a very low chunk size or very little variation in
levels of whitespace?
instance: null
deprecated: false
/enrichments:
post:
tags:
- Enrichments
summary: Enrichment
description: Enrich documents with an Isaacus enricher model.
operationId: CreateEnrichments
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EnrichmentRequest'
required: true
responses:
'200':
description: The enriched documents alongside usage statistics.
content:
application/json:
schema:
$ref: '#/components/schemas/EnrichmentResponse'
examples:
example:
value:
results:
- index: 0
document:
version: ilgs@1
text: '[42] The U.S. Attorney General, Mr. McGill, argued
at ¶ 21 of the Filing that "§ 206 of Title 29 of the U.S.
Code (the "Labor Title") does not apply to the plaintiff,
Ms. Moody, given the definition of an "employee" at §203(e)(4)
of the Labor Title does not include volunteers, and, regardless,
she lives in Austria."'
title: null
subtitle: null
type: other
jurisdiction: US-FED
segments:
- id: seg:0
kind: unit
type: paragraph
category: annotation
type_name: null
code:
start: 0
end: 4
title: null
parent: null
children: []
level: 0
span:
start: 0
end: 317
crossreferences: []
locations:
- id: loc:0
name:
start: 308
end: 315
type: country
parent: null
children: []
mentions:
- start: 308
end: 315
persons:
- id: per:0
name:
start: 32
end: 42
type: natural
role: defense_counsel
parent: null
children: []
residence: null
mentions:
- start: 32
end: 42
- id: per:1
name:
start: 167
end: 176
type: natural
role: plaintiff
parent: null
children: []
residence: loc:0
mentions:
- start: 167
end: 176
emails: []
websites: []
phone_numbers: []
id_numbers: []
terms:
- id: term:0
name:
start: 120
end: 131
meaning:
start: 88
end: 113
mentions:
- start: 237
end: 248
external_documents:
- id: exd:0
name:
start: 66
end: 72
type: other
jurisdiction: US-FED
reception: neutral
mentions:
- start: 66
end: 72
pinpoints:
- start: 54
end: 58
- id: exd:1
name:
start: 80
end: 113
type: statute
jurisdiction: US-FED
reception: neutral
mentions:
- start: 80
end: 113
pinpoints:
- start: 79
end: 84
- start: 219
end: 229
quotes:
- source_segment: null
source_document: exd:0
source_person: per:0
amending: false
span:
start: 79
end: 317
dates: []
headings: []
junk: []
usage:
input_tokens: 91
'400':
description: The request was invalid or could not be processed.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/ValidationError'
examples:
Validation error:
summary: Validation error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Validation error
status: 400
detail: The request was invalid or could not be processed.
instance: null
Enrichment input too large error:
summary: Enrichment input too large error
value:
type: https://docs.isaacus.com/api-reference/errors#400-validation-error
title: Enrichment input too large error
status: 400
detail: The input to the enrichment model exceeds its maximum
context window yet no overflow strategy was set. We recommend
setting `overflow_strategy` to `auto` or `chunk`, both of which
will break documents up into smaller chunks that fit within
the model's context window and then intelligently merge the
results into a single prediction at the cost of a minor accuracy
drop.
instance: null
'401':
description: The API key you provided does not exist, is expired or revoked,
or is not authorized to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/UnauthorizedAPIKeyError'
examples:
Unauthorized API key error:
summary: Unauthorized API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Unauthorized API key error
status: 401
detail: The API key you provided does not exist, is expired or
revoked, or is not authorized to access this resource.
instance: null
Incorrect API key error:
summary: Incorrect API key error
value:
type: https://docs.isaacus.com/api-reference/errors#401-not-authenticated
title: Incorrect API key error
status: 401
detail: The API key you provided does not exist or is expired
or revoked.
instance: null
'402':
description: Your account is overdue, please pay any outstanding invoices
to continue using our services.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccountOverdueError'
examples:
Account overdue error:
summary: Account overdue error
value:
type: https://docs.isaacus.com/api-reference/errors#402-payment-required
title: Account overdue error
status: 402
detail: Your account is overdue, please pay any outstanding invoices
to continue using our services.
instance: null
'403':
description: You are not allowed to access this resource.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/AccessForbiddenError'
examples:
Access forbidden error:
summary: Access forbidden error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: Access forbidden error
status: 403
detail: You are not allowed to access this resource.
instance: null
No subscription error:
summary: No subscription error
value:
type: https://docs.isaacus.com/api-reference/errors#403-access-forbidden
title: No subscription error
status: 403
detail: You do not have an active subscription to our zero-flat
fee, usage-based API plan.
instance: null
'413':
description: The request is larger than the server is willing or able to
process.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/RequestTooLargeError'
examples:
Request too large error:
summary: Request too large error
value:
type: https://docs.isaacus.com/api-reference/errors#413-request-too-large
title: Request too large error
status: 413
detail: The request is larger than the server is willing or able
to process.
instance: null
'500':
description: An unexpected error occurred while processing the request.
content:
application/problem+json:
schema:
$ref: '#/components/schemas/InternalServerError'
examples:
Internal server error:
summary: Internal server error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Internal server error
status: 500
detail: An unexpected error occurred while processing the request.
instance: null
Chunking timeout error:
summary: Chunking timeout error
value:
type: https://docs.isaacus.com/api-reference/errors#500-internal-server-error
title: Chunking timeout error
status: 500
detail: Chunking timed out. Did you try to chunk a very large
text with a very low chunk size or very little variation in
levels of whitespace?
instance: null
deprecated: false
components:
schemas:
AccessForbiddenError:
properties:
type:
type: string
minLength: 1
title: Non-empty string