@hebo-ai/gateway 0.4.0-beta.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -5
- package/dist/config.js +21 -7
- package/dist/endpoints/chat-completions/converters.d.ts +3 -3
- package/dist/endpoints/chat-completions/converters.js +16 -8
- package/dist/endpoints/chat-completions/handler.js +34 -27
- package/dist/endpoints/chat-completions/otel.d.ts +6 -0
- package/dist/endpoints/chat-completions/otel.js +127 -0
- package/dist/endpoints/embeddings/handler.js +19 -10
- package/dist/endpoints/embeddings/otel.d.ts +6 -0
- package/dist/endpoints/embeddings/otel.js +35 -0
- package/dist/endpoints/models/handler.js +3 -4
- package/dist/errors/gateway.d.ts +1 -1
- package/dist/errors/gateway.js +3 -4
- package/dist/errors/openai.js +11 -12
- package/dist/errors/utils.d.ts +3 -4
- package/dist/errors/utils.js +6 -6
- package/dist/gateway.js +1 -1
- package/dist/lifecycle.js +71 -29
- package/dist/middleware/matcher.js +1 -1
- package/dist/models/amazon/presets.d.ts +37 -37
- package/dist/models/amazon/presets.js +1 -1
- package/dist/models/anthropic/presets.d.ts +56 -56
- package/dist/models/cohere/presets.d.ts +54 -54
- package/dist/models/cohere/presets.js +2 -2
- package/dist/models/google/presets.d.ts +31 -31
- package/dist/models/google/presets.js +1 -1
- package/dist/models/meta/presets.d.ts +42 -42
- package/dist/models/openai/presets.d.ts +96 -96
- package/dist/models/openai/presets.js +1 -1
- package/dist/models/types.d.ts +1 -1
- package/dist/models/voyage/presets.d.ts +92 -92
- package/dist/models/voyage/presets.js +1 -1
- package/dist/providers/registry.js +2 -2
- package/dist/telemetry/baggage.d.ts +1 -0
- package/dist/telemetry/baggage.js +24 -0
- package/dist/telemetry/fetch.d.ts +2 -1
- package/dist/telemetry/fetch.js +13 -3
- package/dist/telemetry/gen-ai.d.ts +5 -0
- package/dist/telemetry/gen-ai.js +60 -0
- package/dist/telemetry/http.d.ts +3 -0
- package/dist/telemetry/http.js +57 -0
- package/dist/telemetry/memory.d.ts +2 -0
- package/dist/telemetry/memory.js +27 -0
- package/dist/telemetry/span.d.ts +6 -3
- package/dist/telemetry/span.js +24 -36
- package/dist/telemetry/stream.d.ts +3 -7
- package/dist/telemetry/stream.js +26 -29
- package/dist/types.d.ts +16 -15
- package/dist/utils/headers.d.ts +1 -1
- package/dist/utils/headers.js +7 -9
- package/dist/utils/request.d.ts +0 -4
- package/dist/utils/request.js +0 -9
- package/dist/utils/response.js +1 -1
- package/package.json +5 -2
- package/src/config.ts +28 -7
- package/src/endpoints/chat-completions/converters.ts +18 -11
- package/src/endpoints/chat-completions/handler.ts +46 -28
- package/src/endpoints/chat-completions/otel.ts +161 -0
- package/src/endpoints/embeddings/handler.test.ts +2 -2
- package/src/endpoints/embeddings/handler.ts +28 -10
- package/src/endpoints/embeddings/otel.ts +56 -0
- package/src/endpoints/models/handler.ts +3 -5
- package/src/errors/gateway.ts +5 -5
- package/src/errors/openai.ts +25 -17
- package/src/errors/utils.ts +6 -7
- package/src/gateway.ts +1 -1
- package/src/lifecycle.ts +85 -32
- package/src/middleware/matcher.ts +1 -1
- package/src/models/amazon/presets.ts +1 -1
- package/src/models/cohere/presets.ts +2 -2
- package/src/models/google/presets.ts +1 -1
- package/src/models/openai/presets.ts +1 -1
- package/src/models/types.ts +1 -1
- package/src/models/voyage/presets.ts +1 -1
- package/src/providers/registry.ts +2 -2
- package/src/telemetry/baggage.ts +27 -0
- package/src/telemetry/fetch.ts +15 -3
- package/src/telemetry/gen-ai.ts +88 -0
- package/src/telemetry/http.ts +65 -0
- package/src/telemetry/memory.ts +36 -0
- package/src/telemetry/span.ts +28 -40
- package/src/telemetry/stream.ts +36 -40
- package/src/types.ts +18 -18
- package/src/utils/headers.ts +8 -19
- package/src/utils/request.ts +0 -11
- package/src/utils/response.ts +1 -1
- package/dist/telemetry/otel.d.ts +0 -2
- package/dist/telemetry/otel.js +0 -50
- package/dist/telemetry/utils.d.ts +0 -4
- package/dist/telemetry/utils.js +0 -223
- package/src/telemetry/otel.ts +0 -91
- package/src/telemetry/utils.ts +0 -273
|
@@ -4,7 +4,7 @@ export declare const voyage2Code: <const O extends {
|
|
|
4
4
|
knowledge?: string | undefined;
|
|
5
5
|
modalities?: {
|
|
6
6
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
7
|
-
output?: readonly ("text" | "
|
|
7
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
8
8
|
} | undefined;
|
|
9
9
|
context?: number | undefined;
|
|
10
10
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -70,7 +70,7 @@ export declare const voyage2Code: <const O extends {
|
|
|
70
70
|
context: number;
|
|
71
71
|
modalities: {
|
|
72
72
|
input: readonly ["text"];
|
|
73
|
-
output: readonly ["
|
|
73
|
+
output: readonly ["embedding"];
|
|
74
74
|
};
|
|
75
75
|
providers: readonly ["voyage"];
|
|
76
76
|
} & O>;
|
|
@@ -80,7 +80,7 @@ export declare const voyage2Finance: <const O extends {
|
|
|
80
80
|
knowledge?: string | undefined;
|
|
81
81
|
modalities?: {
|
|
82
82
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
83
|
-
output?: readonly ("text" | "
|
|
83
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
84
84
|
} | undefined;
|
|
85
85
|
context?: number | undefined;
|
|
86
86
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -146,7 +146,7 @@ export declare const voyage2Finance: <const O extends {
|
|
|
146
146
|
context: number;
|
|
147
147
|
modalities: {
|
|
148
148
|
input: readonly ["text"];
|
|
149
|
-
output: readonly ["
|
|
149
|
+
output: readonly ["embedding"];
|
|
150
150
|
};
|
|
151
151
|
providers: readonly ["voyage"];
|
|
152
152
|
} & O>;
|
|
@@ -156,7 +156,7 @@ export declare const voyage2Law: <const O extends {
|
|
|
156
156
|
knowledge?: string | undefined;
|
|
157
157
|
modalities?: {
|
|
158
158
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
159
|
-
output?: readonly ("text" | "
|
|
159
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
160
160
|
} | undefined;
|
|
161
161
|
context?: number | undefined;
|
|
162
162
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -222,7 +222,7 @@ export declare const voyage2Law: <const O extends {
|
|
|
222
222
|
context: number;
|
|
223
223
|
modalities: {
|
|
224
224
|
input: readonly ["text"];
|
|
225
|
-
output: readonly ["
|
|
225
|
+
output: readonly ["embedding"];
|
|
226
226
|
};
|
|
227
227
|
providers: readonly ["voyage"];
|
|
228
228
|
} & O>;
|
|
@@ -232,7 +232,7 @@ export declare const voyage3Code: <const O extends {
|
|
|
232
232
|
knowledge?: string | undefined;
|
|
233
233
|
modalities?: {
|
|
234
234
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
235
|
-
output?: readonly ("text" | "
|
|
235
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
236
236
|
} | undefined;
|
|
237
237
|
context?: number | undefined;
|
|
238
238
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -298,7 +298,7 @@ export declare const voyage3Code: <const O extends {
|
|
|
298
298
|
context: number;
|
|
299
299
|
modalities: {
|
|
300
300
|
input: readonly ["text"];
|
|
301
|
-
output: readonly ["
|
|
301
|
+
output: readonly ["embedding"];
|
|
302
302
|
};
|
|
303
303
|
providers: readonly ["voyage"];
|
|
304
304
|
} & O>;
|
|
@@ -308,7 +308,7 @@ export declare const voyage3Large: <const O extends {
|
|
|
308
308
|
knowledge?: string | undefined;
|
|
309
309
|
modalities?: {
|
|
310
310
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
311
|
-
output?: readonly ("text" | "
|
|
311
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
312
312
|
} | undefined;
|
|
313
313
|
context?: number | undefined;
|
|
314
314
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -374,7 +374,7 @@ export declare const voyage3Large: <const O extends {
|
|
|
374
374
|
context: number;
|
|
375
375
|
modalities: {
|
|
376
376
|
input: readonly ["text"];
|
|
377
|
-
output: readonly ["
|
|
377
|
+
output: readonly ["embedding"];
|
|
378
378
|
};
|
|
379
379
|
providers: readonly ["voyage"];
|
|
380
380
|
} & O>;
|
|
@@ -384,7 +384,7 @@ export declare const voyage35: <const O extends {
|
|
|
384
384
|
knowledge?: string | undefined;
|
|
385
385
|
modalities?: {
|
|
386
386
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
387
|
-
output?: readonly ("text" | "
|
|
387
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
388
388
|
} | undefined;
|
|
389
389
|
context?: number | undefined;
|
|
390
390
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -450,7 +450,7 @@ export declare const voyage35: <const O extends {
|
|
|
450
450
|
context: number;
|
|
451
451
|
modalities: {
|
|
452
452
|
input: readonly ["text"];
|
|
453
|
-
output: readonly ["
|
|
453
|
+
output: readonly ["embedding"];
|
|
454
454
|
};
|
|
455
455
|
providers: readonly ["voyage"];
|
|
456
456
|
} & O>;
|
|
@@ -460,7 +460,7 @@ export declare const voyage35Lite: <const O extends {
|
|
|
460
460
|
knowledge?: string | undefined;
|
|
461
461
|
modalities?: {
|
|
462
462
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
463
|
-
output?: readonly ("text" | "
|
|
463
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
464
464
|
} | undefined;
|
|
465
465
|
context?: number | undefined;
|
|
466
466
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -526,7 +526,7 @@ export declare const voyage35Lite: <const O extends {
|
|
|
526
526
|
context: number;
|
|
527
527
|
modalities: {
|
|
528
528
|
input: readonly ["text"];
|
|
529
|
-
output: readonly ["
|
|
529
|
+
output: readonly ["embedding"];
|
|
530
530
|
};
|
|
531
531
|
providers: readonly ["voyage"];
|
|
532
532
|
} & O>;
|
|
@@ -536,7 +536,7 @@ export declare const voyage4Lite: <const O extends {
|
|
|
536
536
|
knowledge?: string | undefined;
|
|
537
537
|
modalities?: {
|
|
538
538
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
539
|
-
output?: readonly ("text" | "
|
|
539
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
540
540
|
} | undefined;
|
|
541
541
|
context?: number | undefined;
|
|
542
542
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -602,7 +602,7 @@ export declare const voyage4Lite: <const O extends {
|
|
|
602
602
|
context: number;
|
|
603
603
|
modalities: {
|
|
604
604
|
input: readonly ["text"];
|
|
605
|
-
output: readonly ["
|
|
605
|
+
output: readonly ["embedding"];
|
|
606
606
|
};
|
|
607
607
|
providers: readonly ["voyage"];
|
|
608
608
|
} & O>;
|
|
@@ -612,7 +612,7 @@ export declare const voyage4: <const O extends {
|
|
|
612
612
|
knowledge?: string | undefined;
|
|
613
613
|
modalities?: {
|
|
614
614
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
615
|
-
output?: readonly ("text" | "
|
|
615
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
616
616
|
} | undefined;
|
|
617
617
|
context?: number | undefined;
|
|
618
618
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -678,7 +678,7 @@ export declare const voyage4: <const O extends {
|
|
|
678
678
|
context: number;
|
|
679
679
|
modalities: {
|
|
680
680
|
input: readonly ["text"];
|
|
681
|
-
output: readonly ["
|
|
681
|
+
output: readonly ["embedding"];
|
|
682
682
|
};
|
|
683
683
|
providers: readonly ["voyage"];
|
|
684
684
|
} & O>;
|
|
@@ -688,7 +688,7 @@ export declare const voyage4Large: <const O extends {
|
|
|
688
688
|
knowledge?: string | undefined;
|
|
689
689
|
modalities?: {
|
|
690
690
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
691
|
-
output?: readonly ("text" | "
|
|
691
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
692
692
|
} | undefined;
|
|
693
693
|
context?: number | undefined;
|
|
694
694
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -754,7 +754,7 @@ export declare const voyage4Large: <const O extends {
|
|
|
754
754
|
context: number;
|
|
755
755
|
modalities: {
|
|
756
756
|
input: readonly ["text"];
|
|
757
|
-
output: readonly ["
|
|
757
|
+
output: readonly ["embedding"];
|
|
758
758
|
};
|
|
759
759
|
providers: readonly ["voyage"];
|
|
760
760
|
} & O>;
|
|
@@ -765,7 +765,7 @@ export declare const voyage: {
|
|
|
765
765
|
knowledge?: string | undefined;
|
|
766
766
|
modalities?: {
|
|
767
767
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
768
|
-
output?: readonly ("text" | "
|
|
768
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
769
769
|
} | undefined;
|
|
770
770
|
context?: number | undefined;
|
|
771
771
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -831,7 +831,7 @@ export declare const voyage: {
|
|
|
831
831
|
context: number;
|
|
832
832
|
modalities: {
|
|
833
833
|
input: readonly ["text"];
|
|
834
|
-
output: readonly ["
|
|
834
|
+
output: readonly ["embedding"];
|
|
835
835
|
};
|
|
836
836
|
providers: readonly ["voyage"];
|
|
837
837
|
} & O>, <const O extends {
|
|
@@ -840,7 +840,7 @@ export declare const voyage: {
|
|
|
840
840
|
knowledge?: string | undefined;
|
|
841
841
|
modalities?: {
|
|
842
842
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
843
|
-
output?: readonly ("text" | "
|
|
843
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
844
844
|
} | undefined;
|
|
845
845
|
context?: number | undefined;
|
|
846
846
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -906,7 +906,7 @@ export declare const voyage: {
|
|
|
906
906
|
context: number;
|
|
907
907
|
modalities: {
|
|
908
908
|
input: readonly ["text"];
|
|
909
|
-
output: readonly ["
|
|
909
|
+
output: readonly ["embedding"];
|
|
910
910
|
};
|
|
911
911
|
providers: readonly ["voyage"];
|
|
912
912
|
} & O>, <const O extends {
|
|
@@ -915,7 +915,7 @@ export declare const voyage: {
|
|
|
915
915
|
knowledge?: string | undefined;
|
|
916
916
|
modalities?: {
|
|
917
917
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
918
|
-
output?: readonly ("text" | "
|
|
918
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
919
919
|
} | undefined;
|
|
920
920
|
context?: number | undefined;
|
|
921
921
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -981,7 +981,7 @@ export declare const voyage: {
|
|
|
981
981
|
context: number;
|
|
982
982
|
modalities: {
|
|
983
983
|
input: readonly ["text"];
|
|
984
|
-
output: readonly ["
|
|
984
|
+
output: readonly ["embedding"];
|
|
985
985
|
};
|
|
986
986
|
providers: readonly ["voyage"];
|
|
987
987
|
} & O>, <const O extends {
|
|
@@ -990,7 +990,7 @@ export declare const voyage: {
|
|
|
990
990
|
knowledge?: string | undefined;
|
|
991
991
|
modalities?: {
|
|
992
992
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
993
|
-
output?: readonly ("text" | "
|
|
993
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
994
994
|
} | undefined;
|
|
995
995
|
context?: number | undefined;
|
|
996
996
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1056,7 +1056,7 @@ export declare const voyage: {
|
|
|
1056
1056
|
context: number;
|
|
1057
1057
|
modalities: {
|
|
1058
1058
|
input: readonly ["text"];
|
|
1059
|
-
output: readonly ["
|
|
1059
|
+
output: readonly ["embedding"];
|
|
1060
1060
|
};
|
|
1061
1061
|
providers: readonly ["voyage"];
|
|
1062
1062
|
} & O>, <const O extends {
|
|
@@ -1065,7 +1065,7 @@ export declare const voyage: {
|
|
|
1065
1065
|
knowledge?: string | undefined;
|
|
1066
1066
|
modalities?: {
|
|
1067
1067
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1068
|
-
output?: readonly ("text" | "
|
|
1068
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1069
1069
|
} | undefined;
|
|
1070
1070
|
context?: number | undefined;
|
|
1071
1071
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1131,7 +1131,7 @@ export declare const voyage: {
|
|
|
1131
1131
|
context: number;
|
|
1132
1132
|
modalities: {
|
|
1133
1133
|
input: readonly ["text"];
|
|
1134
|
-
output: readonly ["
|
|
1134
|
+
output: readonly ["embedding"];
|
|
1135
1135
|
};
|
|
1136
1136
|
providers: readonly ["voyage"];
|
|
1137
1137
|
} & O>, <const O extends {
|
|
@@ -1140,7 +1140,7 @@ export declare const voyage: {
|
|
|
1140
1140
|
knowledge?: string | undefined;
|
|
1141
1141
|
modalities?: {
|
|
1142
1142
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1143
|
-
output?: readonly ("text" | "
|
|
1143
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1144
1144
|
} | undefined;
|
|
1145
1145
|
context?: number | undefined;
|
|
1146
1146
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1206,7 +1206,7 @@ export declare const voyage: {
|
|
|
1206
1206
|
context: number;
|
|
1207
1207
|
modalities: {
|
|
1208
1208
|
input: readonly ["text"];
|
|
1209
|
-
output: readonly ["
|
|
1209
|
+
output: readonly ["embedding"];
|
|
1210
1210
|
};
|
|
1211
1211
|
providers: readonly ["voyage"];
|
|
1212
1212
|
} & O>];
|
|
@@ -1216,7 +1216,7 @@ export declare const voyage: {
|
|
|
1216
1216
|
knowledge?: string | undefined;
|
|
1217
1217
|
modalities?: {
|
|
1218
1218
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1219
|
-
output?: readonly ("text" | "
|
|
1219
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1220
1220
|
} | undefined;
|
|
1221
1221
|
context?: number | undefined;
|
|
1222
1222
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1282,7 +1282,7 @@ export declare const voyage: {
|
|
|
1282
1282
|
context: number;
|
|
1283
1283
|
modalities: {
|
|
1284
1284
|
input: readonly ["text"];
|
|
1285
|
-
output: readonly ["
|
|
1285
|
+
output: readonly ["embedding"];
|
|
1286
1286
|
};
|
|
1287
1287
|
providers: readonly ["voyage"];
|
|
1288
1288
|
} & O>) | (<const O extends {
|
|
@@ -1291,7 +1291,7 @@ export declare const voyage: {
|
|
|
1291
1291
|
knowledge?: string | undefined;
|
|
1292
1292
|
modalities?: {
|
|
1293
1293
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1294
|
-
output?: readonly ("text" | "
|
|
1294
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1295
1295
|
} | undefined;
|
|
1296
1296
|
context?: number | undefined;
|
|
1297
1297
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1357,7 +1357,7 @@ export declare const voyage: {
|
|
|
1357
1357
|
context: number;
|
|
1358
1358
|
modalities: {
|
|
1359
1359
|
input: readonly ["text"];
|
|
1360
|
-
output: readonly ["
|
|
1360
|
+
output: readonly ["embedding"];
|
|
1361
1361
|
};
|
|
1362
1362
|
providers: readonly ["voyage"];
|
|
1363
1363
|
} & O>) | (<const O extends {
|
|
@@ -1366,7 +1366,7 @@ export declare const voyage: {
|
|
|
1366
1366
|
knowledge?: string | undefined;
|
|
1367
1367
|
modalities?: {
|
|
1368
1368
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1369
|
-
output?: readonly ("text" | "
|
|
1369
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1370
1370
|
} | undefined;
|
|
1371
1371
|
context?: number | undefined;
|
|
1372
1372
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1432,7 +1432,7 @@ export declare const voyage: {
|
|
|
1432
1432
|
context: number;
|
|
1433
1433
|
modalities: {
|
|
1434
1434
|
input: readonly ["text"];
|
|
1435
|
-
output: readonly ["
|
|
1435
|
+
output: readonly ["embedding"];
|
|
1436
1436
|
};
|
|
1437
1437
|
providers: readonly ["voyage"];
|
|
1438
1438
|
} & O>) | (<const O extends {
|
|
@@ -1441,7 +1441,7 @@ export declare const voyage: {
|
|
|
1441
1441
|
knowledge?: string | undefined;
|
|
1442
1442
|
modalities?: {
|
|
1443
1443
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1444
|
-
output?: readonly ("text" | "
|
|
1444
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1445
1445
|
} | undefined;
|
|
1446
1446
|
context?: number | undefined;
|
|
1447
1447
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1507,7 +1507,7 @@ export declare const voyage: {
|
|
|
1507
1507
|
context: number;
|
|
1508
1508
|
modalities: {
|
|
1509
1509
|
input: readonly ["text"];
|
|
1510
|
-
output: readonly ["
|
|
1510
|
+
output: readonly ["embedding"];
|
|
1511
1511
|
};
|
|
1512
1512
|
providers: readonly ["voyage"];
|
|
1513
1513
|
} & O>) | (<const O extends {
|
|
@@ -1516,7 +1516,7 @@ export declare const voyage: {
|
|
|
1516
1516
|
knowledge?: string | undefined;
|
|
1517
1517
|
modalities?: {
|
|
1518
1518
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1519
|
-
output?: readonly ("text" | "
|
|
1519
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1520
1520
|
} | undefined;
|
|
1521
1521
|
context?: number | undefined;
|
|
1522
1522
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1582,7 +1582,7 @@ export declare const voyage: {
|
|
|
1582
1582
|
context: number;
|
|
1583
1583
|
modalities: {
|
|
1584
1584
|
input: readonly ["text"];
|
|
1585
|
-
output: readonly ["
|
|
1585
|
+
output: readonly ["embedding"];
|
|
1586
1586
|
};
|
|
1587
1587
|
providers: readonly ["voyage"];
|
|
1588
1588
|
} & O>) | (<const O extends {
|
|
@@ -1591,7 +1591,7 @@ export declare const voyage: {
|
|
|
1591
1591
|
knowledge?: string | undefined;
|
|
1592
1592
|
modalities?: {
|
|
1593
1593
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1594
|
-
output?: readonly ("text" | "
|
|
1594
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1595
1595
|
} | undefined;
|
|
1596
1596
|
context?: number | undefined;
|
|
1597
1597
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1657,7 +1657,7 @@ export declare const voyage: {
|
|
|
1657
1657
|
context: number;
|
|
1658
1658
|
modalities: {
|
|
1659
1659
|
input: readonly ["text"];
|
|
1660
|
-
output: readonly ["
|
|
1660
|
+
output: readonly ["embedding"];
|
|
1661
1661
|
};
|
|
1662
1662
|
providers: readonly ["voyage"];
|
|
1663
1663
|
} & O>) | (<const O extends {
|
|
@@ -1666,7 +1666,7 @@ export declare const voyage: {
|
|
|
1666
1666
|
knowledge?: string | undefined;
|
|
1667
1667
|
modalities?: {
|
|
1668
1668
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1669
|
-
output?: readonly ("text" | "
|
|
1669
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1670
1670
|
} | undefined;
|
|
1671
1671
|
context?: number | undefined;
|
|
1672
1672
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1732,7 +1732,7 @@ export declare const voyage: {
|
|
|
1732
1732
|
context: number;
|
|
1733
1733
|
modalities: {
|
|
1734
1734
|
input: readonly ["text"];
|
|
1735
|
-
output: readonly ["
|
|
1735
|
+
output: readonly ["embedding"];
|
|
1736
1736
|
};
|
|
1737
1737
|
providers: readonly ["voyage"];
|
|
1738
1738
|
} & O>) | (<const O extends {
|
|
@@ -1741,7 +1741,7 @@ export declare const voyage: {
|
|
|
1741
1741
|
knowledge?: string | undefined;
|
|
1742
1742
|
modalities?: {
|
|
1743
1743
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1744
|
-
output?: readonly ("text" | "
|
|
1744
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1745
1745
|
} | undefined;
|
|
1746
1746
|
context?: number | undefined;
|
|
1747
1747
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1807,7 +1807,7 @@ export declare const voyage: {
|
|
|
1807
1807
|
context: number;
|
|
1808
1808
|
modalities: {
|
|
1809
1809
|
input: readonly ["text"];
|
|
1810
|
-
output: readonly ["
|
|
1810
|
+
output: readonly ["embedding"];
|
|
1811
1811
|
};
|
|
1812
1812
|
providers: readonly ["voyage"];
|
|
1813
1813
|
} & O>) | (<const O extends {
|
|
@@ -1816,7 +1816,7 @@ export declare const voyage: {
|
|
|
1816
1816
|
knowledge?: string | undefined;
|
|
1817
1817
|
modalities?: {
|
|
1818
1818
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1819
|
-
output?: readonly ("text" | "
|
|
1819
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1820
1820
|
} | undefined;
|
|
1821
1821
|
context?: number | undefined;
|
|
1822
1822
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1882,7 +1882,7 @@ export declare const voyage: {
|
|
|
1882
1882
|
context: number;
|
|
1883
1883
|
modalities: {
|
|
1884
1884
|
input: readonly ["text"];
|
|
1885
|
-
output: readonly ["
|
|
1885
|
+
output: readonly ["embedding"];
|
|
1886
1886
|
};
|
|
1887
1887
|
providers: readonly ["voyage"];
|
|
1888
1888
|
} & O>) | (<const O extends {
|
|
@@ -1891,7 +1891,7 @@ export declare const voyage: {
|
|
|
1891
1891
|
knowledge?: string | undefined;
|
|
1892
1892
|
modalities?: {
|
|
1893
1893
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1894
|
-
output?: readonly ("text" | "
|
|
1894
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1895
1895
|
} | undefined;
|
|
1896
1896
|
context?: number | undefined;
|
|
1897
1897
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -1957,7 +1957,7 @@ export declare const voyage: {
|
|
|
1957
1957
|
context: number;
|
|
1958
1958
|
modalities: {
|
|
1959
1959
|
input: readonly ["text"];
|
|
1960
|
-
output: readonly ["
|
|
1960
|
+
output: readonly ["embedding"];
|
|
1961
1961
|
};
|
|
1962
1962
|
providers: readonly ["voyage"];
|
|
1963
1963
|
} & O>))[];
|
|
@@ -1967,7 +1967,7 @@ export declare const voyage: {
|
|
|
1967
1967
|
knowledge?: string | undefined;
|
|
1968
1968
|
modalities?: {
|
|
1969
1969
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
1970
|
-
output?: readonly ("text" | "
|
|
1970
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
1971
1971
|
} | undefined;
|
|
1972
1972
|
context?: number | undefined;
|
|
1973
1973
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2033,7 +2033,7 @@ export declare const voyage: {
|
|
|
2033
2033
|
context: number;
|
|
2034
2034
|
modalities: {
|
|
2035
2035
|
input: readonly ["text"];
|
|
2036
|
-
output: readonly ["
|
|
2036
|
+
output: readonly ["embedding"];
|
|
2037
2037
|
};
|
|
2038
2038
|
providers: readonly ["voyage"];
|
|
2039
2039
|
} & O>, <const O extends {
|
|
@@ -2042,7 +2042,7 @@ export declare const voyage: {
|
|
|
2042
2042
|
knowledge?: string | undefined;
|
|
2043
2043
|
modalities?: {
|
|
2044
2044
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2045
|
-
output?: readonly ("text" | "
|
|
2045
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2046
2046
|
} | undefined;
|
|
2047
2047
|
context?: number | undefined;
|
|
2048
2048
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2108,7 +2108,7 @@ export declare const voyage: {
|
|
|
2108
2108
|
context: number;
|
|
2109
2109
|
modalities: {
|
|
2110
2110
|
input: readonly ["text"];
|
|
2111
|
-
output: readonly ["
|
|
2111
|
+
output: readonly ["embedding"];
|
|
2112
2112
|
};
|
|
2113
2113
|
providers: readonly ["voyage"];
|
|
2114
2114
|
} & O>, <const O extends {
|
|
@@ -2117,7 +2117,7 @@ export declare const voyage: {
|
|
|
2117
2117
|
knowledge?: string | undefined;
|
|
2118
2118
|
modalities?: {
|
|
2119
2119
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2120
|
-
output?: readonly ("text" | "
|
|
2120
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2121
2121
|
} | undefined;
|
|
2122
2122
|
context?: number | undefined;
|
|
2123
2123
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2183,7 +2183,7 @@ export declare const voyage: {
|
|
|
2183
2183
|
context: number;
|
|
2184
2184
|
modalities: {
|
|
2185
2185
|
input: readonly ["text"];
|
|
2186
|
-
output: readonly ["
|
|
2186
|
+
output: readonly ["embedding"];
|
|
2187
2187
|
};
|
|
2188
2188
|
providers: readonly ["voyage"];
|
|
2189
2189
|
} & O>];
|
|
@@ -2193,7 +2193,7 @@ export declare const voyage: {
|
|
|
2193
2193
|
knowledge?: string | undefined;
|
|
2194
2194
|
modalities?: {
|
|
2195
2195
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2196
|
-
output?: readonly ("text" | "
|
|
2196
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2197
2197
|
} | undefined;
|
|
2198
2198
|
context?: number | undefined;
|
|
2199
2199
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2259,7 +2259,7 @@ export declare const voyage: {
|
|
|
2259
2259
|
context: number;
|
|
2260
2260
|
modalities: {
|
|
2261
2261
|
input: readonly ["text"];
|
|
2262
|
-
output: readonly ["
|
|
2262
|
+
output: readonly ["embedding"];
|
|
2263
2263
|
};
|
|
2264
2264
|
providers: readonly ["voyage"];
|
|
2265
2265
|
} & O>, <const O extends {
|
|
@@ -2268,7 +2268,7 @@ export declare const voyage: {
|
|
|
2268
2268
|
knowledge?: string | undefined;
|
|
2269
2269
|
modalities?: {
|
|
2270
2270
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2271
|
-
output?: readonly ("text" | "
|
|
2271
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2272
2272
|
} | undefined;
|
|
2273
2273
|
context?: number | undefined;
|
|
2274
2274
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2334,7 +2334,7 @@ export declare const voyage: {
|
|
|
2334
2334
|
context: number;
|
|
2335
2335
|
modalities: {
|
|
2336
2336
|
input: readonly ["text"];
|
|
2337
|
-
output: readonly ["
|
|
2337
|
+
output: readonly ["embedding"];
|
|
2338
2338
|
};
|
|
2339
2339
|
providers: readonly ["voyage"];
|
|
2340
2340
|
} & O>, <const O extends {
|
|
@@ -2343,7 +2343,7 @@ export declare const voyage: {
|
|
|
2343
2343
|
knowledge?: string | undefined;
|
|
2344
2344
|
modalities?: {
|
|
2345
2345
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2346
|
-
output?: readonly ("text" | "
|
|
2346
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2347
2347
|
} | undefined;
|
|
2348
2348
|
context?: number | undefined;
|
|
2349
2349
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2409,7 +2409,7 @@ export declare const voyage: {
|
|
|
2409
2409
|
context: number;
|
|
2410
2410
|
modalities: {
|
|
2411
2411
|
input: readonly ["text"];
|
|
2412
|
-
output: readonly ["
|
|
2412
|
+
output: readonly ["embedding"];
|
|
2413
2413
|
};
|
|
2414
2414
|
providers: readonly ["voyage"];
|
|
2415
2415
|
} & O>, <const O extends {
|
|
@@ -2418,7 +2418,7 @@ export declare const voyage: {
|
|
|
2418
2418
|
knowledge?: string | undefined;
|
|
2419
2419
|
modalities?: {
|
|
2420
2420
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2421
|
-
output?: readonly ("text" | "
|
|
2421
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2422
2422
|
} | undefined;
|
|
2423
2423
|
context?: number | undefined;
|
|
2424
2424
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2484,7 +2484,7 @@ export declare const voyage: {
|
|
|
2484
2484
|
context: number;
|
|
2485
2485
|
modalities: {
|
|
2486
2486
|
input: readonly ["text"];
|
|
2487
|
-
output: readonly ["
|
|
2487
|
+
output: readonly ["embedding"];
|
|
2488
2488
|
};
|
|
2489
2489
|
providers: readonly ["voyage"];
|
|
2490
2490
|
} & O>];
|
|
@@ -2494,7 +2494,7 @@ export declare const voyage: {
|
|
|
2494
2494
|
knowledge?: string | undefined;
|
|
2495
2495
|
modalities?: {
|
|
2496
2496
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2497
|
-
output?: readonly ("text" | "
|
|
2497
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2498
2498
|
} | undefined;
|
|
2499
2499
|
context?: number | undefined;
|
|
2500
2500
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2560,7 +2560,7 @@ export declare const voyage: {
|
|
|
2560
2560
|
context: number;
|
|
2561
2561
|
modalities: {
|
|
2562
2562
|
input: readonly ["text"];
|
|
2563
|
-
output: readonly ["
|
|
2563
|
+
output: readonly ["embedding"];
|
|
2564
2564
|
};
|
|
2565
2565
|
providers: readonly ["voyage"];
|
|
2566
2566
|
} & O>, <const O extends {
|
|
@@ -2569,7 +2569,7 @@ export declare const voyage: {
|
|
|
2569
2569
|
knowledge?: string | undefined;
|
|
2570
2570
|
modalities?: {
|
|
2571
2571
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2572
|
-
output?: readonly ("text" | "
|
|
2572
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2573
2573
|
} | undefined;
|
|
2574
2574
|
context?: number | undefined;
|
|
2575
2575
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2635,7 +2635,7 @@ export declare const voyage: {
|
|
|
2635
2635
|
context: number;
|
|
2636
2636
|
modalities: {
|
|
2637
2637
|
input: readonly ["text"];
|
|
2638
|
-
output: readonly ["
|
|
2638
|
+
output: readonly ["embedding"];
|
|
2639
2639
|
};
|
|
2640
2640
|
providers: readonly ["voyage"];
|
|
2641
2641
|
} & O>, <const O extends {
|
|
@@ -2644,7 +2644,7 @@ export declare const voyage: {
|
|
|
2644
2644
|
knowledge?: string | undefined;
|
|
2645
2645
|
modalities?: {
|
|
2646
2646
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2647
|
-
output?: readonly ("text" | "
|
|
2647
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2648
2648
|
} | undefined;
|
|
2649
2649
|
context?: number | undefined;
|
|
2650
2650
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2710,7 +2710,7 @@ export declare const voyage: {
|
|
|
2710
2710
|
context: number;
|
|
2711
2711
|
modalities: {
|
|
2712
2712
|
input: readonly ["text"];
|
|
2713
|
-
output: readonly ["
|
|
2713
|
+
output: readonly ["embedding"];
|
|
2714
2714
|
};
|
|
2715
2715
|
providers: readonly ["voyage"];
|
|
2716
2716
|
} & O>];
|
|
@@ -2720,7 +2720,7 @@ export declare const voyage: {
|
|
|
2720
2720
|
knowledge?: string | undefined;
|
|
2721
2721
|
modalities?: {
|
|
2722
2722
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2723
|
-
output?: readonly ("text" | "
|
|
2723
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2724
2724
|
} | undefined;
|
|
2725
2725
|
context?: number | undefined;
|
|
2726
2726
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2786,7 +2786,7 @@ export declare const voyage: {
|
|
|
2786
2786
|
context: number;
|
|
2787
2787
|
modalities: {
|
|
2788
2788
|
input: readonly ["text"];
|
|
2789
|
-
output: readonly ["
|
|
2789
|
+
output: readonly ["embedding"];
|
|
2790
2790
|
};
|
|
2791
2791
|
providers: readonly ["voyage"];
|
|
2792
2792
|
} & O>, <const O extends {
|
|
@@ -2795,7 +2795,7 @@ export declare const voyage: {
|
|
|
2795
2795
|
knowledge?: string | undefined;
|
|
2796
2796
|
modalities?: {
|
|
2797
2797
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2798
|
-
output?: readonly ("text" | "
|
|
2798
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2799
2799
|
} | undefined;
|
|
2800
2800
|
context?: number | undefined;
|
|
2801
2801
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2861,7 +2861,7 @@ export declare const voyage: {
|
|
|
2861
2861
|
context: number;
|
|
2862
2862
|
modalities: {
|
|
2863
2863
|
input: readonly ["text"];
|
|
2864
|
-
output: readonly ["
|
|
2864
|
+
output: readonly ["embedding"];
|
|
2865
2865
|
};
|
|
2866
2866
|
providers: readonly ["voyage"];
|
|
2867
2867
|
} & O>, <const O extends {
|
|
@@ -2870,7 +2870,7 @@ export declare const voyage: {
|
|
|
2870
2870
|
knowledge?: string | undefined;
|
|
2871
2871
|
modalities?: {
|
|
2872
2872
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2873
|
-
output?: readonly ("text" | "
|
|
2873
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2874
2874
|
} | undefined;
|
|
2875
2875
|
context?: number | undefined;
|
|
2876
2876
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -2936,7 +2936,7 @@ export declare const voyage: {
|
|
|
2936
2936
|
context: number;
|
|
2937
2937
|
modalities: {
|
|
2938
2938
|
input: readonly ["text"];
|
|
2939
|
-
output: readonly ["
|
|
2939
|
+
output: readonly ["embedding"];
|
|
2940
2940
|
};
|
|
2941
2941
|
providers: readonly ["voyage"];
|
|
2942
2942
|
} & O>];
|
|
@@ -2946,7 +2946,7 @@ export declare const voyage: {
|
|
|
2946
2946
|
knowledge?: string | undefined;
|
|
2947
2947
|
modalities?: {
|
|
2948
2948
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
2949
|
-
output?: readonly ("text" | "
|
|
2949
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
2950
2950
|
} | undefined;
|
|
2951
2951
|
context?: number | undefined;
|
|
2952
2952
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3012,7 +3012,7 @@ export declare const voyage: {
|
|
|
3012
3012
|
context: number;
|
|
3013
3013
|
modalities: {
|
|
3014
3014
|
input: readonly ["text"];
|
|
3015
|
-
output: readonly ["
|
|
3015
|
+
output: readonly ["embedding"];
|
|
3016
3016
|
};
|
|
3017
3017
|
providers: readonly ["voyage"];
|
|
3018
3018
|
} & O>, <const O extends {
|
|
@@ -3021,7 +3021,7 @@ export declare const voyage: {
|
|
|
3021
3021
|
knowledge?: string | undefined;
|
|
3022
3022
|
modalities?: {
|
|
3023
3023
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
3024
|
-
output?: readonly ("text" | "
|
|
3024
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
3025
3025
|
} | undefined;
|
|
3026
3026
|
context?: number | undefined;
|
|
3027
3027
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3087,7 +3087,7 @@ export declare const voyage: {
|
|
|
3087
3087
|
context: number;
|
|
3088
3088
|
modalities: {
|
|
3089
3089
|
input: readonly ["text"];
|
|
3090
|
-
output: readonly ["
|
|
3090
|
+
output: readonly ["embedding"];
|
|
3091
3091
|
};
|
|
3092
3092
|
providers: readonly ["voyage"];
|
|
3093
3093
|
} & O>];
|
|
@@ -3097,7 +3097,7 @@ export declare const voyage: {
|
|
|
3097
3097
|
knowledge?: string | undefined;
|
|
3098
3098
|
modalities?: {
|
|
3099
3099
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
3100
|
-
output?: readonly ("text" | "
|
|
3100
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
3101
3101
|
} | undefined;
|
|
3102
3102
|
context?: number | undefined;
|
|
3103
3103
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3163,7 +3163,7 @@ export declare const voyage: {
|
|
|
3163
3163
|
context: number;
|
|
3164
3164
|
modalities: {
|
|
3165
3165
|
input: readonly ["text"];
|
|
3166
|
-
output: readonly ["
|
|
3166
|
+
output: readonly ["embedding"];
|
|
3167
3167
|
};
|
|
3168
3168
|
providers: readonly ["voyage"];
|
|
3169
3169
|
} & O>, <const O extends {
|
|
@@ -3172,7 +3172,7 @@ export declare const voyage: {
|
|
|
3172
3172
|
knowledge?: string | undefined;
|
|
3173
3173
|
modalities?: {
|
|
3174
3174
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
3175
|
-
output?: readonly ("text" | "
|
|
3175
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
3176
3176
|
} | undefined;
|
|
3177
3177
|
context?: number | undefined;
|
|
3178
3178
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3238,7 +3238,7 @@ export declare const voyage: {
|
|
|
3238
3238
|
context: number;
|
|
3239
3239
|
modalities: {
|
|
3240
3240
|
input: readonly ["text"];
|
|
3241
|
-
output: readonly ["
|
|
3241
|
+
output: readonly ["embedding"];
|
|
3242
3242
|
};
|
|
3243
3243
|
providers: readonly ["voyage"];
|
|
3244
3244
|
} & O>];
|
|
@@ -3248,7 +3248,7 @@ export declare const voyage: {
|
|
|
3248
3248
|
knowledge?: string | undefined;
|
|
3249
3249
|
modalities?: {
|
|
3250
3250
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
3251
|
-
output?: readonly ("text" | "
|
|
3251
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
3252
3252
|
} | undefined;
|
|
3253
3253
|
context?: number | undefined;
|
|
3254
3254
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3314,7 +3314,7 @@ export declare const voyage: {
|
|
|
3314
3314
|
context: number;
|
|
3315
3315
|
modalities: {
|
|
3316
3316
|
input: readonly ["text"];
|
|
3317
|
-
output: readonly ["
|
|
3317
|
+
output: readonly ["embedding"];
|
|
3318
3318
|
};
|
|
3319
3319
|
providers: readonly ["voyage"];
|
|
3320
3320
|
} & O>, <const O extends {
|
|
@@ -3323,7 +3323,7 @@ export declare const voyage: {
|
|
|
3323
3323
|
knowledge?: string | undefined;
|
|
3324
3324
|
modalities?: {
|
|
3325
3325
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
3326
|
-
output?: readonly ("text" | "
|
|
3326
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
3327
3327
|
} | undefined;
|
|
3328
3328
|
context?: number | undefined;
|
|
3329
3329
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3389,7 +3389,7 @@ export declare const voyage: {
|
|
|
3389
3389
|
context: number;
|
|
3390
3390
|
modalities: {
|
|
3391
3391
|
input: readonly ["text"];
|
|
3392
|
-
output: readonly ["
|
|
3392
|
+
output: readonly ["embedding"];
|
|
3393
3393
|
};
|
|
3394
3394
|
providers: readonly ["voyage"];
|
|
3395
3395
|
} & O>, <const O extends {
|
|
@@ -3398,7 +3398,7 @@ export declare const voyage: {
|
|
|
3398
3398
|
knowledge?: string | undefined;
|
|
3399
3399
|
modalities?: {
|
|
3400
3400
|
input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
|
|
3401
|
-
output?: readonly ("text" | "
|
|
3401
|
+
output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
|
|
3402
3402
|
} | undefined;
|
|
3403
3403
|
context?: number | undefined;
|
|
3404
3404
|
capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
|
|
@@ -3464,7 +3464,7 @@ export declare const voyage: {
|
|
|
3464
3464
|
context: number;
|
|
3465
3465
|
modalities: {
|
|
3466
3466
|
input: readonly ["text"];
|
|
3467
|
-
output: readonly ["
|
|
3467
|
+
output: readonly ["embedding"];
|
|
3468
3468
|
};
|
|
3469
3469
|
providers: readonly ["voyage"];
|
|
3470
3470
|
} & O>];
|