@hebo-ai/gateway 0.4.0-beta.2 → 0.4.0-beta.4

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.
Files changed (87) hide show
  1. package/README.md +13 -5
  2. package/dist/config.js +21 -7
  3. package/dist/endpoints/chat-completions/converters.js +2 -2
  4. package/dist/endpoints/chat-completions/handler.js +31 -25
  5. package/dist/endpoints/chat-completions/otel.d.ts +6 -0
  6. package/dist/endpoints/chat-completions/otel.js +121 -0
  7. package/dist/endpoints/embeddings/handler.js +19 -12
  8. package/dist/endpoints/embeddings/otel.d.ts +6 -0
  9. package/dist/endpoints/embeddings/otel.js +35 -0
  10. package/dist/endpoints/models/handler.js +3 -4
  11. package/dist/errors/gateway.js +1 -2
  12. package/dist/errors/openai.js +10 -12
  13. package/dist/errors/utils.d.ts +1 -3
  14. package/dist/errors/utils.js +5 -6
  15. package/dist/gateway.js +1 -1
  16. package/dist/lifecycle.js +62 -28
  17. package/dist/middleware/matcher.js +1 -1
  18. package/dist/models/amazon/presets.d.ts +37 -37
  19. package/dist/models/amazon/presets.js +1 -1
  20. package/dist/models/anthropic/presets.d.ts +56 -56
  21. package/dist/models/cohere/presets.d.ts +54 -54
  22. package/dist/models/cohere/presets.js +2 -2
  23. package/dist/models/google/presets.d.ts +31 -31
  24. package/dist/models/google/presets.js +1 -1
  25. package/dist/models/meta/presets.d.ts +42 -42
  26. package/dist/models/openai/presets.d.ts +96 -96
  27. package/dist/models/openai/presets.js +1 -1
  28. package/dist/models/types.d.ts +1 -1
  29. package/dist/models/voyage/presets.d.ts +92 -92
  30. package/dist/models/voyage/presets.js +1 -1
  31. package/dist/providers/registry.js +2 -2
  32. package/dist/telemetry/baggage.d.ts +1 -0
  33. package/dist/telemetry/baggage.js +24 -0
  34. package/dist/telemetry/fetch.d.ts +2 -1
  35. package/dist/telemetry/fetch.js +13 -3
  36. package/dist/telemetry/gen-ai.d.ts +4 -0
  37. package/dist/telemetry/gen-ai.js +42 -0
  38. package/dist/telemetry/http.d.ts +3 -0
  39. package/dist/telemetry/http.js +57 -0
  40. package/dist/telemetry/span.d.ts +6 -3
  41. package/dist/telemetry/span.js +23 -35
  42. package/dist/telemetry/stream.d.ts +3 -7
  43. package/dist/telemetry/stream.js +18 -18
  44. package/dist/types.d.ts +14 -12
  45. package/dist/utils/headers.d.ts +1 -1
  46. package/dist/utils/headers.js +7 -9
  47. package/dist/utils/request.d.ts +0 -4
  48. package/dist/utils/request.js +0 -9
  49. package/dist/utils/response.js +1 -1
  50. package/package.json +4 -2
  51. package/src/config.ts +28 -7
  52. package/src/endpoints/chat-completions/converters.ts +2 -2
  53. package/src/endpoints/chat-completions/handler.ts +39 -26
  54. package/src/endpoints/chat-completions/otel.ts +154 -0
  55. package/src/endpoints/embeddings/handler.test.ts +2 -2
  56. package/src/endpoints/embeddings/handler.ts +24 -12
  57. package/src/endpoints/embeddings/otel.ts +56 -0
  58. package/src/endpoints/models/handler.ts +3 -5
  59. package/src/errors/gateway.ts +1 -2
  60. package/src/errors/openai.ts +24 -17
  61. package/src/errors/utils.ts +5 -7
  62. package/src/gateway.ts +1 -1
  63. package/src/lifecycle.ts +73 -31
  64. package/src/middleware/matcher.ts +1 -1
  65. package/src/models/amazon/presets.ts +1 -1
  66. package/src/models/cohere/presets.ts +2 -2
  67. package/src/models/google/presets.ts +1 -1
  68. package/src/models/openai/presets.ts +1 -1
  69. package/src/models/types.ts +1 -1
  70. package/src/models/voyage/presets.ts +1 -1
  71. package/src/providers/registry.ts +2 -2
  72. package/src/telemetry/baggage.ts +27 -0
  73. package/src/telemetry/fetch.ts +15 -3
  74. package/src/telemetry/gen-ai.ts +60 -0
  75. package/src/telemetry/http.ts +65 -0
  76. package/src/telemetry/span.ts +28 -40
  77. package/src/telemetry/stream.ts +26 -30
  78. package/src/types.ts +15 -12
  79. package/src/utils/headers.ts +8 -19
  80. package/src/utils/request.ts +0 -11
  81. package/src/utils/response.ts +1 -1
  82. package/dist/telemetry/otel.d.ts +0 -2
  83. package/dist/telemetry/otel.js +0 -46
  84. package/dist/telemetry/utils.d.ts +0 -4
  85. package/dist/telemetry/utils.js +0 -223
  86. package/src/telemetry/otel.ts +0 -87
  87. package/src/telemetry/utils.ts +0 -273
