@hebo-ai/gateway 0.1.2 → 0.2.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.
Files changed (202) hide show
  1. package/README.md +172 -67
  2. package/dist/config.js +2 -12
  3. package/dist/endpoints/chat-completions/converters.d.ts +28 -24
  4. package/dist/endpoints/chat-completions/converters.js +99 -73
  5. package/dist/endpoints/chat-completions/handler.js +36 -30
  6. package/dist/endpoints/chat-completions/schema.d.ts +394 -272
  7. package/dist/endpoints/chat-completions/schema.js +124 -57
  8. package/dist/endpoints/embeddings/converters.d.ts +4 -4
  9. package/dist/endpoints/embeddings/converters.js +8 -9
  10. package/dist/endpoints/embeddings/handler.js +32 -26
  11. package/dist/endpoints/embeddings/schema.d.ts +28 -38
  12. package/dist/endpoints/embeddings/schema.js +10 -10
  13. package/dist/endpoints/models/converters.d.ts +2 -2
  14. package/dist/endpoints/models/converters.js +9 -12
  15. package/dist/endpoints/models/handler.js +8 -9
  16. package/dist/endpoints/models/schema.d.ts +37 -31
  17. package/dist/endpoints/models/schema.js +23 -12
  18. package/dist/gateway.d.ts +8 -9
  19. package/dist/gateway.js +7 -10
  20. package/dist/index.d.ts +2 -0
  21. package/dist/index.js +2 -0
  22. package/dist/lifecycle.d.ts +2 -0
  23. package/dist/{utils/hooks.js → lifecycle.js} +16 -8
  24. package/dist/middleware/common.d.ts +4 -0
  25. package/dist/middleware/common.js +44 -0
  26. package/dist/middleware/matcher.d.ts +18 -0
  27. package/dist/middleware/matcher.js +83 -0
  28. package/dist/models/amazon/index.d.ts +2 -0
  29. package/dist/models/amazon/index.js +2 -0
  30. package/dist/models/amazon/middleware.d.ts +2 -0
  31. package/dist/models/amazon/middleware.js +20 -0
  32. package/dist/models/amazon/presets.d.ts +2390 -0
  33. package/dist/models/amazon/presets.js +80 -0
  34. package/dist/models/anthropic/index.d.ts +2 -0
  35. package/dist/models/anthropic/index.js +2 -0
  36. package/dist/models/anthropic/middleware.d.ts +5 -0
  37. package/dist/models/anthropic/middleware.js +67 -0
  38. package/dist/models/anthropic/presets.d.ts +4106 -0
  39. package/dist/models/anthropic/presets.js +113 -0
  40. package/dist/models/catalog.d.ts +3 -1
  41. package/dist/models/catalog.js +3 -2
  42. package/dist/models/cohere/index.d.ts +2 -0
  43. package/dist/models/cohere/index.js +2 -0
  44. package/dist/models/cohere/middleware.d.ts +2 -0
  45. package/dist/models/cohere/middleware.js +18 -0
  46. package/dist/models/cohere/presets.d.ts +2918 -0
  47. package/dist/models/cohere/presets.js +129 -0
  48. package/dist/models/google/index.d.ts +2 -0
  49. package/dist/models/google/index.js +2 -0
  50. package/dist/models/google/middleware.d.ts +2 -0
  51. package/dist/models/google/middleware.js +20 -0
  52. package/dist/models/{presets/gemini.d.ts → google/presets.d.ts} +400 -174
  53. package/dist/models/{presets/gemini.js → google/presets.js} +20 -5
  54. package/dist/models/meta/index.d.ts +1 -0
  55. package/dist/models/meta/index.js +1 -0
  56. package/dist/models/meta/presets.d.ts +3254 -0
  57. package/dist/models/{presets/llama.js → meta/presets.js} +44 -7
  58. package/dist/models/openai/index.d.ts +2 -0
  59. package/dist/models/openai/index.js +2 -0
  60. package/dist/models/openai/middleware.d.ts +2 -0
  61. package/dist/models/openai/middleware.js +20 -0
  62. package/dist/models/openai/presets.d.ts +6252 -0
  63. package/dist/models/openai/presets.js +206 -0
  64. package/dist/models/types.d.ts +3 -3
  65. package/dist/models/types.js +27 -0
  66. package/dist/models/voyage/index.d.ts +2 -0
  67. package/dist/models/voyage/index.js +2 -0
  68. package/dist/models/voyage/middleware.d.ts +2 -0
  69. package/dist/models/voyage/middleware.js +18 -0
  70. package/dist/models/{presets/voyage.d.ts → voyage/presets.d.ts} +322 -323
  71. package/dist/providers/anthropic/canonical.d.ts +3 -0
  72. package/dist/providers/anthropic/canonical.js +9 -0
  73. package/dist/providers/anthropic/index.d.ts +1 -0
  74. package/dist/providers/anthropic/index.js +1 -0
  75. package/dist/providers/bedrock/canonical.d.ts +15 -0
  76. package/dist/providers/{canonical/bedrock.js → bedrock/canonical.js} +13 -15
  77. package/dist/providers/bedrock/index.d.ts +1 -0
  78. package/dist/providers/bedrock/index.js +1 -0
  79. package/dist/providers/cohere/canonical.d.ts +3 -0
  80. package/dist/providers/{canonical/cohere.js → cohere/canonical.js} +6 -6
  81. package/dist/providers/cohere/index.d.ts +1 -0
  82. package/dist/providers/cohere/index.js +1 -0
  83. package/dist/providers/groq/canonical.d.ts +3 -0
  84. package/dist/providers/groq/canonical.js +12 -0
  85. package/dist/providers/groq/index.d.ts +1 -0
  86. package/dist/providers/groq/index.js +1 -0
  87. package/dist/providers/openai/canonical.d.ts +3 -0
  88. package/dist/providers/openai/canonical.js +8 -0
  89. package/dist/providers/openai/index.d.ts +1 -0
  90. package/dist/providers/openai/index.js +1 -0
  91. package/dist/providers/registry.d.ts +16 -26
  92. package/dist/providers/registry.js +19 -26
  93. package/dist/providers/types.d.ts +1 -1
  94. package/dist/providers/types.js +1 -0
  95. package/dist/providers/vertex/canonical.d.ts +3 -0
  96. package/dist/providers/vertex/canonical.js +8 -0
  97. package/dist/providers/vertex/index.d.ts +1 -0
  98. package/dist/providers/vertex/index.js +1 -0
  99. package/dist/providers/voyage/canonical.d.ts +3 -0
  100. package/dist/providers/voyage/canonical.js +7 -0
  101. package/dist/providers/voyage/index.d.ts +1 -0
  102. package/dist/providers/voyage/index.js +1 -0
  103. package/dist/types.d.ts +60 -30
  104. package/dist/utils/errors.js +2 -0
  105. package/dist/utils/preset.d.ts +1 -7
  106. package/dist/utils/preset.js +1 -1
  107. package/dist/utils/response.d.ts +1 -0
  108. package/dist/utils/response.js +10 -0
  109. package/package.json +79 -70
  110. package/src/config.ts +2 -18
  111. package/src/endpoints/chat-completions/converters.test.ts +39 -0
  112. package/src/endpoints/chat-completions/converters.ts +191 -112
  113. package/src/endpoints/chat-completions/handler.test.ts +47 -18
  114. package/src/endpoints/chat-completions/handler.ts +40 -34
  115. package/src/endpoints/chat-completions/schema.ts +161 -88
  116. package/src/endpoints/embeddings/converters.ts +15 -11
  117. package/src/endpoints/embeddings/handler.test.ts +27 -30
  118. package/src/endpoints/embeddings/handler.ts +34 -28
  119. package/src/endpoints/embeddings/schema.ts +10 -10
  120. package/src/endpoints/models/converters.ts +22 -14
  121. package/src/endpoints/models/handler.test.ts +26 -29
  122. package/src/endpoints/models/handler.ts +10 -12
  123. package/src/endpoints/models/schema.ts +26 -20
  124. package/src/gateway.ts +10 -24
  125. package/src/index.ts +3 -0
  126. package/src/{utils/hooks.ts → lifecycle.ts} +21 -11
  127. package/src/middleware/common.ts +68 -0
  128. package/src/middleware/matcher.ts +117 -0
  129. package/src/models/amazon/index.ts +2 -0
  130. package/src/models/amazon/middleware.ts +25 -0
  131. package/src/models/amazon/presets.ts +104 -0
  132. package/src/models/anthropic/index.ts +2 -0
  133. package/src/models/anthropic/middleware.test.ts +184 -0
  134. package/src/models/anthropic/middleware.ts +75 -0
  135. package/src/models/anthropic/presets.ts +161 -0
  136. package/src/models/catalog.ts +10 -2
  137. package/src/models/cohere/index.ts +2 -0
  138. package/src/models/cohere/middleware.ts +23 -0
  139. package/src/models/cohere/presets.ts +181 -0
  140. package/src/models/google/index.ts +2 -0
  141. package/src/models/google/middleware.ts +25 -0
  142. package/src/models/{presets/gemini.ts → google/presets.ts} +25 -5
  143. package/src/models/meta/index.ts +1 -0
  144. package/src/models/{presets/llama.ts → meta/presets.ts} +68 -7
  145. package/src/models/openai/index.ts +2 -0
  146. package/src/models/openai/middleware.ts +25 -0
  147. package/src/models/openai/presets.ts +269 -0
  148. package/src/models/types.ts +29 -2
  149. package/src/models/voyage/index.ts +2 -0
  150. package/src/models/voyage/middleware.ts +23 -0
  151. package/src/providers/anthropic/canonical.ts +17 -0
  152. package/src/providers/anthropic/index.ts +1 -0
  153. package/src/providers/{canonical/bedrock.ts → bedrock/canonical.ts} +22 -32
  154. package/src/providers/bedrock/index.ts +1 -0
  155. package/src/providers/cohere/canonical.ts +26 -0
  156. package/src/providers/cohere/index.ts +1 -0
  157. package/src/providers/groq/canonical.ts +21 -0
  158. package/src/providers/groq/index.ts +1 -0
  159. package/src/providers/openai/canonical.ts +16 -0
  160. package/src/providers/openai/index.ts +1 -0
  161. package/src/providers/registry.test.ts +12 -10
  162. package/src/providers/registry.ts +43 -43
  163. package/src/providers/types.ts +1 -0
  164. package/src/providers/vertex/canonical.ts +17 -0
  165. package/src/providers/vertex/index.ts +1 -0
  166. package/src/providers/voyage/canonical.ts +16 -0
  167. package/src/providers/voyage/index.ts +1 -0
  168. package/src/types.ts +64 -28
  169. package/src/utils/errors.ts +2 -0
  170. package/src/utils/preset.ts +2 -6
  171. package/src/utils/response.ts +15 -0
  172. package/dist/models/presets/claude.d.ts +0 -1165
  173. package/dist/models/presets/claude.js +0 -40
  174. package/dist/models/presets/cohere.d.ts +0 -383
  175. package/dist/models/presets/cohere.js +0 -26
  176. package/dist/models/presets/gpt-oss.d.ts +0 -779
  177. package/dist/models/presets/gpt-oss.js +0 -40
  178. package/dist/models/presets/llama.d.ts +0 -1400
  179. package/dist/providers/canonical/anthropic.d.ts +0 -25
  180. package/dist/providers/canonical/anthropic.js +0 -14
  181. package/dist/providers/canonical/bedrock.d.ts +0 -26
  182. package/dist/providers/canonical/cohere.d.ts +0 -17
  183. package/dist/providers/canonical/groq.d.ts +0 -17
  184. package/dist/providers/canonical/groq.js +0 -10
  185. package/dist/providers/canonical/openai.d.ts +0 -17
  186. package/dist/providers/canonical/openai.js +0 -8
  187. package/dist/providers/canonical/vertex.d.ts +0 -17
  188. package/dist/providers/canonical/vertex.js +0 -10
  189. package/dist/providers/canonical/voyage.d.ts +0 -17
  190. package/dist/providers/canonical/voyage.js +0 -8
  191. package/dist/utils/hooks.d.ts +0 -2
  192. package/src/models/presets/claude.ts +0 -59
  193. package/src/models/presets/cohere.ts +0 -37
  194. package/src/models/presets/gpt-oss.ts +0 -55
  195. package/src/providers/canonical/anthropic.ts +0 -32
  196. package/src/providers/canonical/cohere.ts +0 -36
  197. package/src/providers/canonical/groq.ts +0 -25
  198. package/src/providers/canonical/openai.ts +0 -16
  199. package/src/providers/canonical/vertex.ts +0 -18
  200. package/src/providers/canonical/voyage.ts +0 -16
  201. package/dist/models/{presets/voyage.js → voyage/presets.js} +10 -10
  202. package/src/models/{presets/voyage.ts → voyage/presets.ts} +10 -10