@@ -4,7 +4,7 @@ export declare const gpt5: <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" | "image" | "audio" | "video" | "embeddings")[] | undefined;
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;
@@ -82,7 +82,7 @@ export declare const gpt5Pro: <const O extends {
82
82
  knowledge?: string | undefined;
83
83
  modalities?: {
84
84
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
85
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
85
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
86
86
  } | undefined;
87
87
  context?: number | undefined;
88
88
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -160,7 +160,7 @@ export declare const gpt5Mini: <const O extends {
160
160
  knowledge?: string | undefined;
161
161
  modalities?: {
162
162
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
163
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
163
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
164
164
  } | undefined;
165
165
  context?: number | undefined;
166
166
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -238,7 +238,7 @@ export declare const gpt5Nano: <const O extends {
238
238
  knowledge?: string | undefined;
239
239
  modalities?: {
240
240
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
241
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
241
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
242
242
  } | undefined;
243
243
  context?: number | undefined;
244
244
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -316,7 +316,7 @@ export declare const gpt51: <const O extends {
316
316
  knowledge?: string | undefined;
317
317
  modalities?: {
318
318
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
319
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
319
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
320
320
  } | undefined;
321
321
  context?: number | undefined;
322
322
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -394,7 +394,7 @@ export declare const gpt51Chat: <const O extends {
394
394
  knowledge?: string | undefined;
395
395
  modalities?: {
396
396
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
397
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
397
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
398
398
  } | undefined;
399
399
  context?: number | undefined;
400
400
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -472,7 +472,7 @@ export declare const gpt51Codex: <const O extends {
472
472
  knowledge?: string | undefined;
473
473
  modalities?: {
474
474
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
475
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
475
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
476
476
  } | undefined;
477
477
  context?: number | undefined;
478
478
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -550,7 +550,7 @@ export declare const gpt51CodexMax: <const O extends {
550
550
  knowledge?: string | undefined;
551
551
  modalities?: {
552
552
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
553
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
553
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
554
554
  } | undefined;
555
555
  context?: number | undefined;
556
556
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -628,7 +628,7 @@ export declare const gpt5Codex: <const O extends {
628
628
  knowledge?: string | undefined;
629
629
  modalities?: {
630
630
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
631
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
631
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
632
632
  } | undefined;
633
633
  context?: number | undefined;
634
634
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -706,7 +706,7 @@ export declare const gpt52: <const O extends {
706
706
  knowledge?: string | undefined;
707
707
  modalities?: {
708
708
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
709
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
709
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
710
710
  } | undefined;
711
711
  context?: number | undefined;
712
712
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -784,7 +784,7 @@ export declare const gpt52Chat: <const O extends {
784
784
  knowledge?: string | undefined;
785
785
  modalities?: {
786
786
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
787
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
787
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
788
788
  } | undefined;
789
789
  context?: number | undefined;
790
790
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -862,7 +862,7 @@ export declare const gpt52Pro: <const O extends {
862
862
  knowledge?: string | undefined;
863
863
  modalities?: {
864
864
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
865
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
865
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
866
866
  } | undefined;
867
867
  context?: number | undefined;
868
868
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -940,7 +940,7 @@ export declare const gpt52Codex: <const O extends {
940
940
  knowledge?: string | undefined;
941
941
  modalities?: {
942
942
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
943
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
943
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
944
944
  } | undefined;
945
945
  context?: number | undefined;
946
946
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1017,7 +1017,7 @@ export declare const gpt53Codex: <const O extends {
1017
1017
  knowledge?: string | undefined;
1018
1018
  modalities?: {
1019
1019
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1020
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1020
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1021
1021
  } | undefined;
1022
1022
  context?: number | undefined;
1023
1023
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1094,7 +1094,7 @@ export declare const textEmbedding3Small: <const O extends {
1094
1094
  knowledge?: string | undefined;
1095
1095
  modalities?: {
1096
1096
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1097
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1097
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1098
1098
  } | undefined;
1099
1099
  context?: number | undefined;
1100
1100
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1160,7 +1160,7 @@ export declare const textEmbedding3Small: <const O extends {
1160
1160
  context: number;
1161
1161
  modalities: {
1162
1162
  input: readonly ["text"];
1163
- output: readonly ["embeddings"];
1163
+ output: readonly ["embedding"];
1164
1164
  };
1165
1165
  providers: readonly ["openai", "azure"];
1166
1166
  } & O>;
@@ -1170,7 +1170,7 @@ export declare const textEmbedding3Large: <const O extends {
1170
1170
  knowledge?: string | undefined;
1171
1171
  modalities?: {
1172
1172
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1173
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1173
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1174
1174
  } | undefined;
1175
1175
  context?: number | undefined;
1176
1176
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1236,7 +1236,7 @@ export declare const textEmbedding3Large: <const O extends {
1236
1236
  context: number;
1237
1237
  modalities: {
1238
1238
  input: readonly ["text"];
1239
- output: readonly ["embeddings"];
1239
+ output: readonly ["embedding"];
1240
1240
  };
1241
1241
  providers: readonly ["openai", "azure"];
1242
1242
  } & O>;
@@ -1246,7 +1246,7 @@ export declare const gptOss20b: <const O extends {
1246
1246
  knowledge?: string | undefined;
1247
1247
  modalities?: {
1248
1248
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1249
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1249
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1250
1250
  } | undefined;
1251
1251
  context?: number | undefined;
1252
1252
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1324,7 +1324,7 @@ export declare const gptOss120b: <const O extends {
1324
1324
  knowledge?: string | undefined;
1325
1325
  modalities?: {
1326
1326
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1327
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1327
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1328
1328
  } | undefined;
1329
1329
  context?: number | undefined;
1330
1330
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1403,7 +1403,7 @@ export declare const gptOss: {
1403
1403
  knowledge?: string | undefined;
1404
1404
  modalities?: {
1405
1405
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1406
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1406
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1407
1407
  } | undefined;
1408
1408
  context?: number | undefined;
1409
1409
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1480,7 +1480,7 @@ export declare const gptOss: {
1480
1480
  knowledge?: string | undefined;
1481
1481
  modalities?: {
1482
1482
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1483
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1483
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1484
1484
  } | undefined;
1485
1485
  context?: number | undefined;
1486
1486
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1558,7 +1558,7 @@ export declare const gptOss: {
1558
1558
  knowledge?: string | undefined;
1559
1559
  modalities?: {
1560
1560
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1561
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1561
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1562
1562
  } | undefined;
1563
1563
  context?: number | undefined;
1564
1564
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1635,7 +1635,7 @@ export declare const gptOss: {
1635
1635
  knowledge?: string | undefined;
1636
1636
  modalities?: {
1637
1637
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1638
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1638
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1639
1639
  } | undefined;
1640
1640
  context?: number | undefined;
1641
1641
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1713,7 +1713,7 @@ export declare const gptOss: {
1713
1713
  knowledge?: string | undefined;
1714
1714
  modalities?: {
1715
1715
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1716
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1716
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1717
1717
  } | undefined;
1718
1718
  context?: number | undefined;
1719
1719
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1790,7 +1790,7 @@ export declare const gptOss: {
1790
1790
  knowledge?: string | undefined;
1791
1791
  modalities?: {
1792
1792
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1793
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1793
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1794
1794
  } | undefined;
1795
1795
  context?: number | undefined;
1796
1796
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1868,7 +1868,7 @@ export declare const gptOss: {
1868
1868
  knowledge?: string | undefined;
1869
1869
  modalities?: {
1870
1870
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1871
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1871
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1872
1872
  } | undefined;
1873
1873
  context?: number | undefined;
1874
1874
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -1945,7 +1945,7 @@ export declare const gptOss: {
1945
1945
  knowledge?: string | undefined;
1946
1946
  modalities?: {
1947
1947
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1948
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1948
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
1949
1949
  } | undefined;
1950
1950
  context?: number | undefined;
1951
1951
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2025,7 +2025,7 @@ export declare const gpt: {
2025
2025
  knowledge?: string | undefined;
2026
2026
  modalities?: {
2027
2027
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2028
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2028
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2029
2029
  } | undefined;
2030
2030
  context?: number | undefined;
2031
2031
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2102,7 +2102,7 @@ export declare const gpt: {
2102
2102
  knowledge?: string | undefined;
2103
2103
  modalities?: {
2104
2104
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2105
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2105
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2106
2106
  } | undefined;
2107
2107
  context?: number | undefined;
2108
2108
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2179,7 +2179,7 @@ export declare const gpt: {
2179
2179
  knowledge?: string | undefined;
2180
2180
  modalities?: {
2181
2181
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2182
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2182
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2183
2183
  } | undefined;
2184
2184
  context?: number | undefined;
2185
2185
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2257,7 +2257,7 @@ export declare const gpt: {
2257
2257
  knowledge?: string | undefined;
2258
2258
  modalities?: {
2259
2259
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2260
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2260
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2261
2261
  } | undefined;
2262
2262
  context?: number | undefined;
2263
2263
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2334,7 +2334,7 @@ export declare const gpt: {
2334
2334
  knowledge?: string | undefined;
2335
2335
  modalities?: {
2336
2336
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2337
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2337
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2338
2338
  } | undefined;
2339
2339
  context?: number | undefined;
2340
2340
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2411,7 +2411,7 @@ export declare const gpt: {
2411
2411
  knowledge?: string | undefined;
2412
2412
  modalities?: {
2413
2413
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2414
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2414
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2415
2415
  } | undefined;
2416
2416
  context?: number | undefined;
2417
2417
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2488,7 +2488,7 @@ export declare const gpt: {
2488
2488
  knowledge?: string | undefined;
2489
2489
  modalities?: {
2490
2490
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2491
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2491
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2492
2492
  } | undefined;
2493
2493
  context?: number | undefined;
2494
2494
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2565,7 +2565,7 @@ export declare const gpt: {
2565
2565
  knowledge?: string | undefined;
2566
2566
  modalities?: {
2567
2567
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2568
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2568
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2569
2569
  } | undefined;
2570
2570
  context?: number | undefined;
2571
2571
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2642,7 +2642,7 @@ export declare const gpt: {
2642
2642
  knowledge?: string | undefined;
2643
2643
  modalities?: {
2644
2644
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2645
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2645
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2646
2646
  } | undefined;
2647
2647
  context?: number | undefined;
2648
2648
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2719,7 +2719,7 @@ export declare const gpt: {
2719
2719
  knowledge?: string | undefined;
2720
2720
  modalities?: {
2721
2721
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2722
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2722
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2723
2723
  } | undefined;
2724
2724
  context?: number | undefined;
2725
2725
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2796,7 +2796,7 @@ export declare const gpt: {
2796
2796
  knowledge?: string | undefined;
2797
2797
  modalities?: {
2798
2798
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2799
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2799
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2800
2800
  } | undefined;
2801
2801
  context?: number | undefined;
2802
2802
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2873,7 +2873,7 @@ export declare const gpt: {
2873
2873
  knowledge?: string | undefined;
2874
2874
  modalities?: {
2875
2875
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2876
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2876
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2877
2877
  } | undefined;
2878
2878
  context?: number | undefined;
2879
2879
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -2950,7 +2950,7 @@ export declare const gpt: {
2950
2950
  knowledge?: string | undefined;
2951
2951
  modalities?: {
2952
2952
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2953
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2953
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
2954
2954
  } | undefined;
2955
2955
  context?: number | undefined;
2956
2956
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3027,7 +3027,7 @@ export declare const gpt: {
3027
3027
  knowledge?: string | undefined;
3028
3028
  modalities?: {
3029
3029
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3030
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3030
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3031
3031
  } | undefined;
3032
3032
  context?: number | undefined;
3033
3033
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3104,7 +3104,7 @@ export declare const gpt: {
3104
3104
  knowledge?: string | undefined;
3105
3105
  modalities?: {
3106
3106
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3107
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3107
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3108
3108
  } | undefined;
3109
3109
  context?: number | undefined;
3110
3110
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3181,7 +3181,7 @@ export declare const gpt: {
3181
3181
  knowledge?: string | undefined;
3182
3182
  modalities?: {
3183
3183
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3184
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3184
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3185
3185
  } | undefined;
3186
3186
  context?: number | undefined;
3187
3187
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3257,7 +3257,7 @@ export declare const gpt: {
3257
3257
  knowledge?: string | undefined;
3258
3258
  modalities?: {
3259
3259
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3260
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3260
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3261
3261
  } | undefined;
3262
3262
  context?: number | undefined;
3263
3263
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3334,7 +3334,7 @@ export declare const gpt: {
3334
3334
  knowledge?: string | undefined;
3335
3335
  modalities?: {
3336
3336
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3337
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3337
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3338
3338
  } | undefined;
3339
3339
  context?: number | undefined;
3340
3340
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3411,7 +3411,7 @@ export declare const gpt: {
3411
3411
  knowledge?: string | undefined;
3412
3412
  modalities?: {
3413
3413
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3414
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3414
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3415
3415
  } | undefined;
3416
3416
  context?: number | undefined;
3417
3417
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3488,7 +3488,7 @@ export declare const gpt: {
3488
3488
  knowledge?: string | undefined;
3489
3489
  modalities?: {
3490
3490
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3491
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3491
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3492
3492
  } | undefined;
3493
3493
  context?: number | undefined;
3494
3494
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3565,7 +3565,7 @@ export declare const gpt: {
3565
3565
  knowledge?: string | undefined;
3566
3566
  modalities?: {
3567
3567
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3568
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3568
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3569
3569
  } | undefined;
3570
3570
  context?: number | undefined;
3571
3571
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3642,7 +3642,7 @@ export declare const gpt: {
3642
3642
  knowledge?: string | undefined;
3643
3643
  modalities?: {
3644
3644
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3645
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3645
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3646
3646
  } | undefined;
3647
3647
  context?: number | undefined;
3648
3648
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3719,7 +3719,7 @@ export declare const gpt: {
3719
3719
  knowledge?: string | undefined;
3720
3720
  modalities?: {
3721
3721
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3722
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3722
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3723
3723
  } | undefined;
3724
3724
  context?: number | undefined;
3725
3725
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3796,7 +3796,7 @@ export declare const gpt: {
3796
3796
  knowledge?: string | undefined;
3797
3797
  modalities?: {
3798
3798
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3799
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3799
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3800
3800
  } | undefined;
3801
3801
  context?: number | undefined;
3802
3802
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3873,7 +3873,7 @@ export declare const gpt: {
3873
3873
  knowledge?: string | undefined;
3874
3874
  modalities?: {
3875
3875
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3876
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3876
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3877
3877
  } | undefined;
3878
3878
  context?: number | undefined;
3879
3879
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -3950,7 +3950,7 @@ export declare const gpt: {
3950
3950
  knowledge?: string | undefined;
3951
3951
  modalities?: {
3952
3952
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3953
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3953
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
3954
3954
  } | undefined;
3955
3955
  context?: number | undefined;
3956
3956
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4027,7 +4027,7 @@ export declare const gpt: {
4027
4027
  knowledge?: string | undefined;
4028
4028
  modalities?: {
4029
4029
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4030
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4030
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4031
4031
  } | undefined;
4032
4032
  context?: number | undefined;
4033
4033
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4104,7 +4104,7 @@ export declare const gpt: {
4104
4104
  knowledge?: string | undefined;
4105
4105
  modalities?: {
4106
4106
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4107
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4107
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4108
4108
  } | undefined;
4109
4109
  context?: number | undefined;
4110
4110
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4181,7 +4181,7 @@ export declare const gpt: {
4181
4181
  knowledge?: string | undefined;
4182
4182
  modalities?: {
4183
4183
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4184
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4184
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4185
4185
  } | undefined;
4186
4186
  context?: number | undefined;
4187
4187
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4257,7 +4257,7 @@ export declare const gpt: {
4257
4257
  knowledge?: string | undefined;
4258
4258
  modalities?: {
4259
4259
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4260
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4260
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4261
4261
  } | undefined;
4262
4262
  context?: number | undefined;
4263
4263
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4334,7 +4334,7 @@ export declare const gpt: {
4334
4334
  knowledge?: string | undefined;
4335
4335
  modalities?: {
4336
4336
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4337
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4337
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4338
4338
  } | undefined;
4339
4339
  context?: number | undefined;
4340
4340
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4411,7 +4411,7 @@ export declare const gpt: {
4411
4411
  knowledge?: string | undefined;
4412
4412
  modalities?: {
4413
4413
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4414
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4414
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4415
4415
  } | undefined;
4416
4416
  context?: number | undefined;
4417
4417
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4488,7 +4488,7 @@ export declare const gpt: {
4488
4488
  knowledge?: string | undefined;
4489
4489
  modalities?: {
4490
4490
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4491
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4491
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4492
4492
  } | undefined;
4493
4493
  context?: number | undefined;
4494
4494
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4565,7 +4565,7 @@ export declare const gpt: {
4565
4565
  knowledge?: string | undefined;
4566
4566
  modalities?: {
4567
4567
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4568
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4568
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4569
4569
  } | undefined;
4570
4570
  context?: number | undefined;
4571
4571
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4643,7 +4643,7 @@ export declare const gpt: {
4643
4643
  knowledge?: string | undefined;
4644
4644
  modalities?: {
4645
4645
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4646
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4646
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4647
4647
  } | undefined;
4648
4648
  context?: number | undefined;
4649
4649
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4720,7 +4720,7 @@ export declare const gpt: {
4720
4720
  knowledge?: string | undefined;
4721
4721
  modalities?: {
4722
4722
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4723
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4723
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4724
4724
  } | undefined;
4725
4725
  context?: number | undefined;
4726
4726
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4797,7 +4797,7 @@ export declare const gpt: {
4797
4797
  knowledge?: string | undefined;
4798
4798
  modalities?: {
4799
4799
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4800
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4800
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4801
4801
  } | undefined;
4802
4802
  context?: number | undefined;
4803
4803
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4874,7 +4874,7 @@ export declare const gpt: {
4874
4874
  knowledge?: string | undefined;
4875
4875
  modalities?: {
4876
4876
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4877
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4877
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4878
4878
  } | undefined;
4879
4879
  context?: number | undefined;
4880
4880
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -4952,7 +4952,7 @@ export declare const gpt: {
4952
4952
  knowledge?: string | undefined;
4953
4953
  modalities?: {
4954
4954
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4955
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4955
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
4956
4956
  } | undefined;
4957
4957
  context?: number | undefined;
4958
4958
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5029,7 +5029,7 @@ export declare const gpt: {
5029
5029
  knowledge?: string | undefined;
5030
5030
  modalities?: {
5031
5031
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5032
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5032
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5033
5033
  } | undefined;
5034
5034
  context?: number | undefined;
5035
5035
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5106,7 +5106,7 @@ export declare const gpt: {
5106
5106
  knowledge?: string | undefined;
5107
5107
  modalities?: {
5108
5108
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5109
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5109
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5110
5110
  } | undefined;
5111
5111
  context?: number | undefined;
5112
5112
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5183,7 +5183,7 @@ export declare const gpt: {
5183
5183
  knowledge?: string | undefined;
5184
5184
  modalities?: {
5185
5185
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5186
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5186
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5187
5187
  } | undefined;
5188
5188
  context?: number | undefined;
5189
5189
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5260,7 +5260,7 @@ export declare const gpt: {
5260
5260
  knowledge?: string | undefined;
5261
5261
  modalities?: {
5262
5262
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5263
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5263
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5264
5264
  } | undefined;
5265
5265
  context?: number | undefined;
5266
5266
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5337,7 +5337,7 @@ export declare const gpt: {
5337
5337
  knowledge?: string | undefined;
5338
5338
  modalities?: {
5339
5339
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5340
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5340
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5341
5341
  } | undefined;
5342
5342
  context?: number | undefined;
5343
5343
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5414,7 +5414,7 @@ export declare const gpt: {
5414
5414
  knowledge?: string | undefined;
5415
5415
  modalities?: {
5416
5416
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5417
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5417
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5418
5418
  } | undefined;
5419
5419
  context?: number | undefined;
5420
5420
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5491,7 +5491,7 @@ export declare const gpt: {
5491
5491
  knowledge?: string | undefined;
5492
5492
  modalities?: {
5493
5493
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5494
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5494
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5495
5495
  } | undefined;
5496
5496
  context?: number | undefined;
5497
5497
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5568,7 +5568,7 @@ export declare const gpt: {
5568
5568
  knowledge?: string | undefined;
5569
5569
  modalities?: {
5570
5570
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5571
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5571
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5572
5572
  } | undefined;
5573
5573
  context?: number | undefined;
5574
5574
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5644,7 +5644,7 @@ export declare const gpt: {
5644
5644
  knowledge?: string | undefined;
5645
5645
  modalities?: {
5646
5646
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5647
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5647
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5648
5648
  } | undefined;
5649
5649
  context?: number | undefined;
5650
5650
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5721,7 +5721,7 @@ export declare const gpt: {
5721
5721
  knowledge?: string | undefined;
5722
5722
  modalities?: {
5723
5723
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5724
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5724
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5725
5725
  } | undefined;
5726
5726
  context?: number | undefined;
5727
5727
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5798,7 +5798,7 @@ export declare const gpt: {
5798
5798
  knowledge?: string | undefined;
5799
5799
  modalities?: {
5800
5800
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5801
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5801
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5802
5802
  } | undefined;
5803
5803
  context?: number | undefined;
5804
5804
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5876,7 +5876,7 @@ export declare const gpt: {
5876
5876
  knowledge?: string | undefined;
5877
5877
  modalities?: {
5878
5878
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5879
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5879
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5880
5880
  } | undefined;
5881
5881
  context?: number | undefined;
5882
5882
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -5953,7 +5953,7 @@ export declare const gpt: {
5953
5953
  knowledge?: string | undefined;
5954
5954
  modalities?: {
5955
5955
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
5956
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
5956
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
5957
5957
  } | undefined;
5958
5958
  context?: number | undefined;
5959
5959
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6033,7 +6033,7 @@ export declare const textEmbeddings: {
6033
6033
  knowledge?: string | undefined;
6034
6034
  modalities?: {
6035
6035
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6036
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6036
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6037
6037
  } | undefined;
6038
6038
  context?: number | undefined;
6039
6039
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6099,7 +6099,7 @@ export declare const textEmbeddings: {
6099
6099
  context: number;
6100
6100
  modalities: {
6101
6101
  input: readonly ["text"];
6102
- output: readonly ["embeddings"];
6102
+ output: readonly ["embedding"];
6103
6103
  };
6104
6104
  providers: readonly ["openai", "azure"];
6105
6105
  } & O>, <const O extends {
@@ -6108,7 +6108,7 @@ export declare const textEmbeddings: {
6108
6108
  knowledge?: string | undefined;
6109
6109
  modalities?: {
6110
6110
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6111
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6111
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6112
6112
  } | undefined;
6113
6113
  context?: number | undefined;
6114
6114
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6174,7 +6174,7 @@ export declare const textEmbeddings: {
6174
6174
  context: number;
6175
6175
  modalities: {
6176
6176
  input: readonly ["text"];
6177
- output: readonly ["embeddings"];
6177
+ output: readonly ["embedding"];
6178
6178
  };
6179
6179
  providers: readonly ["openai", "azure"];
6180
6180
  } & O>];
@@ -6184,7 +6184,7 @@ export declare const textEmbeddings: {
6184
6184
  knowledge?: string | undefined;
6185
6185
  modalities?: {
6186
6186
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6187
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6187
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6188
6188
  } | undefined;
6189
6189
  context?: number | undefined;
6190
6190
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6250,7 +6250,7 @@ export declare const textEmbeddings: {
6250
6250
  context: number;
6251
6251
  modalities: {
6252
6252
  input: readonly ["text"];
6253
- output: readonly ["embeddings"];
6253
+ output: readonly ["embedding"];
6254
6254
  };
6255
6255
  providers: readonly ["openai", "azure"];
6256
6256
  } & O>) | (<const O extends {
@@ -6259,7 +6259,7 @@ export declare const textEmbeddings: {
6259
6259
  knowledge?: string | undefined;
6260
6260
  modalities?: {
6261
6261
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6262
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6262
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6263
6263
  } | undefined;
6264
6264
  context?: number | undefined;
6265
6265
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6325,7 +6325,7 @@ export declare const textEmbeddings: {
6325
6325
  context: number;
6326
6326
  modalities: {
6327
6327
  input: readonly ["text"];
6328
- output: readonly ["embeddings"];
6328
+ output: readonly ["embedding"];
6329
6329
  };
6330
6330
  providers: readonly ["openai", "azure"];
6331
6331
  } & O>))[];
@@ -6335,7 +6335,7 @@ export declare const textEmbeddings: {
6335
6335
  knowledge?: string | undefined;
6336
6336
  modalities?: {
6337
6337
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6338
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6338
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6339
6339
  } | undefined;
6340
6340
  context?: number | undefined;
6341
6341
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6401,7 +6401,7 @@ export declare const textEmbeddings: {
6401
6401
  context: number;
6402
6402
  modalities: {
6403
6403
  input: readonly ["text"];
6404
- output: readonly ["embeddings"];
6404
+ output: readonly ["embedding"];
6405
6405
  };
6406
6406
  providers: readonly ["openai", "azure"];
6407
6407
  } & O>, <const O extends {
@@ -6410,7 +6410,7 @@ export declare const textEmbeddings: {
6410
6410
  knowledge?: string | undefined;
6411
6411
  modalities?: {
6412
6412
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6413
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6413
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6414
6414
  } | undefined;
6415
6415
  context?: number | undefined;
6416
6416
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6476,7 +6476,7 @@ export declare const textEmbeddings: {
6476
6476
  context: number;
6477
6477
  modalities: {
6478
6478
  input: readonly ["text"];
6479
- output: readonly ["embeddings"];
6479
+ output: readonly ["embedding"];
6480
6480
  };
6481
6481
  providers: readonly ["openai", "azure"];
6482
6482
  } & O>];
@@ -6486,7 +6486,7 @@ export declare const textEmbeddings: {
6486
6486
  knowledge?: string | undefined;
6487
6487
  modalities?: {
6488
6488
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6489
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6489
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6490
6490
  } | undefined;
6491
6491
  context?: number | undefined;
6492
6492
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6552,7 +6552,7 @@ export declare const textEmbeddings: {
6552
6552
  context: number;
6553
6553
  modalities: {
6554
6554
  input: readonly ["text"];
6555
- output: readonly ["embeddings"];
6555
+ output: readonly ["embedding"];
6556
6556
  };
6557
6557
  providers: readonly ["openai", "azure"];
6558
6558
  } & O>, <const O extends {
@@ -6561,7 +6561,7 @@ export declare const textEmbeddings: {
6561
6561
  knowledge?: string | undefined;
6562
6562
  modalities?: {
6563
6563
  input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
6564
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
6564
+ output?: readonly ("text" | "embedding" | "image" | "audio" | "video")[] | undefined;
6565
6565
  } | undefined;
6566
6566
  context?: number | undefined;
6567
6567
  capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
@@ -6627,7 +6627,7 @@ export declare const textEmbeddings: {
6627
6627
  context: number;
6628
6628
  modalities: {
6629
6629
  input: readonly ["text"];
6630
- output: readonly ["embeddings"];
6630
+ output: readonly ["embedding"];
6631
6631
  };
6632
6632
  providers: readonly ["openai", "azure"];
6633
6633
  } & O>];