@@ -1,1165 +0,0 @@
1
- import type { CatalogModel } from "../types";
2
- export declare const claudeHaiku45: <const O extends {
3
- name?: string | undefined;
4
- created?: string | undefined;
5
- knowledge?: string | undefined;
6
- modalities?: {
7
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
8
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
9
- } | undefined;
10
- context?: number | undefined;
11
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
12
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
13
- readonly [x: number]: string | undefined;
14
- toString?: (() => string) | undefined;
15
- charAt?: {} | undefined;
16
- charCodeAt?: {} | undefined;
17
- concat?: {} | undefined;
18
- indexOf?: {} | undefined;
19
- lastIndexOf?: {} | undefined;
20
- localeCompare?: {} | undefined;
21
- match?: {} | undefined;
22
- replace?: {} | undefined;
23
- search?: {} | undefined;
24
- slice?: {} | undefined;
25
- split?: {} | undefined;
26
- substring?: {} | undefined;
27
- toLowerCase?: (() => string) | undefined;
28
- toLocaleLowerCase?: {} | undefined;
29
- toUpperCase?: (() => string) | undefined;
30
- toLocaleUpperCase?: {} | undefined;
31
- trim?: (() => string) | undefined;
32
- readonly length?: number | undefined;
33
- substr?: {} | undefined;
34
- valueOf?: (() => string) | undefined;
35
- codePointAt?: {} | undefined;
36
- includes?: {} | undefined;
37
- endsWith?: {} | undefined;
38
- normalize?: {} | undefined;
39
- repeat?: {} | undefined;
40
- startsWith?: {} | undefined;
41
- anchor?: {} | undefined;
42
- big?: (() => string) | undefined;
43
- blink?: (() => string) | undefined;
44
- bold?: (() => string) | undefined;
45
- fixed?: (() => string) | undefined;
46
- fontcolor?: {} | undefined;
47
- fontsize?: {} | undefined;
48
- italics?: (() => string) | undefined;
49
- link?: {} | undefined;
50
- small?: (() => string) | undefined;
51
- strike?: (() => string) | undefined;
52
- sub?: (() => string) | undefined;
53
- sup?: (() => string) | undefined;
54
- padStart?: {} | undefined;
55
- padEnd?: {} | undefined;
56
- trimEnd?: (() => string) | undefined;
57
- trimStart?: (() => string) | undefined;
58
- trimLeft?: (() => string) | undefined;
59
- trimRight?: (() => string) | undefined;
60
- matchAll?: {} | undefined;
61
- replaceAll?: {} | undefined;
62
- at?: {} | undefined;
63
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
64
- })[] | undefined;
65
- additionalProperties?: {
66
- [x: string]: unknown;
67
- } | undefined;
68
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-haiku-4.5", {
69
- modalities: {
70
- input: readonly ["text", "image", "pdf", "file"];
71
- output: readonly ["text"];
72
- };
73
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
74
- context: number;
75
- providers: readonly ["anthropic", "bedrock", "vertex"];
76
- name: string;
77
- created: string;
78
- knowledge: string;
79
- } & O>;
80
- export declare const claudeSonnet45: <const O extends {
81
- name?: string | undefined;
82
- created?: string | undefined;
83
- knowledge?: string | undefined;
84
- modalities?: {
85
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
86
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
87
- } | undefined;
88
- context?: number | undefined;
89
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
90
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
91
- readonly [x: number]: string | undefined;
92
- toString?: (() => string) | undefined;
93
- charAt?: {} | undefined;
94
- charCodeAt?: {} | undefined;
95
- concat?: {} | undefined;
96
- indexOf?: {} | undefined;
97
- lastIndexOf?: {} | undefined;
98
- localeCompare?: {} | undefined;
99
- match?: {} | undefined;
100
- replace?: {} | undefined;
101
- search?: {} | undefined;
102
- slice?: {} | undefined;
103
- split?: {} | undefined;
104
- substring?: {} | undefined;
105
- toLowerCase?: (() => string) | undefined;
106
- toLocaleLowerCase?: {} | undefined;
107
- toUpperCase?: (() => string) | undefined;
108
- toLocaleUpperCase?: {} | undefined;
109
- trim?: (() => string) | undefined;
110
- readonly length?: number | undefined;
111
- substr?: {} | undefined;
112
- valueOf?: (() => string) | undefined;
113
- codePointAt?: {} | undefined;
114
- includes?: {} | undefined;
115
- endsWith?: {} | undefined;
116
- normalize?: {} | undefined;
117
- repeat?: {} | undefined;
118
- startsWith?: {} | undefined;
119
- anchor?: {} | undefined;
120
- big?: (() => string) | undefined;
121
- blink?: (() => string) | undefined;
122
- bold?: (() => string) | undefined;
123
- fixed?: (() => string) | undefined;
124
- fontcolor?: {} | undefined;
125
- fontsize?: {} | undefined;
126
- italics?: (() => string) | undefined;
127
- link?: {} | undefined;
128
- small?: (() => string) | undefined;
129
- strike?: (() => string) | undefined;
130
- sub?: (() => string) | undefined;
131
- sup?: (() => string) | undefined;
132
- padStart?: {} | undefined;
133
- padEnd?: {} | undefined;
134
- trimEnd?: (() => string) | undefined;
135
- trimStart?: (() => string) | undefined;
136
- trimLeft?: (() => string) | undefined;
137
- trimRight?: (() => string) | undefined;
138
- matchAll?: {} | undefined;
139
- replaceAll?: {} | undefined;
140
- at?: {} | undefined;
141
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
142
- })[] | undefined;
143
- additionalProperties?: {
144
- [x: string]: unknown;
145
- } | undefined;
146
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-sonnet-4.5", {
147
- modalities: {
148
- input: readonly ["text", "image", "pdf", "file"];
149
- output: readonly ["text"];
150
- };
151
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
152
- context: number;
153
- providers: readonly ["anthropic", "bedrock", "vertex"];
154
- name: string;
155
- created: string;
156
- knowledge: string;
157
- } & O>;
158
- export declare const claudeOpus45: <const O extends {
159
- name?: string | undefined;
160
- created?: string | undefined;
161
- knowledge?: string | undefined;
162
- modalities?: {
163
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
164
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
165
- } | undefined;
166
- context?: number | undefined;
167
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
168
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
169
- readonly [x: number]: string | undefined;
170
- toString?: (() => string) | undefined;
171
- charAt?: {} | undefined;
172
- charCodeAt?: {} | undefined;
173
- concat?: {} | undefined;
174
- indexOf?: {} | undefined;
175
- lastIndexOf?: {} | undefined;
176
- localeCompare?: {} | undefined;
177
- match?: {} | undefined;
178
- replace?: {} | undefined;
179
- search?: {} | undefined;
180
- slice?: {} | undefined;
181
- split?: {} | undefined;
182
- substring?: {} | undefined;
183
- toLowerCase?: (() => string) | undefined;
184
- toLocaleLowerCase?: {} | undefined;
185
- toUpperCase?: (() => string) | undefined;
186
- toLocaleUpperCase?: {} | undefined;
187
- trim?: (() => string) | undefined;
188
- readonly length?: number | undefined;
189
- substr?: {} | undefined;
190
- valueOf?: (() => string) | undefined;
191
- codePointAt?: {} | undefined;
192
- includes?: {} | undefined;
193
- endsWith?: {} | undefined;
194
- normalize?: {} | undefined;
195
- repeat?: {} | undefined;
196
- startsWith?: {} | undefined;
197
- anchor?: {} | undefined;
198
- big?: (() => string) | undefined;
199
- blink?: (() => string) | undefined;
200
- bold?: (() => string) | undefined;
201
- fixed?: (() => string) | undefined;
202
- fontcolor?: {} | undefined;
203
- fontsize?: {} | undefined;
204
- italics?: (() => string) | undefined;
205
- link?: {} | undefined;
206
- small?: (() => string) | undefined;
207
- strike?: (() => string) | undefined;
208
- sub?: (() => string) | undefined;
209
- sup?: (() => string) | undefined;
210
- padStart?: {} | undefined;
211
- padEnd?: {} | undefined;
212
- trimEnd?: (() => string) | undefined;
213
- trimStart?: (() => string) | undefined;
214
- trimLeft?: (() => string) | undefined;
215
- trimRight?: (() => string) | undefined;
216
- matchAll?: {} | undefined;
217
- replaceAll?: {} | undefined;
218
- at?: {} | undefined;
219
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
220
- })[] | undefined;
221
- additionalProperties?: {
222
- [x: string]: unknown;
223
- } | undefined;
224
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-opus-4.5", {
225
- modalities: {
226
- input: readonly ["text", "image", "pdf", "file"];
227
- output: readonly ["text"];
228
- };
229
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
230
- context: number;
231
- providers: readonly ["anthropic", "bedrock", "vertex"];
232
- name: string;
233
- created: string;
234
- knowledge: string;
235
- } & O>;
236
- export declare const claude: {
237
- readonly latest: readonly [<const O extends {
238
- name?: string | undefined;
239
- created?: string | undefined;
240
- knowledge?: string | undefined;
241
- modalities?: {
242
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
243
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
244
- } | undefined;
245
- context?: number | undefined;
246
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
247
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
248
- readonly [x: number]: string | undefined;
249
- toString?: (() => string) | undefined;
250
- charAt?: {} | undefined;
251
- charCodeAt?: {} | undefined;
252
- concat?: {} | undefined;
253
- indexOf?: {} | undefined;
254
- lastIndexOf?: {} | undefined;
255
- localeCompare?: {} | undefined;
256
- match?: {} | undefined;
257
- replace?: {} | undefined;
258
- search?: {} | undefined;
259
- slice?: {} | undefined;
260
- split?: {} | undefined;
261
- substring?: {} | undefined;
262
- toLowerCase?: (() => string) | undefined;
263
- toLocaleLowerCase?: {} | undefined;
264
- toUpperCase?: (() => string) | undefined;
265
- toLocaleUpperCase?: {} | undefined;
266
- trim?: (() => string) | undefined;
267
- readonly length?: number | undefined;
268
- substr?: {} | undefined;
269
- valueOf?: (() => string) | undefined;
270
- codePointAt?: {} | undefined;
271
- includes?: {} | undefined;
272
- endsWith?: {} | undefined;
273
- normalize?: {} | undefined;
274
- repeat?: {} | undefined;
275
- startsWith?: {} | undefined;
276
- anchor?: {} | undefined;
277
- big?: (() => string) | undefined;
278
- blink?: (() => string) | undefined;
279
- bold?: (() => string) | undefined;
280
- fixed?: (() => string) | undefined;
281
- fontcolor?: {} | undefined;
282
- fontsize?: {} | undefined;
283
- italics?: (() => string) | undefined;
284
- link?: {} | undefined;
285
- small?: (() => string) | undefined;
286
- strike?: (() => string) | undefined;
287
- sub?: (() => string) | undefined;
288
- sup?: (() => string) | undefined;
289
- padStart?: {} | undefined;
290
- padEnd?: {} | undefined;
291
- trimEnd?: (() => string) | undefined;
292
- trimStart?: (() => string) | undefined;
293
- trimLeft?: (() => string) | undefined;
294
- trimRight?: (() => string) | undefined;
295
- matchAll?: {} | undefined;
296
- replaceAll?: {} | undefined;
297
- at?: {} | undefined;
298
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
299
- })[] | undefined;
300
- additionalProperties?: {
301
- [x: string]: unknown;
302
- } | undefined;
303
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-haiku-4.5", {
304
- modalities: {
305
- input: readonly ["text", "image", "pdf", "file"];
306
- output: readonly ["text"];
307
- };
308
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
309
- context: number;
310
- providers: readonly ["anthropic", "bedrock", "vertex"];
311
- name: string;
312
- created: string;
313
- knowledge: string;
314
- } & O>, <const O extends {
315
- name?: string | undefined;
316
- created?: string | undefined;
317
- knowledge?: string | undefined;
318
- modalities?: {
319
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
320
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
321
- } | undefined;
322
- context?: number | undefined;
323
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
324
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
325
- readonly [x: number]: string | undefined;
326
- toString?: (() => string) | undefined;
327
- charAt?: {} | undefined;
328
- charCodeAt?: {} | undefined;
329
- concat?: {} | undefined;
330
- indexOf?: {} | undefined;
331
- lastIndexOf?: {} | undefined;
332
- localeCompare?: {} | undefined;
333
- match?: {} | undefined;
334
- replace?: {} | undefined;
335
- search?: {} | undefined;
336
- slice?: {} | undefined;
337
- split?: {} | undefined;
338
- substring?: {} | undefined;
339
- toLowerCase?: (() => string) | undefined;
340
- toLocaleLowerCase?: {} | undefined;
341
- toUpperCase?: (() => string) | undefined;
342
- toLocaleUpperCase?: {} | undefined;
343
- trim?: (() => string) | undefined;
344
- readonly length?: number | undefined;
345
- substr?: {} | undefined;
346
- valueOf?: (() => string) | undefined;
347
- codePointAt?: {} | undefined;
348
- includes?: {} | undefined;
349
- endsWith?: {} | undefined;
350
- normalize?: {} | undefined;
351
- repeat?: {} | undefined;
352
- startsWith?: {} | undefined;
353
- anchor?: {} | undefined;
354
- big?: (() => string) | undefined;
355
- blink?: (() => string) | undefined;
356
- bold?: (() => string) | undefined;
357
- fixed?: (() => string) | undefined;
358
- fontcolor?: {} | undefined;
359
- fontsize?: {} | undefined;
360
- italics?: (() => string) | undefined;
361
- link?: {} | undefined;
362
- small?: (() => string) | undefined;
363
- strike?: (() => string) | undefined;
364
- sub?: (() => string) | undefined;
365
- sup?: (() => string) | undefined;
366
- padStart?: {} | undefined;
367
- padEnd?: {} | undefined;
368
- trimEnd?: (() => string) | undefined;
369
- trimStart?: (() => string) | undefined;
370
- trimLeft?: (() => string) | undefined;
371
- trimRight?: (() => string) | undefined;
372
- matchAll?: {} | undefined;
373
- replaceAll?: {} | undefined;
374
- at?: {} | undefined;
375
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
376
- })[] | undefined;
377
- additionalProperties?: {
378
- [x: string]: unknown;
379
- } | undefined;
380
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-sonnet-4.5", {
381
- modalities: {
382
- input: readonly ["text", "image", "pdf", "file"];
383
- output: readonly ["text"];
384
- };
385
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
386
- context: number;
387
- providers: readonly ["anthropic", "bedrock", "vertex"];
388
- name: string;
389
- created: string;
390
- knowledge: string;
391
- } & O>, <const O extends {
392
- name?: string | undefined;
393
- created?: string | undefined;
394
- knowledge?: string | undefined;
395
- modalities?: {
396
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
397
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
398
- } | undefined;
399
- context?: number | undefined;
400
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
401
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
402
- readonly [x: number]: string | undefined;
403
- toString?: (() => string) | undefined;
404
- charAt?: {} | undefined;
405
- charCodeAt?: {} | undefined;
406
- concat?: {} | undefined;
407
- indexOf?: {} | undefined;
408
- lastIndexOf?: {} | undefined;
409
- localeCompare?: {} | undefined;
410
- match?: {} | undefined;
411
- replace?: {} | undefined;
412
- search?: {} | undefined;
413
- slice?: {} | undefined;
414
- split?: {} | undefined;
415
- substring?: {} | undefined;
416
- toLowerCase?: (() => string) | undefined;
417
- toLocaleLowerCase?: {} | undefined;
418
- toUpperCase?: (() => string) | undefined;
419
- toLocaleUpperCase?: {} | undefined;
420
- trim?: (() => string) | undefined;
421
- readonly length?: number | undefined;
422
- substr?: {} | undefined;
423
- valueOf?: (() => string) | undefined;
424
- codePointAt?: {} | undefined;
425
- includes?: {} | undefined;
426
- endsWith?: {} | undefined;
427
- normalize?: {} | undefined;
428
- repeat?: {} | undefined;
429
- startsWith?: {} | undefined;
430
- anchor?: {} | undefined;
431
- big?: (() => string) | undefined;
432
- blink?: (() => string) | undefined;
433
- bold?: (() => string) | undefined;
434
- fixed?: (() => string) | undefined;
435
- fontcolor?: {} | undefined;
436
- fontsize?: {} | undefined;
437
- italics?: (() => string) | undefined;
438
- link?: {} | undefined;
439
- small?: (() => string) | undefined;
440
- strike?: (() => string) | undefined;
441
- sub?: (() => string) | undefined;
442
- sup?: (() => string) | undefined;
443
- padStart?: {} | undefined;
444
- padEnd?: {} | undefined;
445
- trimEnd?: (() => string) | undefined;
446
- trimStart?: (() => string) | undefined;
447
- trimLeft?: (() => string) | undefined;
448
- trimRight?: (() => string) | undefined;
449
- matchAll?: {} | undefined;
450
- replaceAll?: {} | undefined;
451
- at?: {} | undefined;
452
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
453
- })[] | undefined;
454
- additionalProperties?: {
455
- [x: string]: unknown;
456
- } | undefined;
457
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-opus-4.5", {
458
- modalities: {
459
- input: readonly ["text", "image", "pdf", "file"];
460
- output: readonly ["text"];
461
- };
462
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
463
- context: number;
464
- providers: readonly ["anthropic", "bedrock", "vertex"];
465
- name: string;
466
- created: string;
467
- knowledge: string;
468
- } & O>];
469
- readonly all: ((<const O extends {
470
- name?: string | undefined;
471
- created?: string | undefined;
472
- knowledge?: string | undefined;
473
- modalities?: {
474
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
475
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
476
- } | undefined;
477
- context?: number | undefined;
478
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
479
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
480
- readonly [x: number]: string | undefined;
481
- toString?: (() => string) | undefined;
482
- charAt?: {} | undefined;
483
- charCodeAt?: {} | undefined;
484
- concat?: {} | undefined;
485
- indexOf?: {} | undefined;
486
- lastIndexOf?: {} | undefined;
487
- localeCompare?: {} | undefined;
488
- match?: {} | undefined;
489
- replace?: {} | undefined;
490
- search?: {} | undefined;
491
- slice?: {} | undefined;
492
- split?: {} | undefined;
493
- substring?: {} | undefined;
494
- toLowerCase?: (() => string) | undefined;
495
- toLocaleLowerCase?: {} | undefined;
496
- toUpperCase?: (() => string) | undefined;
497
- toLocaleUpperCase?: {} | undefined;
498
- trim?: (() => string) | undefined;
499
- readonly length?: number | undefined;
500
- substr?: {} | undefined;
501
- valueOf?: (() => string) | undefined;
502
- codePointAt?: {} | undefined;
503
- includes?: {} | undefined;
504
- endsWith?: {} | undefined;
505
- normalize?: {} | undefined;
506
- repeat?: {} | undefined;
507
- startsWith?: {} | undefined;
508
- anchor?: {} | undefined;
509
- big?: (() => string) | undefined;
510
- blink?: (() => string) | undefined;
511
- bold?: (() => string) | undefined;
512
- fixed?: (() => string) | undefined;
513
- fontcolor?: {} | undefined;
514
- fontsize?: {} | undefined;
515
- italics?: (() => string) | undefined;
516
- link?: {} | undefined;
517
- small?: (() => string) | undefined;
518
- strike?: (() => string) | undefined;
519
- sub?: (() => string) | undefined;
520
- sup?: (() => string) | undefined;
521
- padStart?: {} | undefined;
522
- padEnd?: {} | undefined;
523
- trimEnd?: (() => string) | undefined;
524
- trimStart?: (() => string) | undefined;
525
- trimLeft?: (() => string) | undefined;
526
- trimRight?: (() => string) | undefined;
527
- matchAll?: {} | undefined;
528
- replaceAll?: {} | undefined;
529
- at?: {} | undefined;
530
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
531
- })[] | undefined;
532
- additionalProperties?: {
533
- [x: string]: unknown;
534
- } | undefined;
535
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-haiku-4.5", {
536
- modalities: {
537
- input: readonly ["text", "image", "pdf", "file"];
538
- output: readonly ["text"];
539
- };
540
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
541
- context: number;
542
- providers: readonly ["anthropic", "bedrock", "vertex"];
543
- name: string;
544
- created: string;
545
- knowledge: string;
546
- } & O>) | (<const O extends {
547
- name?: string | undefined;
548
- created?: string | undefined;
549
- knowledge?: string | undefined;
550
- modalities?: {
551
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
552
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
553
- } | undefined;
554
- context?: number | undefined;
555
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
556
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
557
- readonly [x: number]: string | undefined;
558
- toString?: (() => string) | undefined;
559
- charAt?: {} | undefined;
560
- charCodeAt?: {} | undefined;
561
- concat?: {} | undefined;
562
- indexOf?: {} | undefined;
563
- lastIndexOf?: {} | undefined;
564
- localeCompare?: {} | undefined;
565
- match?: {} | undefined;
566
- replace?: {} | undefined;
567
- search?: {} | undefined;
568
- slice?: {} | undefined;
569
- split?: {} | undefined;
570
- substring?: {} | undefined;
571
- toLowerCase?: (() => string) | undefined;
572
- toLocaleLowerCase?: {} | undefined;
573
- toUpperCase?: (() => string) | undefined;
574
- toLocaleUpperCase?: {} | undefined;
575
- trim?: (() => string) | undefined;
576
- readonly length?: number | undefined;
577
- substr?: {} | undefined;
578
- valueOf?: (() => string) | undefined;
579
- codePointAt?: {} | undefined;
580
- includes?: {} | undefined;
581
- endsWith?: {} | undefined;
582
- normalize?: {} | undefined;
583
- repeat?: {} | undefined;
584
- startsWith?: {} | undefined;
585
- anchor?: {} | undefined;
586
- big?: (() => string) | undefined;
587
- blink?: (() => string) | undefined;
588
- bold?: (() => string) | undefined;
589
- fixed?: (() => string) | undefined;
590
- fontcolor?: {} | undefined;
591
- fontsize?: {} | undefined;
592
- italics?: (() => string) | undefined;
593
- link?: {} | undefined;
594
- small?: (() => string) | undefined;
595
- strike?: (() => string) | undefined;
596
- sub?: (() => string) | undefined;
597
- sup?: (() => string) | undefined;
598
- padStart?: {} | undefined;
599
- padEnd?: {} | undefined;
600
- trimEnd?: (() => string) | undefined;
601
- trimStart?: (() => string) | undefined;
602
- trimLeft?: (() => string) | undefined;
603
- trimRight?: (() => string) | undefined;
604
- matchAll?: {} | undefined;
605
- replaceAll?: {} | undefined;
606
- at?: {} | undefined;
607
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
608
- })[] | undefined;
609
- additionalProperties?: {
610
- [x: string]: unknown;
611
- } | undefined;
612
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-sonnet-4.5", {
613
- modalities: {
614
- input: readonly ["text", "image", "pdf", "file"];
615
- output: readonly ["text"];
616
- };
617
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
618
- context: number;
619
- providers: readonly ["anthropic", "bedrock", "vertex"];
620
- name: string;
621
- created: string;
622
- knowledge: string;
623
- } & O>) | (<const O extends {
624
- name?: string | undefined;
625
- created?: string | undefined;
626
- knowledge?: string | undefined;
627
- modalities?: {
628
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
629
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
630
- } | undefined;
631
- context?: number | undefined;
632
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
633
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
634
- readonly [x: number]: string | undefined;
635
- toString?: (() => string) | undefined;
636
- charAt?: {} | undefined;
637
- charCodeAt?: {} | undefined;
638
- concat?: {} | undefined;
639
- indexOf?: {} | undefined;
640
- lastIndexOf?: {} | undefined;
641
- localeCompare?: {} | undefined;
642
- match?: {} | undefined;
643
- replace?: {} | undefined;
644
- search?: {} | undefined;
645
- slice?: {} | undefined;
646
- split?: {} | undefined;
647
- substring?: {} | undefined;
648
- toLowerCase?: (() => string) | undefined;
649
- toLocaleLowerCase?: {} | undefined;
650
- toUpperCase?: (() => string) | undefined;
651
- toLocaleUpperCase?: {} | undefined;
652
- trim?: (() => string) | undefined;
653
- readonly length?: number | undefined;
654
- substr?: {} | undefined;
655
- valueOf?: (() => string) | undefined;
656
- codePointAt?: {} | undefined;
657
- includes?: {} | undefined;
658
- endsWith?: {} | undefined;
659
- normalize?: {} | undefined;
660
- repeat?: {} | undefined;
661
- startsWith?: {} | undefined;
662
- anchor?: {} | undefined;
663
- big?: (() => string) | undefined;
664
- blink?: (() => string) | undefined;
665
- bold?: (() => string) | undefined;
666
- fixed?: (() => string) | undefined;
667
- fontcolor?: {} | undefined;
668
- fontsize?: {} | undefined;
669
- italics?: (() => string) | undefined;
670
- link?: {} | undefined;
671
- small?: (() => string) | undefined;
672
- strike?: (() => string) | undefined;
673
- sub?: (() => string) | undefined;
674
- sup?: (() => string) | undefined;
675
- padStart?: {} | undefined;
676
- padEnd?: {} | undefined;
677
- trimEnd?: (() => string) | undefined;
678
- trimStart?: (() => string) | undefined;
679
- trimLeft?: (() => string) | undefined;
680
- trimRight?: (() => string) | undefined;
681
- matchAll?: {} | undefined;
682
- replaceAll?: {} | undefined;
683
- at?: {} | undefined;
684
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
685
- })[] | undefined;
686
- additionalProperties?: {
687
- [x: string]: unknown;
688
- } | undefined;
689
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-opus-4.5", {
690
- modalities: {
691
- input: readonly ["text", "image", "pdf", "file"];
692
- output: readonly ["text"];
693
- };
694
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
695
- context: number;
696
- providers: readonly ["anthropic", "bedrock", "vertex"];
697
- name: string;
698
- created: string;
699
- knowledge: string;
700
- } & O>))[];
701
- readonly "v4.x": readonly [<const O extends {
702
- name?: string | undefined;
703
- created?: string | undefined;
704
- knowledge?: string | undefined;
705
- modalities?: {
706
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
707
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
708
- } | undefined;
709
- context?: number | undefined;
710
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
711
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
712
- readonly [x: number]: string | undefined;
713
- toString?: (() => string) | undefined;
714
- charAt?: {} | undefined;
715
- charCodeAt?: {} | undefined;
716
- concat?: {} | undefined;
717
- indexOf?: {} | undefined;
718
- lastIndexOf?: {} | undefined;
719
- localeCompare?: {} | undefined;
720
- match?: {} | undefined;
721
- replace?: {} | undefined;
722
- search?: {} | undefined;
723
- slice?: {} | undefined;
724
- split?: {} | undefined;
725
- substring?: {} | undefined;
726
- toLowerCase?: (() => string) | undefined;
727
- toLocaleLowerCase?: {} | undefined;
728
- toUpperCase?: (() => string) | undefined;
729
- toLocaleUpperCase?: {} | undefined;
730
- trim?: (() => string) | undefined;
731
- readonly length?: number | undefined;
732
- substr?: {} | undefined;
733
- valueOf?: (() => string) | undefined;
734
- codePointAt?: {} | undefined;
735
- includes?: {} | undefined;
736
- endsWith?: {} | undefined;
737
- normalize?: {} | undefined;
738
- repeat?: {} | undefined;
739
- startsWith?: {} | undefined;
740
- anchor?: {} | undefined;
741
- big?: (() => string) | undefined;
742
- blink?: (() => string) | undefined;
743
- bold?: (() => string) | undefined;
744
- fixed?: (() => string) | undefined;
745
- fontcolor?: {} | undefined;
746
- fontsize?: {} | undefined;
747
- italics?: (() => string) | undefined;
748
- link?: {} | undefined;
749
- small?: (() => string) | undefined;
750
- strike?: (() => string) | undefined;
751
- sub?: (() => string) | undefined;
752
- sup?: (() => string) | undefined;
753
- padStart?: {} | undefined;
754
- padEnd?: {} | undefined;
755
- trimEnd?: (() => string) | undefined;
756
- trimStart?: (() => string) | undefined;
757
- trimLeft?: (() => string) | undefined;
758
- trimRight?: (() => string) | undefined;
759
- matchAll?: {} | undefined;
760
- replaceAll?: {} | undefined;
761
- at?: {} | undefined;
762
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
763
- })[] | undefined;
764
- additionalProperties?: {
765
- [x: string]: unknown;
766
- } | undefined;
767
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-haiku-4.5", {
768
- modalities: {
769
- input: readonly ["text", "image", "pdf", "file"];
770
- output: readonly ["text"];
771
- };
772
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
773
- context: number;
774
- providers: readonly ["anthropic", "bedrock", "vertex"];
775
- name: string;
776
- created: string;
777
- knowledge: string;
778
- } & O>, <const O extends {
779
- name?: string | undefined;
780
- created?: string | undefined;
781
- knowledge?: string | undefined;
782
- modalities?: {
783
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
784
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
785
- } | undefined;
786
- context?: number | undefined;
787
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
788
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
789
- readonly [x: number]: string | undefined;
790
- toString?: (() => string) | undefined;
791
- charAt?: {} | undefined;
792
- charCodeAt?: {} | undefined;
793
- concat?: {} | undefined;
794
- indexOf?: {} | undefined;
795
- lastIndexOf?: {} | undefined;
796
- localeCompare?: {} | undefined;
797
- match?: {} | undefined;
798
- replace?: {} | undefined;
799
- search?: {} | undefined;
800
- slice?: {} | undefined;
801
- split?: {} | undefined;
802
- substring?: {} | undefined;
803
- toLowerCase?: (() => string) | undefined;
804
- toLocaleLowerCase?: {} | undefined;
805
- toUpperCase?: (() => string) | undefined;
806
- toLocaleUpperCase?: {} | undefined;
807
- trim?: (() => string) | undefined;
808
- readonly length?: number | undefined;
809
- substr?: {} | undefined;
810
- valueOf?: (() => string) | undefined;
811
- codePointAt?: {} | undefined;
812
- includes?: {} | undefined;
813
- endsWith?: {} | undefined;
814
- normalize?: {} | undefined;
815
- repeat?: {} | undefined;
816
- startsWith?: {} | undefined;
817
- anchor?: {} | undefined;
818
- big?: (() => string) | undefined;
819
- blink?: (() => string) | undefined;
820
- bold?: (() => string) | undefined;
821
- fixed?: (() => string) | undefined;
822
- fontcolor?: {} | undefined;
823
- fontsize?: {} | undefined;
824
- italics?: (() => string) | undefined;
825
- link?: {} | undefined;
826
- small?: (() => string) | undefined;
827
- strike?: (() => string) | undefined;
828
- sub?: (() => string) | undefined;
829
- sup?: (() => string) | undefined;
830
- padStart?: {} | undefined;
831
- padEnd?: {} | undefined;
832
- trimEnd?: (() => string) | undefined;
833
- trimStart?: (() => string) | undefined;
834
- trimLeft?: (() => string) | undefined;
835
- trimRight?: (() => string) | undefined;
836
- matchAll?: {} | undefined;
837
- replaceAll?: {} | undefined;
838
- at?: {} | undefined;
839
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
840
- })[] | undefined;
841
- additionalProperties?: {
842
- [x: string]: unknown;
843
- } | undefined;
844
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-sonnet-4.5", {
845
- modalities: {
846
- input: readonly ["text", "image", "pdf", "file"];
847
- output: readonly ["text"];
848
- };
849
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
850
- context: number;
851
- providers: readonly ["anthropic", "bedrock", "vertex"];
852
- name: string;
853
- created: string;
854
- knowledge: string;
855
- } & O>, <const O extends {
856
- name?: string | undefined;
857
- created?: string | undefined;
858
- knowledge?: string | undefined;
859
- modalities?: {
860
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
861
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
862
- } | undefined;
863
- context?: number | undefined;
864
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
865
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
866
- readonly [x: number]: string | undefined;
867
- toString?: (() => string) | undefined;
868
- charAt?: {} | undefined;
869
- charCodeAt?: {} | undefined;
870
- concat?: {} | undefined;
871
- indexOf?: {} | undefined;
872
- lastIndexOf?: {} | undefined;
873
- localeCompare?: {} | undefined;
874
- match?: {} | undefined;
875
- replace?: {} | undefined;
876
- search?: {} | undefined;
877
- slice?: {} | undefined;
878
- split?: {} | undefined;
879
- substring?: {} | undefined;
880
- toLowerCase?: (() => string) | undefined;
881
- toLocaleLowerCase?: {} | undefined;
882
- toUpperCase?: (() => string) | undefined;
883
- toLocaleUpperCase?: {} | undefined;
884
- trim?: (() => string) | undefined;
885
- readonly length?: number | undefined;
886
- substr?: {} | undefined;
887
- valueOf?: (() => string) | undefined;
888
- codePointAt?: {} | undefined;
889
- includes?: {} | undefined;
890
- endsWith?: {} | undefined;
891
- normalize?: {} | undefined;
892
- repeat?: {} | undefined;
893
- startsWith?: {} | undefined;
894
- anchor?: {} | undefined;
895
- big?: (() => string) | undefined;
896
- blink?: (() => string) | undefined;
897
- bold?: (() => string) | undefined;
898
- fixed?: (() => string) | undefined;
899
- fontcolor?: {} | undefined;
900
- fontsize?: {} | undefined;
901
- italics?: (() => string) | undefined;
902
- link?: {} | undefined;
903
- small?: (() => string) | undefined;
904
- strike?: (() => string) | undefined;
905
- sub?: (() => string) | undefined;
906
- sup?: (() => string) | undefined;
907
- padStart?: {} | undefined;
908
- padEnd?: {} | undefined;
909
- trimEnd?: (() => string) | undefined;
910
- trimStart?: (() => string) | undefined;
911
- trimLeft?: (() => string) | undefined;
912
- trimRight?: (() => string) | undefined;
913
- matchAll?: {} | undefined;
914
- replaceAll?: {} | undefined;
915
- at?: {} | undefined;
916
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
917
- })[] | undefined;
918
- additionalProperties?: {
919
- [x: string]: unknown;
920
- } | undefined;
921
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-opus-4.5", {
922
- modalities: {
923
- input: readonly ["text", "image", "pdf", "file"];
924
- output: readonly ["text"];
925
- };
926
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
927
- context: number;
928
- providers: readonly ["anthropic", "bedrock", "vertex"];
929
- name: string;
930
- created: string;
931
- knowledge: string;
932
- } & O>];
933
- readonly "v4.5": readonly [<const O extends {
934
- name?: string | undefined;
935
- created?: string | undefined;
936
- knowledge?: string | undefined;
937
- modalities?: {
938
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
939
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
940
- } | undefined;
941
- context?: number | undefined;
942
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
943
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
944
- readonly [x: number]: string | undefined;
945
- toString?: (() => string) | undefined;
946
- charAt?: {} | undefined;
947
- charCodeAt?: {} | undefined;
948
- concat?: {} | undefined;
949
- indexOf?: {} | undefined;
950
- lastIndexOf?: {} | undefined;
951
- localeCompare?: {} | undefined;
952
- match?: {} | undefined;
953
- replace?: {} | undefined;
954
- search?: {} | undefined;
955
- slice?: {} | undefined;
956
- split?: {} | undefined;
957
- substring?: {} | undefined;
958
- toLowerCase?: (() => string) | undefined;
959
- toLocaleLowerCase?: {} | undefined;
960
- toUpperCase?: (() => string) | undefined;
961
- toLocaleUpperCase?: {} | undefined;
962
- trim?: (() => string) | undefined;
963
- readonly length?: number | undefined;
964
- substr?: {} | undefined;
965
- valueOf?: (() => string) | undefined;
966
- codePointAt?: {} | undefined;
967
- includes?: {} | undefined;
968
- endsWith?: {} | undefined;
969
- normalize?: {} | undefined;
970
- repeat?: {} | undefined;
971
- startsWith?: {} | undefined;
972
- anchor?: {} | undefined;
973
- big?: (() => string) | undefined;
974
- blink?: (() => string) | undefined;
975
- bold?: (() => string) | undefined;
976
- fixed?: (() => string) | undefined;
977
- fontcolor?: {} | undefined;
978
- fontsize?: {} | undefined;
979
- italics?: (() => string) | undefined;
980
- link?: {} | undefined;
981
- small?: (() => string) | undefined;
982
- strike?: (() => string) | undefined;
983
- sub?: (() => string) | undefined;
984
- sup?: (() => string) | undefined;
985
- padStart?: {} | undefined;
986
- padEnd?: {} | undefined;
987
- trimEnd?: (() => string) | undefined;
988
- trimStart?: (() => string) | undefined;
989
- trimLeft?: (() => string) | undefined;
990
- trimRight?: (() => string) | undefined;
991
- matchAll?: {} | undefined;
992
- replaceAll?: {} | undefined;
993
- at?: {} | undefined;
994
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
995
- })[] | undefined;
996
- additionalProperties?: {
997
- [x: string]: unknown;
998
- } | undefined;
999
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-haiku-4.5", {
1000
- modalities: {
1001
- input: readonly ["text", "image", "pdf", "file"];
1002
- output: readonly ["text"];
1003
- };
1004
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
1005
- context: number;
1006
- providers: readonly ["anthropic", "bedrock", "vertex"];
1007
- name: string;
1008
- created: string;
1009
- knowledge: string;
1010
- } & O>, <const O extends {
1011
- name?: string | undefined;
1012
- created?: string | undefined;
1013
- knowledge?: string | undefined;
1014
- modalities?: {
1015
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
1016
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1017
- } | undefined;
1018
- context?: number | undefined;
1019
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
1020
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1021
- readonly [x: number]: string | undefined;
1022
- toString?: (() => string) | undefined;
1023
- charAt?: {} | undefined;
1024
- charCodeAt?: {} | undefined;
1025
- concat?: {} | undefined;
1026
- indexOf?: {} | undefined;
1027
- lastIndexOf?: {} | undefined;
1028
- localeCompare?: {} | undefined;
1029
- match?: {} | undefined;
1030
- replace?: {} | undefined;
1031
- search?: {} | undefined;
1032
- slice?: {} | undefined;
1033
- split?: {} | undefined;
1034
- substring?: {} | undefined;
1035
- toLowerCase?: (() => string) | undefined;
1036
- toLocaleLowerCase?: {} | undefined;
1037
- toUpperCase?: (() => string) | undefined;
1038
- toLocaleUpperCase?: {} | undefined;
1039
- trim?: (() => string) | undefined;
1040
- readonly length?: number | undefined;
1041
- substr?: {} | undefined;
1042
- valueOf?: (() => string) | undefined;
1043
- codePointAt?: {} | undefined;
1044
- includes?: {} | undefined;
1045
- endsWith?: {} | undefined;
1046
- normalize?: {} | undefined;
1047
- repeat?: {} | undefined;
1048
- startsWith?: {} | undefined;
1049
- anchor?: {} | undefined;
1050
- big?: (() => string) | undefined;
1051
- blink?: (() => string) | undefined;
1052
- bold?: (() => string) | undefined;
1053
- fixed?: (() => string) | undefined;
1054
- fontcolor?: {} | undefined;
1055
- fontsize?: {} | undefined;
1056
- italics?: (() => string) | undefined;
1057
- link?: {} | undefined;
1058
- small?: (() => string) | undefined;
1059
- strike?: (() => string) | undefined;
1060
- sub?: (() => string) | undefined;
1061
- sup?: (() => string) | undefined;
1062
- padStart?: {} | undefined;
1063
- padEnd?: {} | undefined;
1064
- trimEnd?: (() => string) | undefined;
1065
- trimStart?: (() => string) | undefined;
1066
- trimLeft?: (() => string) | undefined;
1067
- trimRight?: (() => string) | undefined;
1068
- matchAll?: {} | undefined;
1069
- replaceAll?: {} | undefined;
1070
- at?: {} | undefined;
1071
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1072
- })[] | undefined;
1073
- additionalProperties?: {
1074
- [x: string]: unknown;
1075
- } | undefined;
1076
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-sonnet-4.5", {
1077
- modalities: {
1078
- input: readonly ["text", "image", "pdf", "file"];
1079
- output: readonly ["text"];
1080
- };
1081
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
1082
- context: number;
1083
- providers: readonly ["anthropic", "bedrock", "vertex"];
1084
- name: string;
1085
- created: string;
1086
- knowledge: string;
1087
- } & O>, <const O extends {
1088
- name?: string | undefined;
1089
- created?: string | undefined;
1090
- knowledge?: string | undefined;
1091
- modalities?: {
1092
- input?: readonly ("text" | "image" | "file" | "audio" | "video" | "pdf")[] | undefined;
1093
- output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1094
- } | undefined;
1095
- context?: number | undefined;
1096
- capabilities?: readonly ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[] | undefined;
1097
- providers?: readonly ("anthropic" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1098
- readonly [x: number]: string | undefined;
1099
- toString?: (() => string) | undefined;
1100
- charAt?: {} | undefined;
1101
- charCodeAt?: {} | undefined;
1102
- concat?: {} | undefined;
1103
- indexOf?: {} | undefined;
1104
- lastIndexOf?: {} | undefined;
1105
- localeCompare?: {} | undefined;
1106
- match?: {} | undefined;
1107
- replace?: {} | undefined;
1108
- search?: {} | undefined;
1109
- slice?: {} | undefined;
1110
- split?: {} | undefined;
1111
- substring?: {} | undefined;
1112
- toLowerCase?: (() => string) | undefined;
1113
- toLocaleLowerCase?: {} | undefined;
1114
- toUpperCase?: (() => string) | undefined;
1115
- toLocaleUpperCase?: {} | undefined;
1116
- trim?: (() => string) | undefined;
1117
- readonly length?: number | undefined;
1118
- substr?: {} | undefined;
1119
- valueOf?: (() => string) | undefined;
1120
- codePointAt?: {} | undefined;
1121
- includes?: {} | undefined;
1122
- endsWith?: {} | undefined;
1123
- normalize?: {} | undefined;
1124
- repeat?: {} | undefined;
1125
- startsWith?: {} | undefined;
1126
- anchor?: {} | undefined;
1127
- big?: (() => string) | undefined;
1128
- blink?: (() => string) | undefined;
1129
- bold?: (() => string) | undefined;
1130
- fixed?: (() => string) | undefined;
1131
- fontcolor?: {} | undefined;
1132
- fontsize?: {} | undefined;
1133
- italics?: (() => string) | undefined;
1134
- link?: {} | undefined;
1135
- small?: (() => string) | undefined;
1136
- strike?: (() => string) | undefined;
1137
- sub?: (() => string) | undefined;
1138
- sup?: (() => string) | undefined;
1139
- padStart?: {} | undefined;
1140
- padEnd?: {} | undefined;
1141
- trimEnd?: (() => string) | undefined;
1142
- trimStart?: (() => string) | undefined;
1143
- trimLeft?: (() => string) | undefined;
1144
- trimRight?: (() => string) | undefined;
1145
- matchAll?: {} | undefined;
1146
- replaceAll?: {} | undefined;
1147
- at?: {} | undefined;
1148
- [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1149
- })[] | undefined;
1150
- additionalProperties?: {
1151
- [x: string]: unknown;
1152
- } | undefined;
1153
- } & Pick<CatalogModel, never>>(override: O) => Record<"anthropic/claude-opus-4.5", {
1154
- modalities: {
1155
- input: readonly ["text", "image", "pdf", "file"];
1156
- output: readonly ["text"];
1157
- };
1158
- capabilities: ("attachments" | "reasoning" | "tool_call" | "structured_output" | "temperature")[];
1159
- context: number;
1160
- providers: readonly ["anthropic", "bedrock", "vertex"];
1161
- name: string;
1162
- created: string;
1163
- knowledge: string;
1164
- } & O>];
1165
- };