@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
@@ -0,0 +1,4106 @@
1
+ export declare const claudeHaiku45: <const O extends {
2
+ name?: string | undefined;
3
+ created?: string | undefined;
4
+ knowledge?: string | undefined;
5
+ modalities?: {
6
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
7
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
8
+ } | undefined;
9
+ context?: number | undefined;
10
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
11
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
12
+ readonly [x: number]: string | undefined;
13
+ toString?: (() => string) | undefined;
14
+ charAt?: {} | undefined;
15
+ charCodeAt?: {} | undefined;
16
+ concat?: {} | undefined;
17
+ indexOf?: {} | undefined;
18
+ lastIndexOf?: {} | undefined;
19
+ localeCompare?: {} | undefined;
20
+ match?: {} | undefined;
21
+ replace?: {} | undefined;
22
+ search?: {} | undefined;
23
+ slice?: {} | undefined;
24
+ split?: {} | undefined;
25
+ substring?: {} | undefined;
26
+ toLowerCase?: (() => string) | undefined;
27
+ toLocaleLowerCase?: {} | undefined;
28
+ toUpperCase?: (() => string) | undefined;
29
+ toLocaleUpperCase?: {} | undefined;
30
+ trim?: (() => string) | undefined;
31
+ readonly length?: number | undefined;
32
+ substr?: {} | undefined;
33
+ valueOf?: (() => string) | undefined;
34
+ codePointAt?: {} | undefined;
35
+ includes?: {} | undefined;
36
+ endsWith?: {} | undefined;
37
+ normalize?: {} | undefined;
38
+ repeat?: {} | undefined;
39
+ startsWith?: {} | undefined;
40
+ anchor?: {} | undefined;
41
+ big?: (() => string) | undefined;
42
+ blink?: (() => string) | undefined;
43
+ bold?: (() => string) | undefined;
44
+ fixed?: (() => string) | undefined;
45
+ fontcolor?: {} | undefined;
46
+ fontsize?: {} | undefined;
47
+ italics?: (() => string) | undefined;
48
+ link?: {} | undefined;
49
+ small?: (() => string) | undefined;
50
+ strike?: (() => string) | undefined;
51
+ sub?: (() => string) | undefined;
52
+ sup?: (() => string) | undefined;
53
+ padStart?: {} | undefined;
54
+ padEnd?: {} | undefined;
55
+ trimEnd?: (() => string) | undefined;
56
+ trimStart?: (() => string) | undefined;
57
+ trimLeft?: (() => string) | undefined;
58
+ trimRight?: (() => string) | undefined;
59
+ matchAll?: {} | undefined;
60
+ replaceAll?: {} | undefined;
61
+ at?: {} | undefined;
62
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
63
+ })[] | undefined;
64
+ additionalProperties?: {
65
+ [x: string]: unknown;
66
+ } | undefined;
67
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-4.5", {
68
+ name: string;
69
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
70
+ created: string;
71
+ knowledge: string;
72
+ modalities: {
73
+ input: readonly ["text", "image", "pdf", "file"];
74
+ output: readonly ["text"];
75
+ };
76
+ context: number;
77
+ providers: readonly ["anthropic", "bedrock", "vertex"];
78
+ } & O>;
79
+ export declare const claudeHaiku35: <const O extends {
80
+ name?: string | undefined;
81
+ created?: string | undefined;
82
+ knowledge?: string | undefined;
83
+ modalities?: {
84
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
85
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
86
+ } | undefined;
87
+ context?: number | undefined;
88
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
89
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
90
+ readonly [x: number]: string | undefined;
91
+ toString?: (() => string) | undefined;
92
+ charAt?: {} | undefined;
93
+ charCodeAt?: {} | undefined;
94
+ concat?: {} | undefined;
95
+ indexOf?: {} | undefined;
96
+ lastIndexOf?: {} | undefined;
97
+ localeCompare?: {} | undefined;
98
+ match?: {} | undefined;
99
+ replace?: {} | undefined;
100
+ search?: {} | undefined;
101
+ slice?: {} | undefined;
102
+ split?: {} | undefined;
103
+ substring?: {} | undefined;
104
+ toLowerCase?: (() => string) | undefined;
105
+ toLocaleLowerCase?: {} | undefined;
106
+ toUpperCase?: (() => string) | undefined;
107
+ toLocaleUpperCase?: {} | undefined;
108
+ trim?: (() => string) | undefined;
109
+ readonly length?: number | undefined;
110
+ substr?: {} | undefined;
111
+ valueOf?: (() => string) | undefined;
112
+ codePointAt?: {} | undefined;
113
+ includes?: {} | undefined;
114
+ endsWith?: {} | undefined;
115
+ normalize?: {} | undefined;
116
+ repeat?: {} | undefined;
117
+ startsWith?: {} | undefined;
118
+ anchor?: {} | undefined;
119
+ big?: (() => string) | undefined;
120
+ blink?: (() => string) | undefined;
121
+ bold?: (() => string) | undefined;
122
+ fixed?: (() => string) | undefined;
123
+ fontcolor?: {} | undefined;
124
+ fontsize?: {} | undefined;
125
+ italics?: (() => string) | undefined;
126
+ link?: {} | undefined;
127
+ small?: (() => string) | undefined;
128
+ strike?: (() => string) | undefined;
129
+ sub?: (() => string) | undefined;
130
+ sup?: (() => string) | undefined;
131
+ padStart?: {} | undefined;
132
+ padEnd?: {} | undefined;
133
+ trimEnd?: (() => string) | undefined;
134
+ trimStart?: (() => string) | undefined;
135
+ trimLeft?: (() => string) | undefined;
136
+ trimRight?: (() => string) | undefined;
137
+ matchAll?: {} | undefined;
138
+ replaceAll?: {} | undefined;
139
+ at?: {} | undefined;
140
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
141
+ })[] | undefined;
142
+ additionalProperties?: {
143
+ [x: string]: unknown;
144
+ } | undefined;
145
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3.5", {
146
+ name: string;
147
+ created: string;
148
+ knowledge: string;
149
+ modalities: {
150
+ input: readonly ["text", "image", "pdf", "file"];
151
+ output: readonly ["text"];
152
+ };
153
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
154
+ context: number;
155
+ providers: readonly ["anthropic", "bedrock", "vertex"];
156
+ } & O>;
157
+ export declare const claudeHaiku3: <const O extends {
158
+ name?: string | undefined;
159
+ created?: string | undefined;
160
+ knowledge?: string | undefined;
161
+ modalities?: {
162
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
163
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
164
+ } | undefined;
165
+ context?: number | undefined;
166
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
167
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
168
+ readonly [x: number]: string | undefined;
169
+ toString?: (() => string) | undefined;
170
+ charAt?: {} | undefined;
171
+ charCodeAt?: {} | undefined;
172
+ concat?: {} | undefined;
173
+ indexOf?: {} | undefined;
174
+ lastIndexOf?: {} | undefined;
175
+ localeCompare?: {} | undefined;
176
+ match?: {} | undefined;
177
+ replace?: {} | undefined;
178
+ search?: {} | undefined;
179
+ slice?: {} | undefined;
180
+ split?: {} | undefined;
181
+ substring?: {} | undefined;
182
+ toLowerCase?: (() => string) | undefined;
183
+ toLocaleLowerCase?: {} | undefined;
184
+ toUpperCase?: (() => string) | undefined;
185
+ toLocaleUpperCase?: {} | undefined;
186
+ trim?: (() => string) | undefined;
187
+ readonly length?: number | undefined;
188
+ substr?: {} | undefined;
189
+ valueOf?: (() => string) | undefined;
190
+ codePointAt?: {} | undefined;
191
+ includes?: {} | undefined;
192
+ endsWith?: {} | undefined;
193
+ normalize?: {} | undefined;
194
+ repeat?: {} | undefined;
195
+ startsWith?: {} | undefined;
196
+ anchor?: {} | undefined;
197
+ big?: (() => string) | undefined;
198
+ blink?: (() => string) | undefined;
199
+ bold?: (() => string) | undefined;
200
+ fixed?: (() => string) | undefined;
201
+ fontcolor?: {} | undefined;
202
+ fontsize?: {} | undefined;
203
+ italics?: (() => string) | undefined;
204
+ link?: {} | undefined;
205
+ small?: (() => string) | undefined;
206
+ strike?: (() => string) | undefined;
207
+ sub?: (() => string) | undefined;
208
+ sup?: (() => string) | undefined;
209
+ padStart?: {} | undefined;
210
+ padEnd?: {} | undefined;
211
+ trimEnd?: (() => string) | undefined;
212
+ trimStart?: (() => string) | undefined;
213
+ trimLeft?: (() => string) | undefined;
214
+ trimRight?: (() => string) | undefined;
215
+ matchAll?: {} | undefined;
216
+ replaceAll?: {} | undefined;
217
+ at?: {} | undefined;
218
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
219
+ })[] | undefined;
220
+ additionalProperties?: {
221
+ [x: string]: unknown;
222
+ } | undefined;
223
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3", {
224
+ name: string;
225
+ created: string;
226
+ knowledge: string;
227
+ modalities: {
228
+ input: readonly ["text", "image", "file"];
229
+ output: readonly ["text"];
230
+ };
231
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
232
+ context: number;
233
+ providers: readonly ["anthropic", "bedrock", "vertex"];
234
+ } & O>;
235
+ export declare const claudeSonnet45: <const O extends {
236
+ name?: string | undefined;
237
+ created?: string | undefined;
238
+ knowledge?: string | undefined;
239
+ modalities?: {
240
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
241
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
242
+ } | undefined;
243
+ context?: number | undefined;
244
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
245
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
246
+ readonly [x: number]: string | undefined;
247
+ toString?: (() => string) | undefined;
248
+ charAt?: {} | undefined;
249
+ charCodeAt?: {} | undefined;
250
+ concat?: {} | undefined;
251
+ indexOf?: {} | undefined;
252
+ lastIndexOf?: {} | undefined;
253
+ localeCompare?: {} | undefined;
254
+ match?: {} | undefined;
255
+ replace?: {} | undefined;
256
+ search?: {} | undefined;
257
+ slice?: {} | undefined;
258
+ split?: {} | undefined;
259
+ substring?: {} | undefined;
260
+ toLowerCase?: (() => string) | undefined;
261
+ toLocaleLowerCase?: {} | undefined;
262
+ toUpperCase?: (() => string) | undefined;
263
+ toLocaleUpperCase?: {} | undefined;
264
+ trim?: (() => string) | undefined;
265
+ readonly length?: number | undefined;
266
+ substr?: {} | undefined;
267
+ valueOf?: (() => string) | undefined;
268
+ codePointAt?: {} | undefined;
269
+ includes?: {} | undefined;
270
+ endsWith?: {} | undefined;
271
+ normalize?: {} | undefined;
272
+ repeat?: {} | undefined;
273
+ startsWith?: {} | undefined;
274
+ anchor?: {} | undefined;
275
+ big?: (() => string) | undefined;
276
+ blink?: (() => string) | undefined;
277
+ bold?: (() => string) | undefined;
278
+ fixed?: (() => string) | undefined;
279
+ fontcolor?: {} | undefined;
280
+ fontsize?: {} | undefined;
281
+ italics?: (() => string) | undefined;
282
+ link?: {} | undefined;
283
+ small?: (() => string) | undefined;
284
+ strike?: (() => string) | undefined;
285
+ sub?: (() => string) | undefined;
286
+ sup?: (() => string) | undefined;
287
+ padStart?: {} | undefined;
288
+ padEnd?: {} | undefined;
289
+ trimEnd?: (() => string) | undefined;
290
+ trimStart?: (() => string) | undefined;
291
+ trimLeft?: (() => string) | undefined;
292
+ trimRight?: (() => string) | undefined;
293
+ matchAll?: {} | undefined;
294
+ replaceAll?: {} | undefined;
295
+ at?: {} | undefined;
296
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
297
+ })[] | undefined;
298
+ additionalProperties?: {
299
+ [x: string]: unknown;
300
+ } | undefined;
301
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4.5", {
302
+ name: string;
303
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
304
+ created: string;
305
+ knowledge: string;
306
+ modalities: {
307
+ input: readonly ["text", "image", "pdf", "file"];
308
+ output: readonly ["text"];
309
+ };
310
+ context: number;
311
+ providers: readonly ["anthropic", "bedrock", "vertex"];
312
+ } & O>;
313
+ export declare const claudeSonnet4: <const O extends {
314
+ name?: string | undefined;
315
+ created?: string | undefined;
316
+ knowledge?: string | undefined;
317
+ modalities?: {
318
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
319
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
320
+ } | undefined;
321
+ context?: number | undefined;
322
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
323
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
324
+ readonly [x: number]: string | undefined;
325
+ toString?: (() => string) | undefined;
326
+ charAt?: {} | undefined;
327
+ charCodeAt?: {} | undefined;
328
+ concat?: {} | undefined;
329
+ indexOf?: {} | undefined;
330
+ lastIndexOf?: {} | undefined;
331
+ localeCompare?: {} | undefined;
332
+ match?: {} | undefined;
333
+ replace?: {} | undefined;
334
+ search?: {} | undefined;
335
+ slice?: {} | undefined;
336
+ split?: {} | undefined;
337
+ substring?: {} | undefined;
338
+ toLowerCase?: (() => string) | undefined;
339
+ toLocaleLowerCase?: {} | undefined;
340
+ toUpperCase?: (() => string) | undefined;
341
+ toLocaleUpperCase?: {} | undefined;
342
+ trim?: (() => string) | undefined;
343
+ readonly length?: number | undefined;
344
+ substr?: {} | undefined;
345
+ valueOf?: (() => string) | undefined;
346
+ codePointAt?: {} | undefined;
347
+ includes?: {} | undefined;
348
+ endsWith?: {} | undefined;
349
+ normalize?: {} | undefined;
350
+ repeat?: {} | undefined;
351
+ startsWith?: {} | undefined;
352
+ anchor?: {} | undefined;
353
+ big?: (() => string) | undefined;
354
+ blink?: (() => string) | undefined;
355
+ bold?: (() => string) | undefined;
356
+ fixed?: (() => string) | undefined;
357
+ fontcolor?: {} | undefined;
358
+ fontsize?: {} | undefined;
359
+ italics?: (() => string) | undefined;
360
+ link?: {} | undefined;
361
+ small?: (() => string) | undefined;
362
+ strike?: (() => string) | undefined;
363
+ sub?: (() => string) | undefined;
364
+ sup?: (() => string) | undefined;
365
+ padStart?: {} | undefined;
366
+ padEnd?: {} | undefined;
367
+ trimEnd?: (() => string) | undefined;
368
+ trimStart?: (() => string) | undefined;
369
+ trimLeft?: (() => string) | undefined;
370
+ trimRight?: (() => string) | undefined;
371
+ matchAll?: {} | undefined;
372
+ replaceAll?: {} | undefined;
373
+ at?: {} | undefined;
374
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
375
+ })[] | undefined;
376
+ additionalProperties?: {
377
+ [x: string]: unknown;
378
+ } | undefined;
379
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4", {
380
+ name: string;
381
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
382
+ created: string;
383
+ knowledge: string;
384
+ modalities: {
385
+ input: readonly ["text", "image", "pdf", "file"];
386
+ output: readonly ["text"];
387
+ };
388
+ context: number;
389
+ providers: readonly ["anthropic", "bedrock", "vertex"];
390
+ } & O>;
391
+ export declare const claudeSonnet37: <const O extends {
392
+ name?: string | undefined;
393
+ created?: string | undefined;
394
+ knowledge?: string | undefined;
395
+ modalities?: {
396
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
397
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
398
+ } | undefined;
399
+ context?: number | undefined;
400
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
401
+ providers?: readonly ("anthropic" | "azure" | "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
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.7", {
458
+ name: string;
459
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
460
+ created: string;
461
+ knowledge: string;
462
+ modalities: {
463
+ input: readonly ["text", "image", "pdf", "file"];
464
+ output: readonly ["text"];
465
+ };
466
+ context: number;
467
+ providers: readonly ["anthropic", "bedrock", "vertex"];
468
+ } & O>;
469
+ export declare const claudeSonnet35: <const O extends {
470
+ name?: string | undefined;
471
+ created?: string | undefined;
472
+ knowledge?: string | undefined;
473
+ modalities?: {
474
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
475
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
476
+ } | undefined;
477
+ context?: number | undefined;
478
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
479
+ providers?: readonly ("anthropic" | "azure" | "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
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.5", {
536
+ name: string;
537
+ created: string;
538
+ knowledge: string;
539
+ modalities: {
540
+ input: readonly ["text", "image", "pdf", "file"];
541
+ output: readonly ["text"];
542
+ };
543
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
544
+ context: number;
545
+ providers: readonly ["anthropic", "bedrock", "vertex"];
546
+ } & O>;
547
+ export declare const claudeOpus45: <const O extends {
548
+ name?: string | undefined;
549
+ created?: string | undefined;
550
+ knowledge?: string | undefined;
551
+ modalities?: {
552
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
553
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
554
+ } | undefined;
555
+ context?: number | undefined;
556
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
557
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
558
+ readonly [x: number]: string | undefined;
559
+ toString?: (() => string) | undefined;
560
+ charAt?: {} | undefined;
561
+ charCodeAt?: {} | undefined;
562
+ concat?: {} | undefined;
563
+ indexOf?: {} | undefined;
564
+ lastIndexOf?: {} | undefined;
565
+ localeCompare?: {} | undefined;
566
+ match?: {} | undefined;
567
+ replace?: {} | undefined;
568
+ search?: {} | undefined;
569
+ slice?: {} | undefined;
570
+ split?: {} | undefined;
571
+ substring?: {} | undefined;
572
+ toLowerCase?: (() => string) | undefined;
573
+ toLocaleLowerCase?: {} | undefined;
574
+ toUpperCase?: (() => string) | undefined;
575
+ toLocaleUpperCase?: {} | undefined;
576
+ trim?: (() => string) | undefined;
577
+ readonly length?: number | undefined;
578
+ substr?: {} | undefined;
579
+ valueOf?: (() => string) | undefined;
580
+ codePointAt?: {} | undefined;
581
+ includes?: {} | undefined;
582
+ endsWith?: {} | undefined;
583
+ normalize?: {} | undefined;
584
+ repeat?: {} | undefined;
585
+ startsWith?: {} | undefined;
586
+ anchor?: {} | undefined;
587
+ big?: (() => string) | undefined;
588
+ blink?: (() => string) | undefined;
589
+ bold?: (() => string) | undefined;
590
+ fixed?: (() => string) | undefined;
591
+ fontcolor?: {} | undefined;
592
+ fontsize?: {} | undefined;
593
+ italics?: (() => string) | undefined;
594
+ link?: {} | undefined;
595
+ small?: (() => string) | undefined;
596
+ strike?: (() => string) | undefined;
597
+ sub?: (() => string) | undefined;
598
+ sup?: (() => string) | undefined;
599
+ padStart?: {} | undefined;
600
+ padEnd?: {} | undefined;
601
+ trimEnd?: (() => string) | undefined;
602
+ trimStart?: (() => string) | undefined;
603
+ trimLeft?: (() => string) | undefined;
604
+ trimRight?: (() => string) | undefined;
605
+ matchAll?: {} | undefined;
606
+ replaceAll?: {} | undefined;
607
+ at?: {} | undefined;
608
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
609
+ })[] | undefined;
610
+ additionalProperties?: {
611
+ [x: string]: unknown;
612
+ } | undefined;
613
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.5", {
614
+ name: string;
615
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
616
+ created: string;
617
+ knowledge: string;
618
+ modalities: {
619
+ input: readonly ["text", "image", "pdf", "file"];
620
+ output: readonly ["text"];
621
+ };
622
+ context: number;
623
+ providers: readonly ["anthropic", "bedrock", "vertex"];
624
+ } & O>;
625
+ export declare const claudeOpus41: <const O extends {
626
+ name?: string | undefined;
627
+ created?: string | undefined;
628
+ knowledge?: string | undefined;
629
+ modalities?: {
630
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
631
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
632
+ } | undefined;
633
+ context?: number | undefined;
634
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
635
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
636
+ readonly [x: number]: string | undefined;
637
+ toString?: (() => string) | undefined;
638
+ charAt?: {} | undefined;
639
+ charCodeAt?: {} | undefined;
640
+ concat?: {} | undefined;
641
+ indexOf?: {} | undefined;
642
+ lastIndexOf?: {} | undefined;
643
+ localeCompare?: {} | undefined;
644
+ match?: {} | undefined;
645
+ replace?: {} | undefined;
646
+ search?: {} | undefined;
647
+ slice?: {} | undefined;
648
+ split?: {} | undefined;
649
+ substring?: {} | undefined;
650
+ toLowerCase?: (() => string) | undefined;
651
+ toLocaleLowerCase?: {} | undefined;
652
+ toUpperCase?: (() => string) | undefined;
653
+ toLocaleUpperCase?: {} | undefined;
654
+ trim?: (() => string) | undefined;
655
+ readonly length?: number | undefined;
656
+ substr?: {} | undefined;
657
+ valueOf?: (() => string) | undefined;
658
+ codePointAt?: {} | undefined;
659
+ includes?: {} | undefined;
660
+ endsWith?: {} | undefined;
661
+ normalize?: {} | undefined;
662
+ repeat?: {} | undefined;
663
+ startsWith?: {} | undefined;
664
+ anchor?: {} | undefined;
665
+ big?: (() => string) | undefined;
666
+ blink?: (() => string) | undefined;
667
+ bold?: (() => string) | undefined;
668
+ fixed?: (() => string) | undefined;
669
+ fontcolor?: {} | undefined;
670
+ fontsize?: {} | undefined;
671
+ italics?: (() => string) | undefined;
672
+ link?: {} | undefined;
673
+ small?: (() => string) | undefined;
674
+ strike?: (() => string) | undefined;
675
+ sub?: (() => string) | undefined;
676
+ sup?: (() => string) | undefined;
677
+ padStart?: {} | undefined;
678
+ padEnd?: {} | undefined;
679
+ trimEnd?: (() => string) | undefined;
680
+ trimStart?: (() => string) | undefined;
681
+ trimLeft?: (() => string) | undefined;
682
+ trimRight?: (() => string) | undefined;
683
+ matchAll?: {} | undefined;
684
+ replaceAll?: {} | undefined;
685
+ at?: {} | undefined;
686
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
687
+ })[] | undefined;
688
+ additionalProperties?: {
689
+ [x: string]: unknown;
690
+ } | undefined;
691
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.1", {
692
+ name: string;
693
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
694
+ created: string;
695
+ knowledge: string;
696
+ modalities: {
697
+ input: readonly ["text", "image", "pdf", "file"];
698
+ output: readonly ["text"];
699
+ };
700
+ context: number;
701
+ providers: readonly ["anthropic", "bedrock", "vertex"];
702
+ } & O>;
703
+ export declare const claudeOpus4: <const O extends {
704
+ name?: string | undefined;
705
+ created?: string | undefined;
706
+ knowledge?: string | undefined;
707
+ modalities?: {
708
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
709
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
710
+ } | undefined;
711
+ context?: number | undefined;
712
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
713
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
714
+ readonly [x: number]: string | undefined;
715
+ toString?: (() => string) | undefined;
716
+ charAt?: {} | undefined;
717
+ charCodeAt?: {} | undefined;
718
+ concat?: {} | undefined;
719
+ indexOf?: {} | undefined;
720
+ lastIndexOf?: {} | undefined;
721
+ localeCompare?: {} | undefined;
722
+ match?: {} | undefined;
723
+ replace?: {} | undefined;
724
+ search?: {} | undefined;
725
+ slice?: {} | undefined;
726
+ split?: {} | undefined;
727
+ substring?: {} | undefined;
728
+ toLowerCase?: (() => string) | undefined;
729
+ toLocaleLowerCase?: {} | undefined;
730
+ toUpperCase?: (() => string) | undefined;
731
+ toLocaleUpperCase?: {} | undefined;
732
+ trim?: (() => string) | undefined;
733
+ readonly length?: number | undefined;
734
+ substr?: {} | undefined;
735
+ valueOf?: (() => string) | undefined;
736
+ codePointAt?: {} | undefined;
737
+ includes?: {} | undefined;
738
+ endsWith?: {} | undefined;
739
+ normalize?: {} | undefined;
740
+ repeat?: {} | undefined;
741
+ startsWith?: {} | undefined;
742
+ anchor?: {} | undefined;
743
+ big?: (() => string) | undefined;
744
+ blink?: (() => string) | undefined;
745
+ bold?: (() => string) | undefined;
746
+ fixed?: (() => string) | undefined;
747
+ fontcolor?: {} | undefined;
748
+ fontsize?: {} | undefined;
749
+ italics?: (() => string) | undefined;
750
+ link?: {} | undefined;
751
+ small?: (() => string) | undefined;
752
+ strike?: (() => string) | undefined;
753
+ sub?: (() => string) | undefined;
754
+ sup?: (() => string) | undefined;
755
+ padStart?: {} | undefined;
756
+ padEnd?: {} | undefined;
757
+ trimEnd?: (() => string) | undefined;
758
+ trimStart?: (() => string) | undefined;
759
+ trimLeft?: (() => string) | undefined;
760
+ trimRight?: (() => string) | undefined;
761
+ matchAll?: {} | undefined;
762
+ replaceAll?: {} | undefined;
763
+ at?: {} | undefined;
764
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
765
+ })[] | undefined;
766
+ additionalProperties?: {
767
+ [x: string]: unknown;
768
+ } | undefined;
769
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4", {
770
+ name: string;
771
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
772
+ created: string;
773
+ knowledge: string;
774
+ modalities: {
775
+ input: readonly ["text", "image", "pdf", "file"];
776
+ output: readonly ["text"];
777
+ };
778
+ context: number;
779
+ providers: readonly ["anthropic", "bedrock", "vertex"];
780
+ } & O>;
781
+ export declare const claude: {
782
+ readonly latest: readonly [<const O extends {
783
+ name?: string | undefined;
784
+ created?: string | undefined;
785
+ knowledge?: string | undefined;
786
+ modalities?: {
787
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
788
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
789
+ } | undefined;
790
+ context?: number | undefined;
791
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
792
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
793
+ readonly [x: number]: string | undefined;
794
+ toString?: (() => string) | undefined;
795
+ charAt?: {} | undefined;
796
+ charCodeAt?: {} | undefined;
797
+ concat?: {} | undefined;
798
+ indexOf?: {} | undefined;
799
+ lastIndexOf?: {} | undefined;
800
+ localeCompare?: {} | undefined;
801
+ match?: {} | undefined;
802
+ replace?: {} | undefined;
803
+ search?: {} | undefined;
804
+ slice?: {} | undefined;
805
+ split?: {} | undefined;
806
+ substring?: {} | undefined;
807
+ toLowerCase?: (() => string) | undefined;
808
+ toLocaleLowerCase?: {} | undefined;
809
+ toUpperCase?: (() => string) | undefined;
810
+ toLocaleUpperCase?: {} | undefined;
811
+ trim?: (() => string) | undefined;
812
+ readonly length?: number | undefined;
813
+ substr?: {} | undefined;
814
+ valueOf?: (() => string) | undefined;
815
+ codePointAt?: {} | undefined;
816
+ includes?: {} | undefined;
817
+ endsWith?: {} | undefined;
818
+ normalize?: {} | undefined;
819
+ repeat?: {} | undefined;
820
+ startsWith?: {} | undefined;
821
+ anchor?: {} | undefined;
822
+ big?: (() => string) | undefined;
823
+ blink?: (() => string) | undefined;
824
+ bold?: (() => string) | undefined;
825
+ fixed?: (() => string) | undefined;
826
+ fontcolor?: {} | undefined;
827
+ fontsize?: {} | undefined;
828
+ italics?: (() => string) | undefined;
829
+ link?: {} | undefined;
830
+ small?: (() => string) | undefined;
831
+ strike?: (() => string) | undefined;
832
+ sub?: (() => string) | undefined;
833
+ sup?: (() => string) | undefined;
834
+ padStart?: {} | undefined;
835
+ padEnd?: {} | undefined;
836
+ trimEnd?: (() => string) | undefined;
837
+ trimStart?: (() => string) | undefined;
838
+ trimLeft?: (() => string) | undefined;
839
+ trimRight?: (() => string) | undefined;
840
+ matchAll?: {} | undefined;
841
+ replaceAll?: {} | undefined;
842
+ at?: {} | undefined;
843
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
844
+ })[] | undefined;
845
+ additionalProperties?: {
846
+ [x: string]: unknown;
847
+ } | undefined;
848
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-4.5", {
849
+ name: string;
850
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
851
+ created: string;
852
+ knowledge: string;
853
+ modalities: {
854
+ input: readonly ["text", "image", "pdf", "file"];
855
+ output: readonly ["text"];
856
+ };
857
+ context: number;
858
+ providers: readonly ["anthropic", "bedrock", "vertex"];
859
+ } & O>, <const O extends {
860
+ name?: string | undefined;
861
+ created?: string | undefined;
862
+ knowledge?: string | undefined;
863
+ modalities?: {
864
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
865
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
866
+ } | undefined;
867
+ context?: number | undefined;
868
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
869
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
870
+ readonly [x: number]: string | undefined;
871
+ toString?: (() => string) | undefined;
872
+ charAt?: {} | undefined;
873
+ charCodeAt?: {} | undefined;
874
+ concat?: {} | undefined;
875
+ indexOf?: {} | undefined;
876
+ lastIndexOf?: {} | undefined;
877
+ localeCompare?: {} | undefined;
878
+ match?: {} | undefined;
879
+ replace?: {} | undefined;
880
+ search?: {} | undefined;
881
+ slice?: {} | undefined;
882
+ split?: {} | undefined;
883
+ substring?: {} | undefined;
884
+ toLowerCase?: (() => string) | undefined;
885
+ toLocaleLowerCase?: {} | undefined;
886
+ toUpperCase?: (() => string) | undefined;
887
+ toLocaleUpperCase?: {} | undefined;
888
+ trim?: (() => string) | undefined;
889
+ readonly length?: number | undefined;
890
+ substr?: {} | undefined;
891
+ valueOf?: (() => string) | undefined;
892
+ codePointAt?: {} | undefined;
893
+ includes?: {} | undefined;
894
+ endsWith?: {} | undefined;
895
+ normalize?: {} | undefined;
896
+ repeat?: {} | undefined;
897
+ startsWith?: {} | undefined;
898
+ anchor?: {} | undefined;
899
+ big?: (() => string) | undefined;
900
+ blink?: (() => string) | undefined;
901
+ bold?: (() => string) | undefined;
902
+ fixed?: (() => string) | undefined;
903
+ fontcolor?: {} | undefined;
904
+ fontsize?: {} | undefined;
905
+ italics?: (() => string) | undefined;
906
+ link?: {} | undefined;
907
+ small?: (() => string) | undefined;
908
+ strike?: (() => string) | undefined;
909
+ sub?: (() => string) | undefined;
910
+ sup?: (() => string) | undefined;
911
+ padStart?: {} | undefined;
912
+ padEnd?: {} | undefined;
913
+ trimEnd?: (() => string) | undefined;
914
+ trimStart?: (() => string) | undefined;
915
+ trimLeft?: (() => string) | undefined;
916
+ trimRight?: (() => string) | undefined;
917
+ matchAll?: {} | undefined;
918
+ replaceAll?: {} | undefined;
919
+ at?: {} | undefined;
920
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
921
+ })[] | undefined;
922
+ additionalProperties?: {
923
+ [x: string]: unknown;
924
+ } | undefined;
925
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4.5", {
926
+ name: string;
927
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
928
+ created: string;
929
+ knowledge: string;
930
+ modalities: {
931
+ input: readonly ["text", "image", "pdf", "file"];
932
+ output: readonly ["text"];
933
+ };
934
+ context: number;
935
+ providers: readonly ["anthropic", "bedrock", "vertex"];
936
+ } & O>, <const O extends {
937
+ name?: string | undefined;
938
+ created?: string | undefined;
939
+ knowledge?: string | undefined;
940
+ modalities?: {
941
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
942
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
943
+ } | undefined;
944
+ context?: number | undefined;
945
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
946
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
947
+ readonly [x: number]: string | undefined;
948
+ toString?: (() => string) | undefined;
949
+ charAt?: {} | undefined;
950
+ charCodeAt?: {} | undefined;
951
+ concat?: {} | undefined;
952
+ indexOf?: {} | undefined;
953
+ lastIndexOf?: {} | undefined;
954
+ localeCompare?: {} | undefined;
955
+ match?: {} | undefined;
956
+ replace?: {} | undefined;
957
+ search?: {} | undefined;
958
+ slice?: {} | undefined;
959
+ split?: {} | undefined;
960
+ substring?: {} | undefined;
961
+ toLowerCase?: (() => string) | undefined;
962
+ toLocaleLowerCase?: {} | undefined;
963
+ toUpperCase?: (() => string) | undefined;
964
+ toLocaleUpperCase?: {} | undefined;
965
+ trim?: (() => string) | undefined;
966
+ readonly length?: number | undefined;
967
+ substr?: {} | undefined;
968
+ valueOf?: (() => string) | undefined;
969
+ codePointAt?: {} | undefined;
970
+ includes?: {} | undefined;
971
+ endsWith?: {} | undefined;
972
+ normalize?: {} | undefined;
973
+ repeat?: {} | undefined;
974
+ startsWith?: {} | undefined;
975
+ anchor?: {} | undefined;
976
+ big?: (() => string) | undefined;
977
+ blink?: (() => string) | undefined;
978
+ bold?: (() => string) | undefined;
979
+ fixed?: (() => string) | undefined;
980
+ fontcolor?: {} | undefined;
981
+ fontsize?: {} | undefined;
982
+ italics?: (() => string) | undefined;
983
+ link?: {} | undefined;
984
+ small?: (() => string) | undefined;
985
+ strike?: (() => string) | undefined;
986
+ sub?: (() => string) | undefined;
987
+ sup?: (() => string) | undefined;
988
+ padStart?: {} | undefined;
989
+ padEnd?: {} | undefined;
990
+ trimEnd?: (() => string) | undefined;
991
+ trimStart?: (() => string) | undefined;
992
+ trimLeft?: (() => string) | undefined;
993
+ trimRight?: (() => string) | undefined;
994
+ matchAll?: {} | undefined;
995
+ replaceAll?: {} | undefined;
996
+ at?: {} | undefined;
997
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
998
+ })[] | undefined;
999
+ additionalProperties?: {
1000
+ [x: string]: unknown;
1001
+ } | undefined;
1002
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.5", {
1003
+ name: string;
1004
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1005
+ created: string;
1006
+ knowledge: string;
1007
+ modalities: {
1008
+ input: readonly ["text", "image", "pdf", "file"];
1009
+ output: readonly ["text"];
1010
+ };
1011
+ context: number;
1012
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1013
+ } & O>];
1014
+ readonly all: ((<const O extends {
1015
+ name?: string | undefined;
1016
+ created?: string | undefined;
1017
+ knowledge?: string | undefined;
1018
+ modalities?: {
1019
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1020
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1021
+ } | undefined;
1022
+ context?: number | undefined;
1023
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1024
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1025
+ readonly [x: number]: string | undefined;
1026
+ toString?: (() => string) | undefined;
1027
+ charAt?: {} | undefined;
1028
+ charCodeAt?: {} | undefined;
1029
+ concat?: {} | undefined;
1030
+ indexOf?: {} | undefined;
1031
+ lastIndexOf?: {} | undefined;
1032
+ localeCompare?: {} | undefined;
1033
+ match?: {} | undefined;
1034
+ replace?: {} | undefined;
1035
+ search?: {} | undefined;
1036
+ slice?: {} | undefined;
1037
+ split?: {} | undefined;
1038
+ substring?: {} | undefined;
1039
+ toLowerCase?: (() => string) | undefined;
1040
+ toLocaleLowerCase?: {} | undefined;
1041
+ toUpperCase?: (() => string) | undefined;
1042
+ toLocaleUpperCase?: {} | undefined;
1043
+ trim?: (() => string) | undefined;
1044
+ readonly length?: number | undefined;
1045
+ substr?: {} | undefined;
1046
+ valueOf?: (() => string) | undefined;
1047
+ codePointAt?: {} | undefined;
1048
+ includes?: {} | undefined;
1049
+ endsWith?: {} | undefined;
1050
+ normalize?: {} | undefined;
1051
+ repeat?: {} | undefined;
1052
+ startsWith?: {} | undefined;
1053
+ anchor?: {} | undefined;
1054
+ big?: (() => string) | undefined;
1055
+ blink?: (() => string) | undefined;
1056
+ bold?: (() => string) | undefined;
1057
+ fixed?: (() => string) | undefined;
1058
+ fontcolor?: {} | undefined;
1059
+ fontsize?: {} | undefined;
1060
+ italics?: (() => string) | undefined;
1061
+ link?: {} | undefined;
1062
+ small?: (() => string) | undefined;
1063
+ strike?: (() => string) | undefined;
1064
+ sub?: (() => string) | undefined;
1065
+ sup?: (() => string) | undefined;
1066
+ padStart?: {} | undefined;
1067
+ padEnd?: {} | undefined;
1068
+ trimEnd?: (() => string) | undefined;
1069
+ trimStart?: (() => string) | undefined;
1070
+ trimLeft?: (() => string) | undefined;
1071
+ trimRight?: (() => string) | undefined;
1072
+ matchAll?: {} | undefined;
1073
+ replaceAll?: {} | undefined;
1074
+ at?: {} | undefined;
1075
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1076
+ })[] | undefined;
1077
+ additionalProperties?: {
1078
+ [x: string]: unknown;
1079
+ } | undefined;
1080
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-4.5", {
1081
+ name: string;
1082
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1083
+ created: string;
1084
+ knowledge: string;
1085
+ modalities: {
1086
+ input: readonly ["text", "image", "pdf", "file"];
1087
+ output: readonly ["text"];
1088
+ };
1089
+ context: number;
1090
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1091
+ } & O>) | (<const O extends {
1092
+ name?: string | undefined;
1093
+ created?: string | undefined;
1094
+ knowledge?: string | undefined;
1095
+ modalities?: {
1096
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1097
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1098
+ } | undefined;
1099
+ context?: number | undefined;
1100
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1101
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1102
+ readonly [x: number]: string | undefined;
1103
+ toString?: (() => string) | undefined;
1104
+ charAt?: {} | undefined;
1105
+ charCodeAt?: {} | undefined;
1106
+ concat?: {} | undefined;
1107
+ indexOf?: {} | undefined;
1108
+ lastIndexOf?: {} | undefined;
1109
+ localeCompare?: {} | undefined;
1110
+ match?: {} | undefined;
1111
+ replace?: {} | undefined;
1112
+ search?: {} | undefined;
1113
+ slice?: {} | undefined;
1114
+ split?: {} | undefined;
1115
+ substring?: {} | undefined;
1116
+ toLowerCase?: (() => string) | undefined;
1117
+ toLocaleLowerCase?: {} | undefined;
1118
+ toUpperCase?: (() => string) | undefined;
1119
+ toLocaleUpperCase?: {} | undefined;
1120
+ trim?: (() => string) | undefined;
1121
+ readonly length?: number | undefined;
1122
+ substr?: {} | undefined;
1123
+ valueOf?: (() => string) | undefined;
1124
+ codePointAt?: {} | undefined;
1125
+ includes?: {} | undefined;
1126
+ endsWith?: {} | undefined;
1127
+ normalize?: {} | undefined;
1128
+ repeat?: {} | undefined;
1129
+ startsWith?: {} | undefined;
1130
+ anchor?: {} | undefined;
1131
+ big?: (() => string) | undefined;
1132
+ blink?: (() => string) | undefined;
1133
+ bold?: (() => string) | undefined;
1134
+ fixed?: (() => string) | undefined;
1135
+ fontcolor?: {} | undefined;
1136
+ fontsize?: {} | undefined;
1137
+ italics?: (() => string) | undefined;
1138
+ link?: {} | undefined;
1139
+ small?: (() => string) | undefined;
1140
+ strike?: (() => string) | undefined;
1141
+ sub?: (() => string) | undefined;
1142
+ sup?: (() => string) | undefined;
1143
+ padStart?: {} | undefined;
1144
+ padEnd?: {} | undefined;
1145
+ trimEnd?: (() => string) | undefined;
1146
+ trimStart?: (() => string) | undefined;
1147
+ trimLeft?: (() => string) | undefined;
1148
+ trimRight?: (() => string) | undefined;
1149
+ matchAll?: {} | undefined;
1150
+ replaceAll?: {} | undefined;
1151
+ at?: {} | undefined;
1152
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1153
+ })[] | undefined;
1154
+ additionalProperties?: {
1155
+ [x: string]: unknown;
1156
+ } | undefined;
1157
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3.5", {
1158
+ name: string;
1159
+ created: string;
1160
+ knowledge: string;
1161
+ modalities: {
1162
+ input: readonly ["text", "image", "pdf", "file"];
1163
+ output: readonly ["text"];
1164
+ };
1165
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
1166
+ context: number;
1167
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1168
+ } & O>) | (<const O extends {
1169
+ name?: string | undefined;
1170
+ created?: string | undefined;
1171
+ knowledge?: string | undefined;
1172
+ modalities?: {
1173
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1174
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1175
+ } | undefined;
1176
+ context?: number | undefined;
1177
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1178
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1179
+ readonly [x: number]: string | undefined;
1180
+ toString?: (() => string) | undefined;
1181
+ charAt?: {} | undefined;
1182
+ charCodeAt?: {} | undefined;
1183
+ concat?: {} | undefined;
1184
+ indexOf?: {} | undefined;
1185
+ lastIndexOf?: {} | undefined;
1186
+ localeCompare?: {} | undefined;
1187
+ match?: {} | undefined;
1188
+ replace?: {} | undefined;
1189
+ search?: {} | undefined;
1190
+ slice?: {} | undefined;
1191
+ split?: {} | undefined;
1192
+ substring?: {} | undefined;
1193
+ toLowerCase?: (() => string) | undefined;
1194
+ toLocaleLowerCase?: {} | undefined;
1195
+ toUpperCase?: (() => string) | undefined;
1196
+ toLocaleUpperCase?: {} | undefined;
1197
+ trim?: (() => string) | undefined;
1198
+ readonly length?: number | undefined;
1199
+ substr?: {} | undefined;
1200
+ valueOf?: (() => string) | undefined;
1201
+ codePointAt?: {} | undefined;
1202
+ includes?: {} | undefined;
1203
+ endsWith?: {} | undefined;
1204
+ normalize?: {} | undefined;
1205
+ repeat?: {} | undefined;
1206
+ startsWith?: {} | undefined;
1207
+ anchor?: {} | undefined;
1208
+ big?: (() => string) | undefined;
1209
+ blink?: (() => string) | undefined;
1210
+ bold?: (() => string) | undefined;
1211
+ fixed?: (() => string) | undefined;
1212
+ fontcolor?: {} | undefined;
1213
+ fontsize?: {} | undefined;
1214
+ italics?: (() => string) | undefined;
1215
+ link?: {} | undefined;
1216
+ small?: (() => string) | undefined;
1217
+ strike?: (() => string) | undefined;
1218
+ sub?: (() => string) | undefined;
1219
+ sup?: (() => string) | undefined;
1220
+ padStart?: {} | undefined;
1221
+ padEnd?: {} | undefined;
1222
+ trimEnd?: (() => string) | undefined;
1223
+ trimStart?: (() => string) | undefined;
1224
+ trimLeft?: (() => string) | undefined;
1225
+ trimRight?: (() => string) | undefined;
1226
+ matchAll?: {} | undefined;
1227
+ replaceAll?: {} | undefined;
1228
+ at?: {} | undefined;
1229
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1230
+ })[] | undefined;
1231
+ additionalProperties?: {
1232
+ [x: string]: unknown;
1233
+ } | undefined;
1234
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3", {
1235
+ name: string;
1236
+ created: string;
1237
+ knowledge: string;
1238
+ modalities: {
1239
+ input: readonly ["text", "image", "file"];
1240
+ output: readonly ["text"];
1241
+ };
1242
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
1243
+ context: number;
1244
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1245
+ } & O>) | (<const O extends {
1246
+ name?: string | undefined;
1247
+ created?: string | undefined;
1248
+ knowledge?: string | undefined;
1249
+ modalities?: {
1250
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1251
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1252
+ } | undefined;
1253
+ context?: number | undefined;
1254
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1255
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1256
+ readonly [x: number]: string | undefined;
1257
+ toString?: (() => string) | undefined;
1258
+ charAt?: {} | undefined;
1259
+ charCodeAt?: {} | undefined;
1260
+ concat?: {} | undefined;
1261
+ indexOf?: {} | undefined;
1262
+ lastIndexOf?: {} | undefined;
1263
+ localeCompare?: {} | undefined;
1264
+ match?: {} | undefined;
1265
+ replace?: {} | undefined;
1266
+ search?: {} | undefined;
1267
+ slice?: {} | undefined;
1268
+ split?: {} | undefined;
1269
+ substring?: {} | undefined;
1270
+ toLowerCase?: (() => string) | undefined;
1271
+ toLocaleLowerCase?: {} | undefined;
1272
+ toUpperCase?: (() => string) | undefined;
1273
+ toLocaleUpperCase?: {} | undefined;
1274
+ trim?: (() => string) | undefined;
1275
+ readonly length?: number | undefined;
1276
+ substr?: {} | undefined;
1277
+ valueOf?: (() => string) | undefined;
1278
+ codePointAt?: {} | undefined;
1279
+ includes?: {} | undefined;
1280
+ endsWith?: {} | undefined;
1281
+ normalize?: {} | undefined;
1282
+ repeat?: {} | undefined;
1283
+ startsWith?: {} | undefined;
1284
+ anchor?: {} | undefined;
1285
+ big?: (() => string) | undefined;
1286
+ blink?: (() => string) | undefined;
1287
+ bold?: (() => string) | undefined;
1288
+ fixed?: (() => string) | undefined;
1289
+ fontcolor?: {} | undefined;
1290
+ fontsize?: {} | undefined;
1291
+ italics?: (() => string) | undefined;
1292
+ link?: {} | undefined;
1293
+ small?: (() => string) | undefined;
1294
+ strike?: (() => string) | undefined;
1295
+ sub?: (() => string) | undefined;
1296
+ sup?: (() => string) | undefined;
1297
+ padStart?: {} | undefined;
1298
+ padEnd?: {} | undefined;
1299
+ trimEnd?: (() => string) | undefined;
1300
+ trimStart?: (() => string) | undefined;
1301
+ trimLeft?: (() => string) | undefined;
1302
+ trimRight?: (() => string) | undefined;
1303
+ matchAll?: {} | undefined;
1304
+ replaceAll?: {} | undefined;
1305
+ at?: {} | undefined;
1306
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1307
+ })[] | undefined;
1308
+ additionalProperties?: {
1309
+ [x: string]: unknown;
1310
+ } | undefined;
1311
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4.5", {
1312
+ name: string;
1313
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1314
+ created: string;
1315
+ knowledge: string;
1316
+ modalities: {
1317
+ input: readonly ["text", "image", "pdf", "file"];
1318
+ output: readonly ["text"];
1319
+ };
1320
+ context: number;
1321
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1322
+ } & O>) | (<const O extends {
1323
+ name?: string | undefined;
1324
+ created?: string | undefined;
1325
+ knowledge?: string | undefined;
1326
+ modalities?: {
1327
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1328
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1329
+ } | undefined;
1330
+ context?: number | undefined;
1331
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1332
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1333
+ readonly [x: number]: string | undefined;
1334
+ toString?: (() => string) | undefined;
1335
+ charAt?: {} | undefined;
1336
+ charCodeAt?: {} | undefined;
1337
+ concat?: {} | undefined;
1338
+ indexOf?: {} | undefined;
1339
+ lastIndexOf?: {} | undefined;
1340
+ localeCompare?: {} | undefined;
1341
+ match?: {} | undefined;
1342
+ replace?: {} | undefined;
1343
+ search?: {} | undefined;
1344
+ slice?: {} | undefined;
1345
+ split?: {} | undefined;
1346
+ substring?: {} | undefined;
1347
+ toLowerCase?: (() => string) | undefined;
1348
+ toLocaleLowerCase?: {} | undefined;
1349
+ toUpperCase?: (() => string) | undefined;
1350
+ toLocaleUpperCase?: {} | undefined;
1351
+ trim?: (() => string) | undefined;
1352
+ readonly length?: number | undefined;
1353
+ substr?: {} | undefined;
1354
+ valueOf?: (() => string) | undefined;
1355
+ codePointAt?: {} | undefined;
1356
+ includes?: {} | undefined;
1357
+ endsWith?: {} | undefined;
1358
+ normalize?: {} | undefined;
1359
+ repeat?: {} | undefined;
1360
+ startsWith?: {} | undefined;
1361
+ anchor?: {} | undefined;
1362
+ big?: (() => string) | undefined;
1363
+ blink?: (() => string) | undefined;
1364
+ bold?: (() => string) | undefined;
1365
+ fixed?: (() => string) | undefined;
1366
+ fontcolor?: {} | undefined;
1367
+ fontsize?: {} | undefined;
1368
+ italics?: (() => string) | undefined;
1369
+ link?: {} | undefined;
1370
+ small?: (() => string) | undefined;
1371
+ strike?: (() => string) | undefined;
1372
+ sub?: (() => string) | undefined;
1373
+ sup?: (() => string) | undefined;
1374
+ padStart?: {} | undefined;
1375
+ padEnd?: {} | undefined;
1376
+ trimEnd?: (() => string) | undefined;
1377
+ trimStart?: (() => string) | undefined;
1378
+ trimLeft?: (() => string) | undefined;
1379
+ trimRight?: (() => string) | undefined;
1380
+ matchAll?: {} | undefined;
1381
+ replaceAll?: {} | undefined;
1382
+ at?: {} | undefined;
1383
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1384
+ })[] | undefined;
1385
+ additionalProperties?: {
1386
+ [x: string]: unknown;
1387
+ } | undefined;
1388
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4", {
1389
+ name: string;
1390
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1391
+ created: string;
1392
+ knowledge: string;
1393
+ modalities: {
1394
+ input: readonly ["text", "image", "pdf", "file"];
1395
+ output: readonly ["text"];
1396
+ };
1397
+ context: number;
1398
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1399
+ } & O>) | (<const O extends {
1400
+ name?: string | undefined;
1401
+ created?: string | undefined;
1402
+ knowledge?: string | undefined;
1403
+ modalities?: {
1404
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1405
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1406
+ } | undefined;
1407
+ context?: number | undefined;
1408
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1409
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1410
+ readonly [x: number]: string | undefined;
1411
+ toString?: (() => string) | undefined;
1412
+ charAt?: {} | undefined;
1413
+ charCodeAt?: {} | undefined;
1414
+ concat?: {} | undefined;
1415
+ indexOf?: {} | undefined;
1416
+ lastIndexOf?: {} | undefined;
1417
+ localeCompare?: {} | undefined;
1418
+ match?: {} | undefined;
1419
+ replace?: {} | undefined;
1420
+ search?: {} | undefined;
1421
+ slice?: {} | undefined;
1422
+ split?: {} | undefined;
1423
+ substring?: {} | undefined;
1424
+ toLowerCase?: (() => string) | undefined;
1425
+ toLocaleLowerCase?: {} | undefined;
1426
+ toUpperCase?: (() => string) | undefined;
1427
+ toLocaleUpperCase?: {} | undefined;
1428
+ trim?: (() => string) | undefined;
1429
+ readonly length?: number | undefined;
1430
+ substr?: {} | undefined;
1431
+ valueOf?: (() => string) | undefined;
1432
+ codePointAt?: {} | undefined;
1433
+ includes?: {} | undefined;
1434
+ endsWith?: {} | undefined;
1435
+ normalize?: {} | undefined;
1436
+ repeat?: {} | undefined;
1437
+ startsWith?: {} | undefined;
1438
+ anchor?: {} | undefined;
1439
+ big?: (() => string) | undefined;
1440
+ blink?: (() => string) | undefined;
1441
+ bold?: (() => string) | undefined;
1442
+ fixed?: (() => string) | undefined;
1443
+ fontcolor?: {} | undefined;
1444
+ fontsize?: {} | undefined;
1445
+ italics?: (() => string) | undefined;
1446
+ link?: {} | undefined;
1447
+ small?: (() => string) | undefined;
1448
+ strike?: (() => string) | undefined;
1449
+ sub?: (() => string) | undefined;
1450
+ sup?: (() => string) | undefined;
1451
+ padStart?: {} | undefined;
1452
+ padEnd?: {} | undefined;
1453
+ trimEnd?: (() => string) | undefined;
1454
+ trimStart?: (() => string) | undefined;
1455
+ trimLeft?: (() => string) | undefined;
1456
+ trimRight?: (() => string) | undefined;
1457
+ matchAll?: {} | undefined;
1458
+ replaceAll?: {} | undefined;
1459
+ at?: {} | undefined;
1460
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1461
+ })[] | undefined;
1462
+ additionalProperties?: {
1463
+ [x: string]: unknown;
1464
+ } | undefined;
1465
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.7", {
1466
+ name: string;
1467
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1468
+ created: string;
1469
+ knowledge: string;
1470
+ modalities: {
1471
+ input: readonly ["text", "image", "pdf", "file"];
1472
+ output: readonly ["text"];
1473
+ };
1474
+ context: number;
1475
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1476
+ } & O>) | (<const O extends {
1477
+ name?: string | undefined;
1478
+ created?: string | undefined;
1479
+ knowledge?: string | undefined;
1480
+ modalities?: {
1481
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1482
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1483
+ } | undefined;
1484
+ context?: number | undefined;
1485
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1486
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1487
+ readonly [x: number]: string | undefined;
1488
+ toString?: (() => string) | undefined;
1489
+ charAt?: {} | undefined;
1490
+ charCodeAt?: {} | undefined;
1491
+ concat?: {} | undefined;
1492
+ indexOf?: {} | undefined;
1493
+ lastIndexOf?: {} | undefined;
1494
+ localeCompare?: {} | undefined;
1495
+ match?: {} | undefined;
1496
+ replace?: {} | undefined;
1497
+ search?: {} | undefined;
1498
+ slice?: {} | undefined;
1499
+ split?: {} | undefined;
1500
+ substring?: {} | undefined;
1501
+ toLowerCase?: (() => string) | undefined;
1502
+ toLocaleLowerCase?: {} | undefined;
1503
+ toUpperCase?: (() => string) | undefined;
1504
+ toLocaleUpperCase?: {} | undefined;
1505
+ trim?: (() => string) | undefined;
1506
+ readonly length?: number | undefined;
1507
+ substr?: {} | undefined;
1508
+ valueOf?: (() => string) | undefined;
1509
+ codePointAt?: {} | undefined;
1510
+ includes?: {} | undefined;
1511
+ endsWith?: {} | undefined;
1512
+ normalize?: {} | undefined;
1513
+ repeat?: {} | undefined;
1514
+ startsWith?: {} | undefined;
1515
+ anchor?: {} | undefined;
1516
+ big?: (() => string) | undefined;
1517
+ blink?: (() => string) | undefined;
1518
+ bold?: (() => string) | undefined;
1519
+ fixed?: (() => string) | undefined;
1520
+ fontcolor?: {} | undefined;
1521
+ fontsize?: {} | undefined;
1522
+ italics?: (() => string) | undefined;
1523
+ link?: {} | undefined;
1524
+ small?: (() => string) | undefined;
1525
+ strike?: (() => string) | undefined;
1526
+ sub?: (() => string) | undefined;
1527
+ sup?: (() => string) | undefined;
1528
+ padStart?: {} | undefined;
1529
+ padEnd?: {} | undefined;
1530
+ trimEnd?: (() => string) | undefined;
1531
+ trimStart?: (() => string) | undefined;
1532
+ trimLeft?: (() => string) | undefined;
1533
+ trimRight?: (() => string) | undefined;
1534
+ matchAll?: {} | undefined;
1535
+ replaceAll?: {} | undefined;
1536
+ at?: {} | undefined;
1537
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1538
+ })[] | undefined;
1539
+ additionalProperties?: {
1540
+ [x: string]: unknown;
1541
+ } | undefined;
1542
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.5", {
1543
+ name: string;
1544
+ created: string;
1545
+ knowledge: string;
1546
+ modalities: {
1547
+ input: readonly ["text", "image", "pdf", "file"];
1548
+ output: readonly ["text"];
1549
+ };
1550
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
1551
+ context: number;
1552
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1553
+ } & O>) | (<const O extends {
1554
+ name?: string | undefined;
1555
+ created?: string | undefined;
1556
+ knowledge?: string | undefined;
1557
+ modalities?: {
1558
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1559
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1560
+ } | undefined;
1561
+ context?: number | undefined;
1562
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1563
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1564
+ readonly [x: number]: string | undefined;
1565
+ toString?: (() => string) | undefined;
1566
+ charAt?: {} | undefined;
1567
+ charCodeAt?: {} | undefined;
1568
+ concat?: {} | undefined;
1569
+ indexOf?: {} | undefined;
1570
+ lastIndexOf?: {} | undefined;
1571
+ localeCompare?: {} | undefined;
1572
+ match?: {} | undefined;
1573
+ replace?: {} | undefined;
1574
+ search?: {} | undefined;
1575
+ slice?: {} | undefined;
1576
+ split?: {} | undefined;
1577
+ substring?: {} | undefined;
1578
+ toLowerCase?: (() => string) | undefined;
1579
+ toLocaleLowerCase?: {} | undefined;
1580
+ toUpperCase?: (() => string) | undefined;
1581
+ toLocaleUpperCase?: {} | undefined;
1582
+ trim?: (() => string) | undefined;
1583
+ readonly length?: number | undefined;
1584
+ substr?: {} | undefined;
1585
+ valueOf?: (() => string) | undefined;
1586
+ codePointAt?: {} | undefined;
1587
+ includes?: {} | undefined;
1588
+ endsWith?: {} | undefined;
1589
+ normalize?: {} | undefined;
1590
+ repeat?: {} | undefined;
1591
+ startsWith?: {} | undefined;
1592
+ anchor?: {} | undefined;
1593
+ big?: (() => string) | undefined;
1594
+ blink?: (() => string) | undefined;
1595
+ bold?: (() => string) | undefined;
1596
+ fixed?: (() => string) | undefined;
1597
+ fontcolor?: {} | undefined;
1598
+ fontsize?: {} | undefined;
1599
+ italics?: (() => string) | undefined;
1600
+ link?: {} | undefined;
1601
+ small?: (() => string) | undefined;
1602
+ strike?: (() => string) | undefined;
1603
+ sub?: (() => string) | undefined;
1604
+ sup?: (() => string) | undefined;
1605
+ padStart?: {} | undefined;
1606
+ padEnd?: {} | undefined;
1607
+ trimEnd?: (() => string) | undefined;
1608
+ trimStart?: (() => string) | undefined;
1609
+ trimLeft?: (() => string) | undefined;
1610
+ trimRight?: (() => string) | undefined;
1611
+ matchAll?: {} | undefined;
1612
+ replaceAll?: {} | undefined;
1613
+ at?: {} | undefined;
1614
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1615
+ })[] | undefined;
1616
+ additionalProperties?: {
1617
+ [x: string]: unknown;
1618
+ } | undefined;
1619
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.5", {
1620
+ name: string;
1621
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1622
+ created: string;
1623
+ knowledge: string;
1624
+ modalities: {
1625
+ input: readonly ["text", "image", "pdf", "file"];
1626
+ output: readonly ["text"];
1627
+ };
1628
+ context: number;
1629
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1630
+ } & O>) | (<const O extends {
1631
+ name?: string | undefined;
1632
+ created?: string | undefined;
1633
+ knowledge?: string | undefined;
1634
+ modalities?: {
1635
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1636
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1637
+ } | undefined;
1638
+ context?: number | undefined;
1639
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1640
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1641
+ readonly [x: number]: string | undefined;
1642
+ toString?: (() => string) | undefined;
1643
+ charAt?: {} | undefined;
1644
+ charCodeAt?: {} | undefined;
1645
+ concat?: {} | undefined;
1646
+ indexOf?: {} | undefined;
1647
+ lastIndexOf?: {} | undefined;
1648
+ localeCompare?: {} | undefined;
1649
+ match?: {} | undefined;
1650
+ replace?: {} | undefined;
1651
+ search?: {} | undefined;
1652
+ slice?: {} | undefined;
1653
+ split?: {} | undefined;
1654
+ substring?: {} | undefined;
1655
+ toLowerCase?: (() => string) | undefined;
1656
+ toLocaleLowerCase?: {} | undefined;
1657
+ toUpperCase?: (() => string) | undefined;
1658
+ toLocaleUpperCase?: {} | undefined;
1659
+ trim?: (() => string) | undefined;
1660
+ readonly length?: number | undefined;
1661
+ substr?: {} | undefined;
1662
+ valueOf?: (() => string) | undefined;
1663
+ codePointAt?: {} | undefined;
1664
+ includes?: {} | undefined;
1665
+ endsWith?: {} | undefined;
1666
+ normalize?: {} | undefined;
1667
+ repeat?: {} | undefined;
1668
+ startsWith?: {} | undefined;
1669
+ anchor?: {} | undefined;
1670
+ big?: (() => string) | undefined;
1671
+ blink?: (() => string) | undefined;
1672
+ bold?: (() => string) | undefined;
1673
+ fixed?: (() => string) | undefined;
1674
+ fontcolor?: {} | undefined;
1675
+ fontsize?: {} | undefined;
1676
+ italics?: (() => string) | undefined;
1677
+ link?: {} | undefined;
1678
+ small?: (() => string) | undefined;
1679
+ strike?: (() => string) | undefined;
1680
+ sub?: (() => string) | undefined;
1681
+ sup?: (() => string) | undefined;
1682
+ padStart?: {} | undefined;
1683
+ padEnd?: {} | undefined;
1684
+ trimEnd?: (() => string) | undefined;
1685
+ trimStart?: (() => string) | undefined;
1686
+ trimLeft?: (() => string) | undefined;
1687
+ trimRight?: (() => string) | undefined;
1688
+ matchAll?: {} | undefined;
1689
+ replaceAll?: {} | undefined;
1690
+ at?: {} | undefined;
1691
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1692
+ })[] | undefined;
1693
+ additionalProperties?: {
1694
+ [x: string]: unknown;
1695
+ } | undefined;
1696
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.1", {
1697
+ name: string;
1698
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1699
+ created: string;
1700
+ knowledge: string;
1701
+ modalities: {
1702
+ input: readonly ["text", "image", "pdf", "file"];
1703
+ output: readonly ["text"];
1704
+ };
1705
+ context: number;
1706
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1707
+ } & O>) | (<const O extends {
1708
+ name?: string | undefined;
1709
+ created?: string | undefined;
1710
+ knowledge?: string | undefined;
1711
+ modalities?: {
1712
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1713
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1714
+ } | undefined;
1715
+ context?: number | undefined;
1716
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1717
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1718
+ readonly [x: number]: string | undefined;
1719
+ toString?: (() => string) | undefined;
1720
+ charAt?: {} | undefined;
1721
+ charCodeAt?: {} | undefined;
1722
+ concat?: {} | undefined;
1723
+ indexOf?: {} | undefined;
1724
+ lastIndexOf?: {} | undefined;
1725
+ localeCompare?: {} | undefined;
1726
+ match?: {} | undefined;
1727
+ replace?: {} | undefined;
1728
+ search?: {} | undefined;
1729
+ slice?: {} | undefined;
1730
+ split?: {} | undefined;
1731
+ substring?: {} | undefined;
1732
+ toLowerCase?: (() => string) | undefined;
1733
+ toLocaleLowerCase?: {} | undefined;
1734
+ toUpperCase?: (() => string) | undefined;
1735
+ toLocaleUpperCase?: {} | undefined;
1736
+ trim?: (() => string) | undefined;
1737
+ readonly length?: number | undefined;
1738
+ substr?: {} | undefined;
1739
+ valueOf?: (() => string) | undefined;
1740
+ codePointAt?: {} | undefined;
1741
+ includes?: {} | undefined;
1742
+ endsWith?: {} | undefined;
1743
+ normalize?: {} | undefined;
1744
+ repeat?: {} | undefined;
1745
+ startsWith?: {} | undefined;
1746
+ anchor?: {} | undefined;
1747
+ big?: (() => string) | undefined;
1748
+ blink?: (() => string) | undefined;
1749
+ bold?: (() => string) | undefined;
1750
+ fixed?: (() => string) | undefined;
1751
+ fontcolor?: {} | undefined;
1752
+ fontsize?: {} | undefined;
1753
+ italics?: (() => string) | undefined;
1754
+ link?: {} | undefined;
1755
+ small?: (() => string) | undefined;
1756
+ strike?: (() => string) | undefined;
1757
+ sub?: (() => string) | undefined;
1758
+ sup?: (() => string) | undefined;
1759
+ padStart?: {} | undefined;
1760
+ padEnd?: {} | undefined;
1761
+ trimEnd?: (() => string) | undefined;
1762
+ trimStart?: (() => string) | undefined;
1763
+ trimLeft?: (() => string) | undefined;
1764
+ trimRight?: (() => string) | undefined;
1765
+ matchAll?: {} | undefined;
1766
+ replaceAll?: {} | undefined;
1767
+ at?: {} | undefined;
1768
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1769
+ })[] | undefined;
1770
+ additionalProperties?: {
1771
+ [x: string]: unknown;
1772
+ } | undefined;
1773
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4", {
1774
+ name: string;
1775
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1776
+ created: string;
1777
+ knowledge: string;
1778
+ modalities: {
1779
+ input: readonly ["text", "image", "pdf", "file"];
1780
+ output: readonly ["text"];
1781
+ };
1782
+ context: number;
1783
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1784
+ } & O>))[];
1785
+ readonly "v4.x": readonly [<const O extends {
1786
+ name?: string | undefined;
1787
+ created?: string | undefined;
1788
+ knowledge?: string | undefined;
1789
+ modalities?: {
1790
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1791
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1792
+ } | undefined;
1793
+ context?: number | undefined;
1794
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1795
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1796
+ readonly [x: number]: string | undefined;
1797
+ toString?: (() => string) | undefined;
1798
+ charAt?: {} | undefined;
1799
+ charCodeAt?: {} | undefined;
1800
+ concat?: {} | undefined;
1801
+ indexOf?: {} | undefined;
1802
+ lastIndexOf?: {} | undefined;
1803
+ localeCompare?: {} | undefined;
1804
+ match?: {} | undefined;
1805
+ replace?: {} | undefined;
1806
+ search?: {} | undefined;
1807
+ slice?: {} | undefined;
1808
+ split?: {} | undefined;
1809
+ substring?: {} | undefined;
1810
+ toLowerCase?: (() => string) | undefined;
1811
+ toLocaleLowerCase?: {} | undefined;
1812
+ toUpperCase?: (() => string) | undefined;
1813
+ toLocaleUpperCase?: {} | undefined;
1814
+ trim?: (() => string) | undefined;
1815
+ readonly length?: number | undefined;
1816
+ substr?: {} | undefined;
1817
+ valueOf?: (() => string) | undefined;
1818
+ codePointAt?: {} | undefined;
1819
+ includes?: {} | undefined;
1820
+ endsWith?: {} | undefined;
1821
+ normalize?: {} | undefined;
1822
+ repeat?: {} | undefined;
1823
+ startsWith?: {} | undefined;
1824
+ anchor?: {} | undefined;
1825
+ big?: (() => string) | undefined;
1826
+ blink?: (() => string) | undefined;
1827
+ bold?: (() => string) | undefined;
1828
+ fixed?: (() => string) | undefined;
1829
+ fontcolor?: {} | undefined;
1830
+ fontsize?: {} | undefined;
1831
+ italics?: (() => string) | undefined;
1832
+ link?: {} | undefined;
1833
+ small?: (() => string) | undefined;
1834
+ strike?: (() => string) | undefined;
1835
+ sub?: (() => string) | undefined;
1836
+ sup?: (() => string) | undefined;
1837
+ padStart?: {} | undefined;
1838
+ padEnd?: {} | undefined;
1839
+ trimEnd?: (() => string) | undefined;
1840
+ trimStart?: (() => string) | undefined;
1841
+ trimLeft?: (() => string) | undefined;
1842
+ trimRight?: (() => string) | undefined;
1843
+ matchAll?: {} | undefined;
1844
+ replaceAll?: {} | undefined;
1845
+ at?: {} | undefined;
1846
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1847
+ })[] | undefined;
1848
+ additionalProperties?: {
1849
+ [x: string]: unknown;
1850
+ } | undefined;
1851
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-4.5", {
1852
+ name: string;
1853
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1854
+ created: string;
1855
+ knowledge: string;
1856
+ modalities: {
1857
+ input: readonly ["text", "image", "pdf", "file"];
1858
+ output: readonly ["text"];
1859
+ };
1860
+ context: number;
1861
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1862
+ } & O>, <const O extends {
1863
+ name?: string | undefined;
1864
+ created?: string | undefined;
1865
+ knowledge?: string | undefined;
1866
+ modalities?: {
1867
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1868
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1869
+ } | undefined;
1870
+ context?: number | undefined;
1871
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1872
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1873
+ readonly [x: number]: string | undefined;
1874
+ toString?: (() => string) | undefined;
1875
+ charAt?: {} | undefined;
1876
+ charCodeAt?: {} | undefined;
1877
+ concat?: {} | undefined;
1878
+ indexOf?: {} | undefined;
1879
+ lastIndexOf?: {} | undefined;
1880
+ localeCompare?: {} | undefined;
1881
+ match?: {} | undefined;
1882
+ replace?: {} | undefined;
1883
+ search?: {} | undefined;
1884
+ slice?: {} | undefined;
1885
+ split?: {} | undefined;
1886
+ substring?: {} | undefined;
1887
+ toLowerCase?: (() => string) | undefined;
1888
+ toLocaleLowerCase?: {} | undefined;
1889
+ toUpperCase?: (() => string) | undefined;
1890
+ toLocaleUpperCase?: {} | undefined;
1891
+ trim?: (() => string) | undefined;
1892
+ readonly length?: number | undefined;
1893
+ substr?: {} | undefined;
1894
+ valueOf?: (() => string) | undefined;
1895
+ codePointAt?: {} | undefined;
1896
+ includes?: {} | undefined;
1897
+ endsWith?: {} | undefined;
1898
+ normalize?: {} | undefined;
1899
+ repeat?: {} | undefined;
1900
+ startsWith?: {} | undefined;
1901
+ anchor?: {} | undefined;
1902
+ big?: (() => string) | undefined;
1903
+ blink?: (() => string) | undefined;
1904
+ bold?: (() => string) | undefined;
1905
+ fixed?: (() => string) | undefined;
1906
+ fontcolor?: {} | undefined;
1907
+ fontsize?: {} | undefined;
1908
+ italics?: (() => string) | undefined;
1909
+ link?: {} | undefined;
1910
+ small?: (() => string) | undefined;
1911
+ strike?: (() => string) | undefined;
1912
+ sub?: (() => string) | undefined;
1913
+ sup?: (() => string) | undefined;
1914
+ padStart?: {} | undefined;
1915
+ padEnd?: {} | undefined;
1916
+ trimEnd?: (() => string) | undefined;
1917
+ trimStart?: (() => string) | undefined;
1918
+ trimLeft?: (() => string) | undefined;
1919
+ trimRight?: (() => string) | undefined;
1920
+ matchAll?: {} | undefined;
1921
+ replaceAll?: {} | undefined;
1922
+ at?: {} | undefined;
1923
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
1924
+ })[] | undefined;
1925
+ additionalProperties?: {
1926
+ [x: string]: unknown;
1927
+ } | undefined;
1928
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4.5", {
1929
+ name: string;
1930
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
1931
+ created: string;
1932
+ knowledge: string;
1933
+ modalities: {
1934
+ input: readonly ["text", "image", "pdf", "file"];
1935
+ output: readonly ["text"];
1936
+ };
1937
+ context: number;
1938
+ providers: readonly ["anthropic", "bedrock", "vertex"];
1939
+ } & O>, <const O extends {
1940
+ name?: string | undefined;
1941
+ created?: string | undefined;
1942
+ knowledge?: string | undefined;
1943
+ modalities?: {
1944
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
1945
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
1946
+ } | undefined;
1947
+ context?: number | undefined;
1948
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
1949
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
1950
+ readonly [x: number]: string | undefined;
1951
+ toString?: (() => string) | undefined;
1952
+ charAt?: {} | undefined;
1953
+ charCodeAt?: {} | undefined;
1954
+ concat?: {} | undefined;
1955
+ indexOf?: {} | undefined;
1956
+ lastIndexOf?: {} | undefined;
1957
+ localeCompare?: {} | undefined;
1958
+ match?: {} | undefined;
1959
+ replace?: {} | undefined;
1960
+ search?: {} | undefined;
1961
+ slice?: {} | undefined;
1962
+ split?: {} | undefined;
1963
+ substring?: {} | undefined;
1964
+ toLowerCase?: (() => string) | undefined;
1965
+ toLocaleLowerCase?: {} | undefined;
1966
+ toUpperCase?: (() => string) | undefined;
1967
+ toLocaleUpperCase?: {} | undefined;
1968
+ trim?: (() => string) | undefined;
1969
+ readonly length?: number | undefined;
1970
+ substr?: {} | undefined;
1971
+ valueOf?: (() => string) | undefined;
1972
+ codePointAt?: {} | undefined;
1973
+ includes?: {} | undefined;
1974
+ endsWith?: {} | undefined;
1975
+ normalize?: {} | undefined;
1976
+ repeat?: {} | undefined;
1977
+ startsWith?: {} | undefined;
1978
+ anchor?: {} | undefined;
1979
+ big?: (() => string) | undefined;
1980
+ blink?: (() => string) | undefined;
1981
+ bold?: (() => string) | undefined;
1982
+ fixed?: (() => string) | undefined;
1983
+ fontcolor?: {} | undefined;
1984
+ fontsize?: {} | undefined;
1985
+ italics?: (() => string) | undefined;
1986
+ link?: {} | undefined;
1987
+ small?: (() => string) | undefined;
1988
+ strike?: (() => string) | undefined;
1989
+ sub?: (() => string) | undefined;
1990
+ sup?: (() => string) | undefined;
1991
+ padStart?: {} | undefined;
1992
+ padEnd?: {} | undefined;
1993
+ trimEnd?: (() => string) | undefined;
1994
+ trimStart?: (() => string) | undefined;
1995
+ trimLeft?: (() => string) | undefined;
1996
+ trimRight?: (() => string) | undefined;
1997
+ matchAll?: {} | undefined;
1998
+ replaceAll?: {} | undefined;
1999
+ at?: {} | undefined;
2000
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2001
+ })[] | undefined;
2002
+ additionalProperties?: {
2003
+ [x: string]: unknown;
2004
+ } | undefined;
2005
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.5", {
2006
+ name: string;
2007
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2008
+ created: string;
2009
+ knowledge: string;
2010
+ modalities: {
2011
+ input: readonly ["text", "image", "pdf", "file"];
2012
+ output: readonly ["text"];
2013
+ };
2014
+ context: number;
2015
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2016
+ } & O>, <const O extends {
2017
+ name?: string | undefined;
2018
+ created?: string | undefined;
2019
+ knowledge?: string | undefined;
2020
+ modalities?: {
2021
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2022
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2023
+ } | undefined;
2024
+ context?: number | undefined;
2025
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2026
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2027
+ readonly [x: number]: string | undefined;
2028
+ toString?: (() => string) | undefined;
2029
+ charAt?: {} | undefined;
2030
+ charCodeAt?: {} | undefined;
2031
+ concat?: {} | undefined;
2032
+ indexOf?: {} | undefined;
2033
+ lastIndexOf?: {} | undefined;
2034
+ localeCompare?: {} | undefined;
2035
+ match?: {} | undefined;
2036
+ replace?: {} | undefined;
2037
+ search?: {} | undefined;
2038
+ slice?: {} | undefined;
2039
+ split?: {} | undefined;
2040
+ substring?: {} | undefined;
2041
+ toLowerCase?: (() => string) | undefined;
2042
+ toLocaleLowerCase?: {} | undefined;
2043
+ toUpperCase?: (() => string) | undefined;
2044
+ toLocaleUpperCase?: {} | undefined;
2045
+ trim?: (() => string) | undefined;
2046
+ readonly length?: number | undefined;
2047
+ substr?: {} | undefined;
2048
+ valueOf?: (() => string) | undefined;
2049
+ codePointAt?: {} | undefined;
2050
+ includes?: {} | undefined;
2051
+ endsWith?: {} | undefined;
2052
+ normalize?: {} | undefined;
2053
+ repeat?: {} | undefined;
2054
+ startsWith?: {} | undefined;
2055
+ anchor?: {} | undefined;
2056
+ big?: (() => string) | undefined;
2057
+ blink?: (() => string) | undefined;
2058
+ bold?: (() => string) | undefined;
2059
+ fixed?: (() => string) | undefined;
2060
+ fontcolor?: {} | undefined;
2061
+ fontsize?: {} | undefined;
2062
+ italics?: (() => string) | undefined;
2063
+ link?: {} | undefined;
2064
+ small?: (() => string) | undefined;
2065
+ strike?: (() => string) | undefined;
2066
+ sub?: (() => string) | undefined;
2067
+ sup?: (() => string) | undefined;
2068
+ padStart?: {} | undefined;
2069
+ padEnd?: {} | undefined;
2070
+ trimEnd?: (() => string) | undefined;
2071
+ trimStart?: (() => string) | undefined;
2072
+ trimLeft?: (() => string) | undefined;
2073
+ trimRight?: (() => string) | undefined;
2074
+ matchAll?: {} | undefined;
2075
+ replaceAll?: {} | undefined;
2076
+ at?: {} | undefined;
2077
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2078
+ })[] | undefined;
2079
+ additionalProperties?: {
2080
+ [x: string]: unknown;
2081
+ } | undefined;
2082
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.1", {
2083
+ name: string;
2084
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2085
+ created: string;
2086
+ knowledge: string;
2087
+ modalities: {
2088
+ input: readonly ["text", "image", "pdf", "file"];
2089
+ output: readonly ["text"];
2090
+ };
2091
+ context: number;
2092
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2093
+ } & O>, <const O extends {
2094
+ name?: string | undefined;
2095
+ created?: string | undefined;
2096
+ knowledge?: string | undefined;
2097
+ modalities?: {
2098
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2099
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2100
+ } | undefined;
2101
+ context?: number | undefined;
2102
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2103
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2104
+ readonly [x: number]: string | undefined;
2105
+ toString?: (() => string) | undefined;
2106
+ charAt?: {} | undefined;
2107
+ charCodeAt?: {} | undefined;
2108
+ concat?: {} | undefined;
2109
+ indexOf?: {} | undefined;
2110
+ lastIndexOf?: {} | undefined;
2111
+ localeCompare?: {} | undefined;
2112
+ match?: {} | undefined;
2113
+ replace?: {} | undefined;
2114
+ search?: {} | undefined;
2115
+ slice?: {} | undefined;
2116
+ split?: {} | undefined;
2117
+ substring?: {} | undefined;
2118
+ toLowerCase?: (() => string) | undefined;
2119
+ toLocaleLowerCase?: {} | undefined;
2120
+ toUpperCase?: (() => string) | undefined;
2121
+ toLocaleUpperCase?: {} | undefined;
2122
+ trim?: (() => string) | undefined;
2123
+ readonly length?: number | undefined;
2124
+ substr?: {} | undefined;
2125
+ valueOf?: (() => string) | undefined;
2126
+ codePointAt?: {} | undefined;
2127
+ includes?: {} | undefined;
2128
+ endsWith?: {} | undefined;
2129
+ normalize?: {} | undefined;
2130
+ repeat?: {} | undefined;
2131
+ startsWith?: {} | undefined;
2132
+ anchor?: {} | undefined;
2133
+ big?: (() => string) | undefined;
2134
+ blink?: (() => string) | undefined;
2135
+ bold?: (() => string) | undefined;
2136
+ fixed?: (() => string) | undefined;
2137
+ fontcolor?: {} | undefined;
2138
+ fontsize?: {} | undefined;
2139
+ italics?: (() => string) | undefined;
2140
+ link?: {} | undefined;
2141
+ small?: (() => string) | undefined;
2142
+ strike?: (() => string) | undefined;
2143
+ sub?: (() => string) | undefined;
2144
+ sup?: (() => string) | undefined;
2145
+ padStart?: {} | undefined;
2146
+ padEnd?: {} | undefined;
2147
+ trimEnd?: (() => string) | undefined;
2148
+ trimStart?: (() => string) | undefined;
2149
+ trimLeft?: (() => string) | undefined;
2150
+ trimRight?: (() => string) | undefined;
2151
+ matchAll?: {} | undefined;
2152
+ replaceAll?: {} | undefined;
2153
+ at?: {} | undefined;
2154
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2155
+ })[] | undefined;
2156
+ additionalProperties?: {
2157
+ [x: string]: unknown;
2158
+ } | undefined;
2159
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4", {
2160
+ name: string;
2161
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2162
+ created: string;
2163
+ knowledge: string;
2164
+ modalities: {
2165
+ input: readonly ["text", "image", "pdf", "file"];
2166
+ output: readonly ["text"];
2167
+ };
2168
+ context: number;
2169
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2170
+ } & O>, <const O extends {
2171
+ name?: string | undefined;
2172
+ created?: string | undefined;
2173
+ knowledge?: string | undefined;
2174
+ modalities?: {
2175
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2176
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2177
+ } | undefined;
2178
+ context?: number | undefined;
2179
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2180
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2181
+ readonly [x: number]: string | undefined;
2182
+ toString?: (() => string) | undefined;
2183
+ charAt?: {} | undefined;
2184
+ charCodeAt?: {} | undefined;
2185
+ concat?: {} | undefined;
2186
+ indexOf?: {} | undefined;
2187
+ lastIndexOf?: {} | undefined;
2188
+ localeCompare?: {} | undefined;
2189
+ match?: {} | undefined;
2190
+ replace?: {} | undefined;
2191
+ search?: {} | undefined;
2192
+ slice?: {} | undefined;
2193
+ split?: {} | undefined;
2194
+ substring?: {} | undefined;
2195
+ toLowerCase?: (() => string) | undefined;
2196
+ toLocaleLowerCase?: {} | undefined;
2197
+ toUpperCase?: (() => string) | undefined;
2198
+ toLocaleUpperCase?: {} | undefined;
2199
+ trim?: (() => string) | undefined;
2200
+ readonly length?: number | undefined;
2201
+ substr?: {} | undefined;
2202
+ valueOf?: (() => string) | undefined;
2203
+ codePointAt?: {} | undefined;
2204
+ includes?: {} | undefined;
2205
+ endsWith?: {} | undefined;
2206
+ normalize?: {} | undefined;
2207
+ repeat?: {} | undefined;
2208
+ startsWith?: {} | undefined;
2209
+ anchor?: {} | undefined;
2210
+ big?: (() => string) | undefined;
2211
+ blink?: (() => string) | undefined;
2212
+ bold?: (() => string) | undefined;
2213
+ fixed?: (() => string) | undefined;
2214
+ fontcolor?: {} | undefined;
2215
+ fontsize?: {} | undefined;
2216
+ italics?: (() => string) | undefined;
2217
+ link?: {} | undefined;
2218
+ small?: (() => string) | undefined;
2219
+ strike?: (() => string) | undefined;
2220
+ sub?: (() => string) | undefined;
2221
+ sup?: (() => string) | undefined;
2222
+ padStart?: {} | undefined;
2223
+ padEnd?: {} | undefined;
2224
+ trimEnd?: (() => string) | undefined;
2225
+ trimStart?: (() => string) | undefined;
2226
+ trimLeft?: (() => string) | undefined;
2227
+ trimRight?: (() => string) | undefined;
2228
+ matchAll?: {} | undefined;
2229
+ replaceAll?: {} | undefined;
2230
+ at?: {} | undefined;
2231
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2232
+ })[] | undefined;
2233
+ additionalProperties?: {
2234
+ [x: string]: unknown;
2235
+ } | undefined;
2236
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4", {
2237
+ name: string;
2238
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2239
+ created: string;
2240
+ knowledge: string;
2241
+ modalities: {
2242
+ input: readonly ["text", "image", "pdf", "file"];
2243
+ output: readonly ["text"];
2244
+ };
2245
+ context: number;
2246
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2247
+ } & O>];
2248
+ readonly "v3.x": readonly [<const O extends {
2249
+ name?: string | undefined;
2250
+ created?: string | undefined;
2251
+ knowledge?: string | undefined;
2252
+ modalities?: {
2253
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2254
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2255
+ } | undefined;
2256
+ context?: number | undefined;
2257
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2258
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2259
+ readonly [x: number]: string | undefined;
2260
+ toString?: (() => string) | undefined;
2261
+ charAt?: {} | undefined;
2262
+ charCodeAt?: {} | undefined;
2263
+ concat?: {} | undefined;
2264
+ indexOf?: {} | undefined;
2265
+ lastIndexOf?: {} | undefined;
2266
+ localeCompare?: {} | undefined;
2267
+ match?: {} | undefined;
2268
+ replace?: {} | undefined;
2269
+ search?: {} | undefined;
2270
+ slice?: {} | undefined;
2271
+ split?: {} | undefined;
2272
+ substring?: {} | undefined;
2273
+ toLowerCase?: (() => string) | undefined;
2274
+ toLocaleLowerCase?: {} | undefined;
2275
+ toUpperCase?: (() => string) | undefined;
2276
+ toLocaleUpperCase?: {} | undefined;
2277
+ trim?: (() => string) | undefined;
2278
+ readonly length?: number | undefined;
2279
+ substr?: {} | undefined;
2280
+ valueOf?: (() => string) | undefined;
2281
+ codePointAt?: {} | undefined;
2282
+ includes?: {} | undefined;
2283
+ endsWith?: {} | undefined;
2284
+ normalize?: {} | undefined;
2285
+ repeat?: {} | undefined;
2286
+ startsWith?: {} | undefined;
2287
+ anchor?: {} | undefined;
2288
+ big?: (() => string) | undefined;
2289
+ blink?: (() => string) | undefined;
2290
+ bold?: (() => string) | undefined;
2291
+ fixed?: (() => string) | undefined;
2292
+ fontcolor?: {} | undefined;
2293
+ fontsize?: {} | undefined;
2294
+ italics?: (() => string) | undefined;
2295
+ link?: {} | undefined;
2296
+ small?: (() => string) | undefined;
2297
+ strike?: (() => string) | undefined;
2298
+ sub?: (() => string) | undefined;
2299
+ sup?: (() => string) | undefined;
2300
+ padStart?: {} | undefined;
2301
+ padEnd?: {} | undefined;
2302
+ trimEnd?: (() => string) | undefined;
2303
+ trimStart?: (() => string) | undefined;
2304
+ trimLeft?: (() => string) | undefined;
2305
+ trimRight?: (() => string) | undefined;
2306
+ matchAll?: {} | undefined;
2307
+ replaceAll?: {} | undefined;
2308
+ at?: {} | undefined;
2309
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2310
+ })[] | undefined;
2311
+ additionalProperties?: {
2312
+ [x: string]: unknown;
2313
+ } | undefined;
2314
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.7", {
2315
+ name: string;
2316
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2317
+ created: string;
2318
+ knowledge: string;
2319
+ modalities: {
2320
+ input: readonly ["text", "image", "pdf", "file"];
2321
+ output: readonly ["text"];
2322
+ };
2323
+ context: number;
2324
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2325
+ } & O>, <const O extends {
2326
+ name?: string | undefined;
2327
+ created?: string | undefined;
2328
+ knowledge?: string | undefined;
2329
+ modalities?: {
2330
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2331
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2332
+ } | undefined;
2333
+ context?: number | undefined;
2334
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2335
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2336
+ readonly [x: number]: string | undefined;
2337
+ toString?: (() => string) | undefined;
2338
+ charAt?: {} | undefined;
2339
+ charCodeAt?: {} | undefined;
2340
+ concat?: {} | undefined;
2341
+ indexOf?: {} | undefined;
2342
+ lastIndexOf?: {} | undefined;
2343
+ localeCompare?: {} | undefined;
2344
+ match?: {} | undefined;
2345
+ replace?: {} | undefined;
2346
+ search?: {} | undefined;
2347
+ slice?: {} | undefined;
2348
+ split?: {} | undefined;
2349
+ substring?: {} | undefined;
2350
+ toLowerCase?: (() => string) | undefined;
2351
+ toLocaleLowerCase?: {} | undefined;
2352
+ toUpperCase?: (() => string) | undefined;
2353
+ toLocaleUpperCase?: {} | undefined;
2354
+ trim?: (() => string) | undefined;
2355
+ readonly length?: number | undefined;
2356
+ substr?: {} | undefined;
2357
+ valueOf?: (() => string) | undefined;
2358
+ codePointAt?: {} | undefined;
2359
+ includes?: {} | undefined;
2360
+ endsWith?: {} | undefined;
2361
+ normalize?: {} | undefined;
2362
+ repeat?: {} | undefined;
2363
+ startsWith?: {} | undefined;
2364
+ anchor?: {} | undefined;
2365
+ big?: (() => string) | undefined;
2366
+ blink?: (() => string) | undefined;
2367
+ bold?: (() => string) | undefined;
2368
+ fixed?: (() => string) | undefined;
2369
+ fontcolor?: {} | undefined;
2370
+ fontsize?: {} | undefined;
2371
+ italics?: (() => string) | undefined;
2372
+ link?: {} | undefined;
2373
+ small?: (() => string) | undefined;
2374
+ strike?: (() => string) | undefined;
2375
+ sub?: (() => string) | undefined;
2376
+ sup?: (() => string) | undefined;
2377
+ padStart?: {} | undefined;
2378
+ padEnd?: {} | undefined;
2379
+ trimEnd?: (() => string) | undefined;
2380
+ trimStart?: (() => string) | undefined;
2381
+ trimLeft?: (() => string) | undefined;
2382
+ trimRight?: (() => string) | undefined;
2383
+ matchAll?: {} | undefined;
2384
+ replaceAll?: {} | undefined;
2385
+ at?: {} | undefined;
2386
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2387
+ })[] | undefined;
2388
+ additionalProperties?: {
2389
+ [x: string]: unknown;
2390
+ } | undefined;
2391
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.5", {
2392
+ name: string;
2393
+ created: string;
2394
+ knowledge: string;
2395
+ modalities: {
2396
+ input: readonly ["text", "image", "pdf", "file"];
2397
+ output: readonly ["text"];
2398
+ };
2399
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
2400
+ context: number;
2401
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2402
+ } & O>, <const O extends {
2403
+ name?: string | undefined;
2404
+ created?: string | undefined;
2405
+ knowledge?: string | undefined;
2406
+ modalities?: {
2407
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2408
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2409
+ } | undefined;
2410
+ context?: number | undefined;
2411
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2412
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2413
+ readonly [x: number]: string | undefined;
2414
+ toString?: (() => string) | undefined;
2415
+ charAt?: {} | undefined;
2416
+ charCodeAt?: {} | undefined;
2417
+ concat?: {} | undefined;
2418
+ indexOf?: {} | undefined;
2419
+ lastIndexOf?: {} | undefined;
2420
+ localeCompare?: {} | undefined;
2421
+ match?: {} | undefined;
2422
+ replace?: {} | undefined;
2423
+ search?: {} | undefined;
2424
+ slice?: {} | undefined;
2425
+ split?: {} | undefined;
2426
+ substring?: {} | undefined;
2427
+ toLowerCase?: (() => string) | undefined;
2428
+ toLocaleLowerCase?: {} | undefined;
2429
+ toUpperCase?: (() => string) | undefined;
2430
+ toLocaleUpperCase?: {} | undefined;
2431
+ trim?: (() => string) | undefined;
2432
+ readonly length?: number | undefined;
2433
+ substr?: {} | undefined;
2434
+ valueOf?: (() => string) | undefined;
2435
+ codePointAt?: {} | undefined;
2436
+ includes?: {} | undefined;
2437
+ endsWith?: {} | undefined;
2438
+ normalize?: {} | undefined;
2439
+ repeat?: {} | undefined;
2440
+ startsWith?: {} | undefined;
2441
+ anchor?: {} | undefined;
2442
+ big?: (() => string) | undefined;
2443
+ blink?: (() => string) | undefined;
2444
+ bold?: (() => string) | undefined;
2445
+ fixed?: (() => string) | undefined;
2446
+ fontcolor?: {} | undefined;
2447
+ fontsize?: {} | undefined;
2448
+ italics?: (() => string) | undefined;
2449
+ link?: {} | undefined;
2450
+ small?: (() => string) | undefined;
2451
+ strike?: (() => string) | undefined;
2452
+ sub?: (() => string) | undefined;
2453
+ sup?: (() => string) | undefined;
2454
+ padStart?: {} | undefined;
2455
+ padEnd?: {} | undefined;
2456
+ trimEnd?: (() => string) | undefined;
2457
+ trimStart?: (() => string) | undefined;
2458
+ trimLeft?: (() => string) | undefined;
2459
+ trimRight?: (() => string) | undefined;
2460
+ matchAll?: {} | undefined;
2461
+ replaceAll?: {} | undefined;
2462
+ at?: {} | undefined;
2463
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2464
+ })[] | undefined;
2465
+ additionalProperties?: {
2466
+ [x: string]: unknown;
2467
+ } | undefined;
2468
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3.5", {
2469
+ name: string;
2470
+ created: string;
2471
+ knowledge: string;
2472
+ modalities: {
2473
+ input: readonly ["text", "image", "pdf", "file"];
2474
+ output: readonly ["text"];
2475
+ };
2476
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
2477
+ context: number;
2478
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2479
+ } & O>, <const O extends {
2480
+ name?: string | undefined;
2481
+ created?: string | undefined;
2482
+ knowledge?: string | undefined;
2483
+ modalities?: {
2484
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2485
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2486
+ } | undefined;
2487
+ context?: number | undefined;
2488
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2489
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2490
+ readonly [x: number]: string | undefined;
2491
+ toString?: (() => string) | undefined;
2492
+ charAt?: {} | undefined;
2493
+ charCodeAt?: {} | undefined;
2494
+ concat?: {} | undefined;
2495
+ indexOf?: {} | undefined;
2496
+ lastIndexOf?: {} | undefined;
2497
+ localeCompare?: {} | undefined;
2498
+ match?: {} | undefined;
2499
+ replace?: {} | undefined;
2500
+ search?: {} | undefined;
2501
+ slice?: {} | undefined;
2502
+ split?: {} | undefined;
2503
+ substring?: {} | undefined;
2504
+ toLowerCase?: (() => string) | undefined;
2505
+ toLocaleLowerCase?: {} | undefined;
2506
+ toUpperCase?: (() => string) | undefined;
2507
+ toLocaleUpperCase?: {} | undefined;
2508
+ trim?: (() => string) | undefined;
2509
+ readonly length?: number | undefined;
2510
+ substr?: {} | undefined;
2511
+ valueOf?: (() => string) | undefined;
2512
+ codePointAt?: {} | undefined;
2513
+ includes?: {} | undefined;
2514
+ endsWith?: {} | undefined;
2515
+ normalize?: {} | undefined;
2516
+ repeat?: {} | undefined;
2517
+ startsWith?: {} | undefined;
2518
+ anchor?: {} | undefined;
2519
+ big?: (() => string) | undefined;
2520
+ blink?: (() => string) | undefined;
2521
+ bold?: (() => string) | undefined;
2522
+ fixed?: (() => string) | undefined;
2523
+ fontcolor?: {} | undefined;
2524
+ fontsize?: {} | undefined;
2525
+ italics?: (() => string) | undefined;
2526
+ link?: {} | undefined;
2527
+ small?: (() => string) | undefined;
2528
+ strike?: (() => string) | undefined;
2529
+ sub?: (() => string) | undefined;
2530
+ sup?: (() => string) | undefined;
2531
+ padStart?: {} | undefined;
2532
+ padEnd?: {} | undefined;
2533
+ trimEnd?: (() => string) | undefined;
2534
+ trimStart?: (() => string) | undefined;
2535
+ trimLeft?: (() => string) | undefined;
2536
+ trimRight?: (() => string) | undefined;
2537
+ matchAll?: {} | undefined;
2538
+ replaceAll?: {} | undefined;
2539
+ at?: {} | undefined;
2540
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2541
+ })[] | undefined;
2542
+ additionalProperties?: {
2543
+ [x: string]: unknown;
2544
+ } | undefined;
2545
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3", {
2546
+ name: string;
2547
+ created: string;
2548
+ knowledge: string;
2549
+ modalities: {
2550
+ input: readonly ["text", "image", "file"];
2551
+ output: readonly ["text"];
2552
+ };
2553
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
2554
+ context: number;
2555
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2556
+ } & O>];
2557
+ readonly "v4.5": readonly [<const O extends {
2558
+ name?: string | undefined;
2559
+ created?: string | undefined;
2560
+ knowledge?: string | undefined;
2561
+ modalities?: {
2562
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2563
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2564
+ } | undefined;
2565
+ context?: number | undefined;
2566
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2567
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2568
+ readonly [x: number]: string | undefined;
2569
+ toString?: (() => string) | undefined;
2570
+ charAt?: {} | undefined;
2571
+ charCodeAt?: {} | undefined;
2572
+ concat?: {} | undefined;
2573
+ indexOf?: {} | undefined;
2574
+ lastIndexOf?: {} | undefined;
2575
+ localeCompare?: {} | undefined;
2576
+ match?: {} | undefined;
2577
+ replace?: {} | undefined;
2578
+ search?: {} | undefined;
2579
+ slice?: {} | undefined;
2580
+ split?: {} | undefined;
2581
+ substring?: {} | undefined;
2582
+ toLowerCase?: (() => string) | undefined;
2583
+ toLocaleLowerCase?: {} | undefined;
2584
+ toUpperCase?: (() => string) | undefined;
2585
+ toLocaleUpperCase?: {} | undefined;
2586
+ trim?: (() => string) | undefined;
2587
+ readonly length?: number | undefined;
2588
+ substr?: {} | undefined;
2589
+ valueOf?: (() => string) | undefined;
2590
+ codePointAt?: {} | undefined;
2591
+ includes?: {} | undefined;
2592
+ endsWith?: {} | undefined;
2593
+ normalize?: {} | undefined;
2594
+ repeat?: {} | undefined;
2595
+ startsWith?: {} | undefined;
2596
+ anchor?: {} | undefined;
2597
+ big?: (() => string) | undefined;
2598
+ blink?: (() => string) | undefined;
2599
+ bold?: (() => string) | undefined;
2600
+ fixed?: (() => string) | undefined;
2601
+ fontcolor?: {} | undefined;
2602
+ fontsize?: {} | undefined;
2603
+ italics?: (() => string) | undefined;
2604
+ link?: {} | undefined;
2605
+ small?: (() => string) | undefined;
2606
+ strike?: (() => string) | undefined;
2607
+ sub?: (() => string) | undefined;
2608
+ sup?: (() => string) | undefined;
2609
+ padStart?: {} | undefined;
2610
+ padEnd?: {} | undefined;
2611
+ trimEnd?: (() => string) | undefined;
2612
+ trimStart?: (() => string) | undefined;
2613
+ trimLeft?: (() => string) | undefined;
2614
+ trimRight?: (() => string) | undefined;
2615
+ matchAll?: {} | undefined;
2616
+ replaceAll?: {} | undefined;
2617
+ at?: {} | undefined;
2618
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2619
+ })[] | undefined;
2620
+ additionalProperties?: {
2621
+ [x: string]: unknown;
2622
+ } | undefined;
2623
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-4.5", {
2624
+ name: string;
2625
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2626
+ created: string;
2627
+ knowledge: string;
2628
+ modalities: {
2629
+ input: readonly ["text", "image", "pdf", "file"];
2630
+ output: readonly ["text"];
2631
+ };
2632
+ context: number;
2633
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2634
+ } & O>, <const O extends {
2635
+ name?: string | undefined;
2636
+ created?: string | undefined;
2637
+ knowledge?: string | undefined;
2638
+ modalities?: {
2639
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2640
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2641
+ } | undefined;
2642
+ context?: number | undefined;
2643
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2644
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2645
+ readonly [x: number]: string | undefined;
2646
+ toString?: (() => string) | undefined;
2647
+ charAt?: {} | undefined;
2648
+ charCodeAt?: {} | undefined;
2649
+ concat?: {} | undefined;
2650
+ indexOf?: {} | undefined;
2651
+ lastIndexOf?: {} | undefined;
2652
+ localeCompare?: {} | undefined;
2653
+ match?: {} | undefined;
2654
+ replace?: {} | undefined;
2655
+ search?: {} | undefined;
2656
+ slice?: {} | undefined;
2657
+ split?: {} | undefined;
2658
+ substring?: {} | undefined;
2659
+ toLowerCase?: (() => string) | undefined;
2660
+ toLocaleLowerCase?: {} | undefined;
2661
+ toUpperCase?: (() => string) | undefined;
2662
+ toLocaleUpperCase?: {} | undefined;
2663
+ trim?: (() => string) | undefined;
2664
+ readonly length?: number | undefined;
2665
+ substr?: {} | undefined;
2666
+ valueOf?: (() => string) | undefined;
2667
+ codePointAt?: {} | undefined;
2668
+ includes?: {} | undefined;
2669
+ endsWith?: {} | undefined;
2670
+ normalize?: {} | undefined;
2671
+ repeat?: {} | undefined;
2672
+ startsWith?: {} | undefined;
2673
+ anchor?: {} | undefined;
2674
+ big?: (() => string) | undefined;
2675
+ blink?: (() => string) | undefined;
2676
+ bold?: (() => string) | undefined;
2677
+ fixed?: (() => string) | undefined;
2678
+ fontcolor?: {} | undefined;
2679
+ fontsize?: {} | undefined;
2680
+ italics?: (() => string) | undefined;
2681
+ link?: {} | undefined;
2682
+ small?: (() => string) | undefined;
2683
+ strike?: (() => string) | undefined;
2684
+ sub?: (() => string) | undefined;
2685
+ sup?: (() => string) | undefined;
2686
+ padStart?: {} | undefined;
2687
+ padEnd?: {} | undefined;
2688
+ trimEnd?: (() => string) | undefined;
2689
+ trimStart?: (() => string) | undefined;
2690
+ trimLeft?: (() => string) | undefined;
2691
+ trimRight?: (() => string) | undefined;
2692
+ matchAll?: {} | undefined;
2693
+ replaceAll?: {} | undefined;
2694
+ at?: {} | undefined;
2695
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2696
+ })[] | undefined;
2697
+ additionalProperties?: {
2698
+ [x: string]: unknown;
2699
+ } | undefined;
2700
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4.5", {
2701
+ name: string;
2702
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2703
+ created: string;
2704
+ knowledge: string;
2705
+ modalities: {
2706
+ input: readonly ["text", "image", "pdf", "file"];
2707
+ output: readonly ["text"];
2708
+ };
2709
+ context: number;
2710
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2711
+ } & O>, <const O extends {
2712
+ name?: string | undefined;
2713
+ created?: string | undefined;
2714
+ knowledge?: string | undefined;
2715
+ modalities?: {
2716
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2717
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2718
+ } | undefined;
2719
+ context?: number | undefined;
2720
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2721
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2722
+ readonly [x: number]: string | undefined;
2723
+ toString?: (() => string) | undefined;
2724
+ charAt?: {} | undefined;
2725
+ charCodeAt?: {} | undefined;
2726
+ concat?: {} | undefined;
2727
+ indexOf?: {} | undefined;
2728
+ lastIndexOf?: {} | undefined;
2729
+ localeCompare?: {} | undefined;
2730
+ match?: {} | undefined;
2731
+ replace?: {} | undefined;
2732
+ search?: {} | undefined;
2733
+ slice?: {} | undefined;
2734
+ split?: {} | undefined;
2735
+ substring?: {} | undefined;
2736
+ toLowerCase?: (() => string) | undefined;
2737
+ toLocaleLowerCase?: {} | undefined;
2738
+ toUpperCase?: (() => string) | undefined;
2739
+ toLocaleUpperCase?: {} | undefined;
2740
+ trim?: (() => string) | undefined;
2741
+ readonly length?: number | undefined;
2742
+ substr?: {} | undefined;
2743
+ valueOf?: (() => string) | undefined;
2744
+ codePointAt?: {} | undefined;
2745
+ includes?: {} | undefined;
2746
+ endsWith?: {} | undefined;
2747
+ normalize?: {} | undefined;
2748
+ repeat?: {} | undefined;
2749
+ startsWith?: {} | undefined;
2750
+ anchor?: {} | undefined;
2751
+ big?: (() => string) | undefined;
2752
+ blink?: (() => string) | undefined;
2753
+ bold?: (() => string) | undefined;
2754
+ fixed?: (() => string) | undefined;
2755
+ fontcolor?: {} | undefined;
2756
+ fontsize?: {} | undefined;
2757
+ italics?: (() => string) | undefined;
2758
+ link?: {} | undefined;
2759
+ small?: (() => string) | undefined;
2760
+ strike?: (() => string) | undefined;
2761
+ sub?: (() => string) | undefined;
2762
+ sup?: (() => string) | undefined;
2763
+ padStart?: {} | undefined;
2764
+ padEnd?: {} | undefined;
2765
+ trimEnd?: (() => string) | undefined;
2766
+ trimStart?: (() => string) | undefined;
2767
+ trimLeft?: (() => string) | undefined;
2768
+ trimRight?: (() => string) | undefined;
2769
+ matchAll?: {} | undefined;
2770
+ replaceAll?: {} | undefined;
2771
+ at?: {} | undefined;
2772
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2773
+ })[] | undefined;
2774
+ additionalProperties?: {
2775
+ [x: string]: unknown;
2776
+ } | undefined;
2777
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.5", {
2778
+ name: string;
2779
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2780
+ created: string;
2781
+ knowledge: string;
2782
+ modalities: {
2783
+ input: readonly ["text", "image", "pdf", "file"];
2784
+ output: readonly ["text"];
2785
+ };
2786
+ context: number;
2787
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2788
+ } & O>];
2789
+ readonly "v4.1": readonly [<const O extends {
2790
+ name?: string | undefined;
2791
+ created?: string | undefined;
2792
+ knowledge?: string | undefined;
2793
+ modalities?: {
2794
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2795
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2796
+ } | undefined;
2797
+ context?: number | undefined;
2798
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2799
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2800
+ readonly [x: number]: string | undefined;
2801
+ toString?: (() => string) | undefined;
2802
+ charAt?: {} | undefined;
2803
+ charCodeAt?: {} | undefined;
2804
+ concat?: {} | undefined;
2805
+ indexOf?: {} | undefined;
2806
+ lastIndexOf?: {} | undefined;
2807
+ localeCompare?: {} | undefined;
2808
+ match?: {} | undefined;
2809
+ replace?: {} | undefined;
2810
+ search?: {} | undefined;
2811
+ slice?: {} | undefined;
2812
+ split?: {} | undefined;
2813
+ substring?: {} | undefined;
2814
+ toLowerCase?: (() => string) | undefined;
2815
+ toLocaleLowerCase?: {} | undefined;
2816
+ toUpperCase?: (() => string) | undefined;
2817
+ toLocaleUpperCase?: {} | undefined;
2818
+ trim?: (() => string) | undefined;
2819
+ readonly length?: number | undefined;
2820
+ substr?: {} | undefined;
2821
+ valueOf?: (() => string) | undefined;
2822
+ codePointAt?: {} | undefined;
2823
+ includes?: {} | undefined;
2824
+ endsWith?: {} | undefined;
2825
+ normalize?: {} | undefined;
2826
+ repeat?: {} | undefined;
2827
+ startsWith?: {} | undefined;
2828
+ anchor?: {} | undefined;
2829
+ big?: (() => string) | undefined;
2830
+ blink?: (() => string) | undefined;
2831
+ bold?: (() => string) | undefined;
2832
+ fixed?: (() => string) | undefined;
2833
+ fontcolor?: {} | undefined;
2834
+ fontsize?: {} | undefined;
2835
+ italics?: (() => string) | undefined;
2836
+ link?: {} | undefined;
2837
+ small?: (() => string) | undefined;
2838
+ strike?: (() => string) | undefined;
2839
+ sub?: (() => string) | undefined;
2840
+ sup?: (() => string) | undefined;
2841
+ padStart?: {} | undefined;
2842
+ padEnd?: {} | undefined;
2843
+ trimEnd?: (() => string) | undefined;
2844
+ trimStart?: (() => string) | undefined;
2845
+ trimLeft?: (() => string) | undefined;
2846
+ trimRight?: (() => string) | undefined;
2847
+ matchAll?: {} | undefined;
2848
+ replaceAll?: {} | undefined;
2849
+ at?: {} | undefined;
2850
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2851
+ })[] | undefined;
2852
+ additionalProperties?: {
2853
+ [x: string]: unknown;
2854
+ } | undefined;
2855
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.1", {
2856
+ name: string;
2857
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2858
+ created: string;
2859
+ knowledge: string;
2860
+ modalities: {
2861
+ input: readonly ["text", "image", "pdf", "file"];
2862
+ output: readonly ["text"];
2863
+ };
2864
+ context: number;
2865
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2866
+ } & O>];
2867
+ readonly v4: readonly [<const O extends {
2868
+ name?: string | undefined;
2869
+ created?: string | undefined;
2870
+ knowledge?: string | undefined;
2871
+ modalities?: {
2872
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2873
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2874
+ } | undefined;
2875
+ context?: number | undefined;
2876
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2877
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2878
+ readonly [x: number]: string | undefined;
2879
+ toString?: (() => string) | undefined;
2880
+ charAt?: {} | undefined;
2881
+ charCodeAt?: {} | undefined;
2882
+ concat?: {} | undefined;
2883
+ indexOf?: {} | undefined;
2884
+ lastIndexOf?: {} | undefined;
2885
+ localeCompare?: {} | undefined;
2886
+ match?: {} | undefined;
2887
+ replace?: {} | undefined;
2888
+ search?: {} | undefined;
2889
+ slice?: {} | undefined;
2890
+ split?: {} | undefined;
2891
+ substring?: {} | undefined;
2892
+ toLowerCase?: (() => string) | undefined;
2893
+ toLocaleLowerCase?: {} | undefined;
2894
+ toUpperCase?: (() => string) | undefined;
2895
+ toLocaleUpperCase?: {} | undefined;
2896
+ trim?: (() => string) | undefined;
2897
+ readonly length?: number | undefined;
2898
+ substr?: {} | undefined;
2899
+ valueOf?: (() => string) | undefined;
2900
+ codePointAt?: {} | undefined;
2901
+ includes?: {} | undefined;
2902
+ endsWith?: {} | undefined;
2903
+ normalize?: {} | undefined;
2904
+ repeat?: {} | undefined;
2905
+ startsWith?: {} | undefined;
2906
+ anchor?: {} | undefined;
2907
+ big?: (() => string) | undefined;
2908
+ blink?: (() => string) | undefined;
2909
+ bold?: (() => string) | undefined;
2910
+ fixed?: (() => string) | undefined;
2911
+ fontcolor?: {} | undefined;
2912
+ fontsize?: {} | undefined;
2913
+ italics?: (() => string) | undefined;
2914
+ link?: {} | undefined;
2915
+ small?: (() => string) | undefined;
2916
+ strike?: (() => string) | undefined;
2917
+ sub?: (() => string) | undefined;
2918
+ sup?: (() => string) | undefined;
2919
+ padStart?: {} | undefined;
2920
+ padEnd?: {} | undefined;
2921
+ trimEnd?: (() => string) | undefined;
2922
+ trimStart?: (() => string) | undefined;
2923
+ trimLeft?: (() => string) | undefined;
2924
+ trimRight?: (() => string) | undefined;
2925
+ matchAll?: {} | undefined;
2926
+ replaceAll?: {} | undefined;
2927
+ at?: {} | undefined;
2928
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
2929
+ })[] | undefined;
2930
+ additionalProperties?: {
2931
+ [x: string]: unknown;
2932
+ } | undefined;
2933
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4", {
2934
+ name: string;
2935
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
2936
+ created: string;
2937
+ knowledge: string;
2938
+ modalities: {
2939
+ input: readonly ["text", "image", "pdf", "file"];
2940
+ output: readonly ["text"];
2941
+ };
2942
+ context: number;
2943
+ providers: readonly ["anthropic", "bedrock", "vertex"];
2944
+ } & O>, <const O extends {
2945
+ name?: string | undefined;
2946
+ created?: string | undefined;
2947
+ knowledge?: string | undefined;
2948
+ modalities?: {
2949
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
2950
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
2951
+ } | undefined;
2952
+ context?: number | undefined;
2953
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
2954
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
2955
+ readonly [x: number]: string | undefined;
2956
+ toString?: (() => string) | undefined;
2957
+ charAt?: {} | undefined;
2958
+ charCodeAt?: {} | undefined;
2959
+ concat?: {} | undefined;
2960
+ indexOf?: {} | undefined;
2961
+ lastIndexOf?: {} | undefined;
2962
+ localeCompare?: {} | undefined;
2963
+ match?: {} | undefined;
2964
+ replace?: {} | undefined;
2965
+ search?: {} | undefined;
2966
+ slice?: {} | undefined;
2967
+ split?: {} | undefined;
2968
+ substring?: {} | undefined;
2969
+ toLowerCase?: (() => string) | undefined;
2970
+ toLocaleLowerCase?: {} | undefined;
2971
+ toUpperCase?: (() => string) | undefined;
2972
+ toLocaleUpperCase?: {} | undefined;
2973
+ trim?: (() => string) | undefined;
2974
+ readonly length?: number | undefined;
2975
+ substr?: {} | undefined;
2976
+ valueOf?: (() => string) | undefined;
2977
+ codePointAt?: {} | undefined;
2978
+ includes?: {} | undefined;
2979
+ endsWith?: {} | undefined;
2980
+ normalize?: {} | undefined;
2981
+ repeat?: {} | undefined;
2982
+ startsWith?: {} | undefined;
2983
+ anchor?: {} | undefined;
2984
+ big?: (() => string) | undefined;
2985
+ blink?: (() => string) | undefined;
2986
+ bold?: (() => string) | undefined;
2987
+ fixed?: (() => string) | undefined;
2988
+ fontcolor?: {} | undefined;
2989
+ fontsize?: {} | undefined;
2990
+ italics?: (() => string) | undefined;
2991
+ link?: {} | undefined;
2992
+ small?: (() => string) | undefined;
2993
+ strike?: (() => string) | undefined;
2994
+ sub?: (() => string) | undefined;
2995
+ sup?: (() => string) | undefined;
2996
+ padStart?: {} | undefined;
2997
+ padEnd?: {} | undefined;
2998
+ trimEnd?: (() => string) | undefined;
2999
+ trimStart?: (() => string) | undefined;
3000
+ trimLeft?: (() => string) | undefined;
3001
+ trimRight?: (() => string) | undefined;
3002
+ matchAll?: {} | undefined;
3003
+ replaceAll?: {} | undefined;
3004
+ at?: {} | undefined;
3005
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3006
+ })[] | undefined;
3007
+ additionalProperties?: {
3008
+ [x: string]: unknown;
3009
+ } | undefined;
3010
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4", {
3011
+ name: string;
3012
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3013
+ created: string;
3014
+ knowledge: string;
3015
+ modalities: {
3016
+ input: readonly ["text", "image", "pdf", "file"];
3017
+ output: readonly ["text"];
3018
+ };
3019
+ context: number;
3020
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3021
+ } & O>];
3022
+ readonly "v3.7": readonly [<const O extends {
3023
+ name?: string | undefined;
3024
+ created?: string | undefined;
3025
+ knowledge?: string | undefined;
3026
+ modalities?: {
3027
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3028
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3029
+ } | undefined;
3030
+ context?: number | undefined;
3031
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3032
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3033
+ readonly [x: number]: string | undefined;
3034
+ toString?: (() => string) | undefined;
3035
+ charAt?: {} | undefined;
3036
+ charCodeAt?: {} | undefined;
3037
+ concat?: {} | undefined;
3038
+ indexOf?: {} | undefined;
3039
+ lastIndexOf?: {} | undefined;
3040
+ localeCompare?: {} | undefined;
3041
+ match?: {} | undefined;
3042
+ replace?: {} | undefined;
3043
+ search?: {} | undefined;
3044
+ slice?: {} | undefined;
3045
+ split?: {} | undefined;
3046
+ substring?: {} | undefined;
3047
+ toLowerCase?: (() => string) | undefined;
3048
+ toLocaleLowerCase?: {} | undefined;
3049
+ toUpperCase?: (() => string) | undefined;
3050
+ toLocaleUpperCase?: {} | undefined;
3051
+ trim?: (() => string) | undefined;
3052
+ readonly length?: number | undefined;
3053
+ substr?: {} | undefined;
3054
+ valueOf?: (() => string) | undefined;
3055
+ codePointAt?: {} | undefined;
3056
+ includes?: {} | undefined;
3057
+ endsWith?: {} | undefined;
3058
+ normalize?: {} | undefined;
3059
+ repeat?: {} | undefined;
3060
+ startsWith?: {} | undefined;
3061
+ anchor?: {} | undefined;
3062
+ big?: (() => string) | undefined;
3063
+ blink?: (() => string) | undefined;
3064
+ bold?: (() => string) | undefined;
3065
+ fixed?: (() => string) | undefined;
3066
+ fontcolor?: {} | undefined;
3067
+ fontsize?: {} | undefined;
3068
+ italics?: (() => string) | undefined;
3069
+ link?: {} | undefined;
3070
+ small?: (() => string) | undefined;
3071
+ strike?: (() => string) | undefined;
3072
+ sub?: (() => string) | undefined;
3073
+ sup?: (() => string) | undefined;
3074
+ padStart?: {} | undefined;
3075
+ padEnd?: {} | undefined;
3076
+ trimEnd?: (() => string) | undefined;
3077
+ trimStart?: (() => string) | undefined;
3078
+ trimLeft?: (() => string) | undefined;
3079
+ trimRight?: (() => string) | undefined;
3080
+ matchAll?: {} | undefined;
3081
+ replaceAll?: {} | undefined;
3082
+ at?: {} | undefined;
3083
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3084
+ })[] | undefined;
3085
+ additionalProperties?: {
3086
+ [x: string]: unknown;
3087
+ } | undefined;
3088
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.7", {
3089
+ name: string;
3090
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3091
+ created: string;
3092
+ knowledge: string;
3093
+ modalities: {
3094
+ input: readonly ["text", "image", "pdf", "file"];
3095
+ output: readonly ["text"];
3096
+ };
3097
+ context: number;
3098
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3099
+ } & O>];
3100
+ readonly "v3.5": readonly [<const O extends {
3101
+ name?: string | undefined;
3102
+ created?: string | undefined;
3103
+ knowledge?: string | undefined;
3104
+ modalities?: {
3105
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3106
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3107
+ } | undefined;
3108
+ context?: number | undefined;
3109
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3110
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3111
+ readonly [x: number]: string | undefined;
3112
+ toString?: (() => string) | undefined;
3113
+ charAt?: {} | undefined;
3114
+ charCodeAt?: {} | undefined;
3115
+ concat?: {} | undefined;
3116
+ indexOf?: {} | undefined;
3117
+ lastIndexOf?: {} | undefined;
3118
+ localeCompare?: {} | undefined;
3119
+ match?: {} | undefined;
3120
+ replace?: {} | undefined;
3121
+ search?: {} | undefined;
3122
+ slice?: {} | undefined;
3123
+ split?: {} | undefined;
3124
+ substring?: {} | undefined;
3125
+ toLowerCase?: (() => string) | undefined;
3126
+ toLocaleLowerCase?: {} | undefined;
3127
+ toUpperCase?: (() => string) | undefined;
3128
+ toLocaleUpperCase?: {} | undefined;
3129
+ trim?: (() => string) | undefined;
3130
+ readonly length?: number | undefined;
3131
+ substr?: {} | undefined;
3132
+ valueOf?: (() => string) | undefined;
3133
+ codePointAt?: {} | undefined;
3134
+ includes?: {} | undefined;
3135
+ endsWith?: {} | undefined;
3136
+ normalize?: {} | undefined;
3137
+ repeat?: {} | undefined;
3138
+ startsWith?: {} | undefined;
3139
+ anchor?: {} | undefined;
3140
+ big?: (() => string) | undefined;
3141
+ blink?: (() => string) | undefined;
3142
+ bold?: (() => string) | undefined;
3143
+ fixed?: (() => string) | undefined;
3144
+ fontcolor?: {} | undefined;
3145
+ fontsize?: {} | undefined;
3146
+ italics?: (() => string) | undefined;
3147
+ link?: {} | undefined;
3148
+ small?: (() => string) | undefined;
3149
+ strike?: (() => string) | undefined;
3150
+ sub?: (() => string) | undefined;
3151
+ sup?: (() => string) | undefined;
3152
+ padStart?: {} | undefined;
3153
+ padEnd?: {} | undefined;
3154
+ trimEnd?: (() => string) | undefined;
3155
+ trimStart?: (() => string) | undefined;
3156
+ trimLeft?: (() => string) | undefined;
3157
+ trimRight?: (() => string) | undefined;
3158
+ matchAll?: {} | undefined;
3159
+ replaceAll?: {} | undefined;
3160
+ at?: {} | undefined;
3161
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3162
+ })[] | undefined;
3163
+ additionalProperties?: {
3164
+ [x: string]: unknown;
3165
+ } | undefined;
3166
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.5", {
3167
+ name: string;
3168
+ created: string;
3169
+ knowledge: string;
3170
+ modalities: {
3171
+ input: readonly ["text", "image", "pdf", "file"];
3172
+ output: readonly ["text"];
3173
+ };
3174
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
3175
+ context: number;
3176
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3177
+ } & O>, <const O extends {
3178
+ name?: string | undefined;
3179
+ created?: string | undefined;
3180
+ knowledge?: string | undefined;
3181
+ modalities?: {
3182
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3183
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3184
+ } | undefined;
3185
+ context?: number | undefined;
3186
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3187
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3188
+ readonly [x: number]: string | undefined;
3189
+ toString?: (() => string) | undefined;
3190
+ charAt?: {} | undefined;
3191
+ charCodeAt?: {} | undefined;
3192
+ concat?: {} | undefined;
3193
+ indexOf?: {} | undefined;
3194
+ lastIndexOf?: {} | undefined;
3195
+ localeCompare?: {} | undefined;
3196
+ match?: {} | undefined;
3197
+ replace?: {} | undefined;
3198
+ search?: {} | undefined;
3199
+ slice?: {} | undefined;
3200
+ split?: {} | undefined;
3201
+ substring?: {} | undefined;
3202
+ toLowerCase?: (() => string) | undefined;
3203
+ toLocaleLowerCase?: {} | undefined;
3204
+ toUpperCase?: (() => string) | undefined;
3205
+ toLocaleUpperCase?: {} | undefined;
3206
+ trim?: (() => string) | undefined;
3207
+ readonly length?: number | undefined;
3208
+ substr?: {} | undefined;
3209
+ valueOf?: (() => string) | undefined;
3210
+ codePointAt?: {} | undefined;
3211
+ includes?: {} | undefined;
3212
+ endsWith?: {} | undefined;
3213
+ normalize?: {} | undefined;
3214
+ repeat?: {} | undefined;
3215
+ startsWith?: {} | undefined;
3216
+ anchor?: {} | undefined;
3217
+ big?: (() => string) | undefined;
3218
+ blink?: (() => string) | undefined;
3219
+ bold?: (() => string) | undefined;
3220
+ fixed?: (() => string) | undefined;
3221
+ fontcolor?: {} | undefined;
3222
+ fontsize?: {} | undefined;
3223
+ italics?: (() => string) | undefined;
3224
+ link?: {} | undefined;
3225
+ small?: (() => string) | undefined;
3226
+ strike?: (() => string) | undefined;
3227
+ sub?: (() => string) | undefined;
3228
+ sup?: (() => string) | undefined;
3229
+ padStart?: {} | undefined;
3230
+ padEnd?: {} | undefined;
3231
+ trimEnd?: (() => string) | undefined;
3232
+ trimStart?: (() => string) | undefined;
3233
+ trimLeft?: (() => string) | undefined;
3234
+ trimRight?: (() => string) | undefined;
3235
+ matchAll?: {} | undefined;
3236
+ replaceAll?: {} | undefined;
3237
+ at?: {} | undefined;
3238
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3239
+ })[] | undefined;
3240
+ additionalProperties?: {
3241
+ [x: string]: unknown;
3242
+ } | undefined;
3243
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3.5", {
3244
+ name: string;
3245
+ created: string;
3246
+ knowledge: string;
3247
+ modalities: {
3248
+ input: readonly ["text", "image", "pdf", "file"];
3249
+ output: readonly ["text"];
3250
+ };
3251
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
3252
+ context: number;
3253
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3254
+ } & O>];
3255
+ readonly v3: readonly [<const O extends {
3256
+ name?: string | undefined;
3257
+ created?: string | undefined;
3258
+ knowledge?: string | undefined;
3259
+ modalities?: {
3260
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3261
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3262
+ } | undefined;
3263
+ context?: number | undefined;
3264
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3265
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3266
+ readonly [x: number]: string | undefined;
3267
+ toString?: (() => string) | undefined;
3268
+ charAt?: {} | undefined;
3269
+ charCodeAt?: {} | undefined;
3270
+ concat?: {} | undefined;
3271
+ indexOf?: {} | undefined;
3272
+ lastIndexOf?: {} | undefined;
3273
+ localeCompare?: {} | undefined;
3274
+ match?: {} | undefined;
3275
+ replace?: {} | undefined;
3276
+ search?: {} | undefined;
3277
+ slice?: {} | undefined;
3278
+ split?: {} | undefined;
3279
+ substring?: {} | undefined;
3280
+ toLowerCase?: (() => string) | undefined;
3281
+ toLocaleLowerCase?: {} | undefined;
3282
+ toUpperCase?: (() => string) | undefined;
3283
+ toLocaleUpperCase?: {} | undefined;
3284
+ trim?: (() => string) | undefined;
3285
+ readonly length?: number | undefined;
3286
+ substr?: {} | undefined;
3287
+ valueOf?: (() => string) | undefined;
3288
+ codePointAt?: {} | undefined;
3289
+ includes?: {} | undefined;
3290
+ endsWith?: {} | undefined;
3291
+ normalize?: {} | undefined;
3292
+ repeat?: {} | undefined;
3293
+ startsWith?: {} | undefined;
3294
+ anchor?: {} | undefined;
3295
+ big?: (() => string) | undefined;
3296
+ blink?: (() => string) | undefined;
3297
+ bold?: (() => string) | undefined;
3298
+ fixed?: (() => string) | undefined;
3299
+ fontcolor?: {} | undefined;
3300
+ fontsize?: {} | undefined;
3301
+ italics?: (() => string) | undefined;
3302
+ link?: {} | undefined;
3303
+ small?: (() => string) | undefined;
3304
+ strike?: (() => string) | undefined;
3305
+ sub?: (() => string) | undefined;
3306
+ sup?: (() => string) | undefined;
3307
+ padStart?: {} | undefined;
3308
+ padEnd?: {} | undefined;
3309
+ trimEnd?: (() => string) | undefined;
3310
+ trimStart?: (() => string) | undefined;
3311
+ trimLeft?: (() => string) | undefined;
3312
+ trimRight?: (() => string) | undefined;
3313
+ matchAll?: {} | undefined;
3314
+ replaceAll?: {} | undefined;
3315
+ at?: {} | undefined;
3316
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3317
+ })[] | undefined;
3318
+ additionalProperties?: {
3319
+ [x: string]: unknown;
3320
+ } | undefined;
3321
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3", {
3322
+ name: string;
3323
+ created: string;
3324
+ knowledge: string;
3325
+ modalities: {
3326
+ input: readonly ["text", "image", "file"];
3327
+ output: readonly ["text"];
3328
+ };
3329
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
3330
+ context: number;
3331
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3332
+ } & O>];
3333
+ readonly haiku: readonly [<const O extends {
3334
+ name?: string | undefined;
3335
+ created?: string | undefined;
3336
+ knowledge?: string | undefined;
3337
+ modalities?: {
3338
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3339
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3340
+ } | undefined;
3341
+ context?: number | undefined;
3342
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3343
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3344
+ readonly [x: number]: string | undefined;
3345
+ toString?: (() => string) | undefined;
3346
+ charAt?: {} | undefined;
3347
+ charCodeAt?: {} | undefined;
3348
+ concat?: {} | undefined;
3349
+ indexOf?: {} | undefined;
3350
+ lastIndexOf?: {} | undefined;
3351
+ localeCompare?: {} | undefined;
3352
+ match?: {} | undefined;
3353
+ replace?: {} | undefined;
3354
+ search?: {} | undefined;
3355
+ slice?: {} | undefined;
3356
+ split?: {} | undefined;
3357
+ substring?: {} | undefined;
3358
+ toLowerCase?: (() => string) | undefined;
3359
+ toLocaleLowerCase?: {} | undefined;
3360
+ toUpperCase?: (() => string) | undefined;
3361
+ toLocaleUpperCase?: {} | undefined;
3362
+ trim?: (() => string) | undefined;
3363
+ readonly length?: number | undefined;
3364
+ substr?: {} | undefined;
3365
+ valueOf?: (() => string) | undefined;
3366
+ codePointAt?: {} | undefined;
3367
+ includes?: {} | undefined;
3368
+ endsWith?: {} | undefined;
3369
+ normalize?: {} | undefined;
3370
+ repeat?: {} | undefined;
3371
+ startsWith?: {} | undefined;
3372
+ anchor?: {} | undefined;
3373
+ big?: (() => string) | undefined;
3374
+ blink?: (() => string) | undefined;
3375
+ bold?: (() => string) | undefined;
3376
+ fixed?: (() => string) | undefined;
3377
+ fontcolor?: {} | undefined;
3378
+ fontsize?: {} | undefined;
3379
+ italics?: (() => string) | undefined;
3380
+ link?: {} | undefined;
3381
+ small?: (() => string) | undefined;
3382
+ strike?: (() => string) | undefined;
3383
+ sub?: (() => string) | undefined;
3384
+ sup?: (() => string) | undefined;
3385
+ padStart?: {} | undefined;
3386
+ padEnd?: {} | undefined;
3387
+ trimEnd?: (() => string) | undefined;
3388
+ trimStart?: (() => string) | undefined;
3389
+ trimLeft?: (() => string) | undefined;
3390
+ trimRight?: (() => string) | undefined;
3391
+ matchAll?: {} | undefined;
3392
+ replaceAll?: {} | undefined;
3393
+ at?: {} | undefined;
3394
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3395
+ })[] | undefined;
3396
+ additionalProperties?: {
3397
+ [x: string]: unknown;
3398
+ } | undefined;
3399
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-4.5", {
3400
+ name: string;
3401
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3402
+ created: string;
3403
+ knowledge: string;
3404
+ modalities: {
3405
+ input: readonly ["text", "image", "pdf", "file"];
3406
+ output: readonly ["text"];
3407
+ };
3408
+ context: number;
3409
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3410
+ } & O>, <const O extends {
3411
+ name?: string | undefined;
3412
+ created?: string | undefined;
3413
+ knowledge?: string | undefined;
3414
+ modalities?: {
3415
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3416
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3417
+ } | undefined;
3418
+ context?: number | undefined;
3419
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3420
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3421
+ readonly [x: number]: string | undefined;
3422
+ toString?: (() => string) | undefined;
3423
+ charAt?: {} | undefined;
3424
+ charCodeAt?: {} | undefined;
3425
+ concat?: {} | undefined;
3426
+ indexOf?: {} | undefined;
3427
+ lastIndexOf?: {} | undefined;
3428
+ localeCompare?: {} | undefined;
3429
+ match?: {} | undefined;
3430
+ replace?: {} | undefined;
3431
+ search?: {} | undefined;
3432
+ slice?: {} | undefined;
3433
+ split?: {} | undefined;
3434
+ substring?: {} | undefined;
3435
+ toLowerCase?: (() => string) | undefined;
3436
+ toLocaleLowerCase?: {} | undefined;
3437
+ toUpperCase?: (() => string) | undefined;
3438
+ toLocaleUpperCase?: {} | undefined;
3439
+ trim?: (() => string) | undefined;
3440
+ readonly length?: number | undefined;
3441
+ substr?: {} | undefined;
3442
+ valueOf?: (() => string) | undefined;
3443
+ codePointAt?: {} | undefined;
3444
+ includes?: {} | undefined;
3445
+ endsWith?: {} | undefined;
3446
+ normalize?: {} | undefined;
3447
+ repeat?: {} | undefined;
3448
+ startsWith?: {} | undefined;
3449
+ anchor?: {} | undefined;
3450
+ big?: (() => string) | undefined;
3451
+ blink?: (() => string) | undefined;
3452
+ bold?: (() => string) | undefined;
3453
+ fixed?: (() => string) | undefined;
3454
+ fontcolor?: {} | undefined;
3455
+ fontsize?: {} | undefined;
3456
+ italics?: (() => string) | undefined;
3457
+ link?: {} | undefined;
3458
+ small?: (() => string) | undefined;
3459
+ strike?: (() => string) | undefined;
3460
+ sub?: (() => string) | undefined;
3461
+ sup?: (() => string) | undefined;
3462
+ padStart?: {} | undefined;
3463
+ padEnd?: {} | undefined;
3464
+ trimEnd?: (() => string) | undefined;
3465
+ trimStart?: (() => string) | undefined;
3466
+ trimLeft?: (() => string) | undefined;
3467
+ trimRight?: (() => string) | undefined;
3468
+ matchAll?: {} | undefined;
3469
+ replaceAll?: {} | undefined;
3470
+ at?: {} | undefined;
3471
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3472
+ })[] | undefined;
3473
+ additionalProperties?: {
3474
+ [x: string]: unknown;
3475
+ } | undefined;
3476
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3.5", {
3477
+ name: string;
3478
+ created: string;
3479
+ knowledge: string;
3480
+ modalities: {
3481
+ input: readonly ["text", "image", "pdf", "file"];
3482
+ output: readonly ["text"];
3483
+ };
3484
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
3485
+ context: number;
3486
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3487
+ } & O>, <const O extends {
3488
+ name?: string | undefined;
3489
+ created?: string | undefined;
3490
+ knowledge?: string | undefined;
3491
+ modalities?: {
3492
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3493
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3494
+ } | undefined;
3495
+ context?: number | undefined;
3496
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3497
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3498
+ readonly [x: number]: string | undefined;
3499
+ toString?: (() => string) | undefined;
3500
+ charAt?: {} | undefined;
3501
+ charCodeAt?: {} | undefined;
3502
+ concat?: {} | undefined;
3503
+ indexOf?: {} | undefined;
3504
+ lastIndexOf?: {} | undefined;
3505
+ localeCompare?: {} | undefined;
3506
+ match?: {} | undefined;
3507
+ replace?: {} | undefined;
3508
+ search?: {} | undefined;
3509
+ slice?: {} | undefined;
3510
+ split?: {} | undefined;
3511
+ substring?: {} | undefined;
3512
+ toLowerCase?: (() => string) | undefined;
3513
+ toLocaleLowerCase?: {} | undefined;
3514
+ toUpperCase?: (() => string) | undefined;
3515
+ toLocaleUpperCase?: {} | undefined;
3516
+ trim?: (() => string) | undefined;
3517
+ readonly length?: number | undefined;
3518
+ substr?: {} | undefined;
3519
+ valueOf?: (() => string) | undefined;
3520
+ codePointAt?: {} | undefined;
3521
+ includes?: {} | undefined;
3522
+ endsWith?: {} | undefined;
3523
+ normalize?: {} | undefined;
3524
+ repeat?: {} | undefined;
3525
+ startsWith?: {} | undefined;
3526
+ anchor?: {} | undefined;
3527
+ big?: (() => string) | undefined;
3528
+ blink?: (() => string) | undefined;
3529
+ bold?: (() => string) | undefined;
3530
+ fixed?: (() => string) | undefined;
3531
+ fontcolor?: {} | undefined;
3532
+ fontsize?: {} | undefined;
3533
+ italics?: (() => string) | undefined;
3534
+ link?: {} | undefined;
3535
+ small?: (() => string) | undefined;
3536
+ strike?: (() => string) | undefined;
3537
+ sub?: (() => string) | undefined;
3538
+ sup?: (() => string) | undefined;
3539
+ padStart?: {} | undefined;
3540
+ padEnd?: {} | undefined;
3541
+ trimEnd?: (() => string) | undefined;
3542
+ trimStart?: (() => string) | undefined;
3543
+ trimLeft?: (() => string) | undefined;
3544
+ trimRight?: (() => string) | undefined;
3545
+ matchAll?: {} | undefined;
3546
+ replaceAll?: {} | undefined;
3547
+ at?: {} | undefined;
3548
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3549
+ })[] | undefined;
3550
+ additionalProperties?: {
3551
+ [x: string]: unknown;
3552
+ } | undefined;
3553
+ }>(override?: O | undefined) => Record<"anthropic/claude-haiku-3", {
3554
+ name: string;
3555
+ created: string;
3556
+ knowledge: string;
3557
+ modalities: {
3558
+ input: readonly ["text", "image", "file"];
3559
+ output: readonly ["text"];
3560
+ };
3561
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
3562
+ context: number;
3563
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3564
+ } & O>];
3565
+ readonly sonnet: readonly [<const O extends {
3566
+ name?: string | undefined;
3567
+ created?: string | undefined;
3568
+ knowledge?: string | undefined;
3569
+ modalities?: {
3570
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3571
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3572
+ } | undefined;
3573
+ context?: number | undefined;
3574
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3575
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3576
+ readonly [x: number]: string | undefined;
3577
+ toString?: (() => string) | undefined;
3578
+ charAt?: {} | undefined;
3579
+ charCodeAt?: {} | undefined;
3580
+ concat?: {} | undefined;
3581
+ indexOf?: {} | undefined;
3582
+ lastIndexOf?: {} | undefined;
3583
+ localeCompare?: {} | undefined;
3584
+ match?: {} | undefined;
3585
+ replace?: {} | undefined;
3586
+ search?: {} | undefined;
3587
+ slice?: {} | undefined;
3588
+ split?: {} | undefined;
3589
+ substring?: {} | undefined;
3590
+ toLowerCase?: (() => string) | undefined;
3591
+ toLocaleLowerCase?: {} | undefined;
3592
+ toUpperCase?: (() => string) | undefined;
3593
+ toLocaleUpperCase?: {} | undefined;
3594
+ trim?: (() => string) | undefined;
3595
+ readonly length?: number | undefined;
3596
+ substr?: {} | undefined;
3597
+ valueOf?: (() => string) | undefined;
3598
+ codePointAt?: {} | undefined;
3599
+ includes?: {} | undefined;
3600
+ endsWith?: {} | undefined;
3601
+ normalize?: {} | undefined;
3602
+ repeat?: {} | undefined;
3603
+ startsWith?: {} | undefined;
3604
+ anchor?: {} | undefined;
3605
+ big?: (() => string) | undefined;
3606
+ blink?: (() => string) | undefined;
3607
+ bold?: (() => string) | undefined;
3608
+ fixed?: (() => string) | undefined;
3609
+ fontcolor?: {} | undefined;
3610
+ fontsize?: {} | undefined;
3611
+ italics?: (() => string) | undefined;
3612
+ link?: {} | undefined;
3613
+ small?: (() => string) | undefined;
3614
+ strike?: (() => string) | undefined;
3615
+ sub?: (() => string) | undefined;
3616
+ sup?: (() => string) | undefined;
3617
+ padStart?: {} | undefined;
3618
+ padEnd?: {} | undefined;
3619
+ trimEnd?: (() => string) | undefined;
3620
+ trimStart?: (() => string) | undefined;
3621
+ trimLeft?: (() => string) | undefined;
3622
+ trimRight?: (() => string) | undefined;
3623
+ matchAll?: {} | undefined;
3624
+ replaceAll?: {} | undefined;
3625
+ at?: {} | undefined;
3626
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3627
+ })[] | undefined;
3628
+ additionalProperties?: {
3629
+ [x: string]: unknown;
3630
+ } | undefined;
3631
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4.5", {
3632
+ name: string;
3633
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3634
+ created: string;
3635
+ knowledge: string;
3636
+ modalities: {
3637
+ input: readonly ["text", "image", "pdf", "file"];
3638
+ output: readonly ["text"];
3639
+ };
3640
+ context: number;
3641
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3642
+ } & O>, <const O extends {
3643
+ name?: string | undefined;
3644
+ created?: string | undefined;
3645
+ knowledge?: string | undefined;
3646
+ modalities?: {
3647
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3648
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3649
+ } | undefined;
3650
+ context?: number | undefined;
3651
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3652
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3653
+ readonly [x: number]: string | undefined;
3654
+ toString?: (() => string) | undefined;
3655
+ charAt?: {} | undefined;
3656
+ charCodeAt?: {} | undefined;
3657
+ concat?: {} | undefined;
3658
+ indexOf?: {} | undefined;
3659
+ lastIndexOf?: {} | undefined;
3660
+ localeCompare?: {} | undefined;
3661
+ match?: {} | undefined;
3662
+ replace?: {} | undefined;
3663
+ search?: {} | undefined;
3664
+ slice?: {} | undefined;
3665
+ split?: {} | undefined;
3666
+ substring?: {} | undefined;
3667
+ toLowerCase?: (() => string) | undefined;
3668
+ toLocaleLowerCase?: {} | undefined;
3669
+ toUpperCase?: (() => string) | undefined;
3670
+ toLocaleUpperCase?: {} | undefined;
3671
+ trim?: (() => string) | undefined;
3672
+ readonly length?: number | undefined;
3673
+ substr?: {} | undefined;
3674
+ valueOf?: (() => string) | undefined;
3675
+ codePointAt?: {} | undefined;
3676
+ includes?: {} | undefined;
3677
+ endsWith?: {} | undefined;
3678
+ normalize?: {} | undefined;
3679
+ repeat?: {} | undefined;
3680
+ startsWith?: {} | undefined;
3681
+ anchor?: {} | undefined;
3682
+ big?: (() => string) | undefined;
3683
+ blink?: (() => string) | undefined;
3684
+ bold?: (() => string) | undefined;
3685
+ fixed?: (() => string) | undefined;
3686
+ fontcolor?: {} | undefined;
3687
+ fontsize?: {} | undefined;
3688
+ italics?: (() => string) | undefined;
3689
+ link?: {} | undefined;
3690
+ small?: (() => string) | undefined;
3691
+ strike?: (() => string) | undefined;
3692
+ sub?: (() => string) | undefined;
3693
+ sup?: (() => string) | undefined;
3694
+ padStart?: {} | undefined;
3695
+ padEnd?: {} | undefined;
3696
+ trimEnd?: (() => string) | undefined;
3697
+ trimStart?: (() => string) | undefined;
3698
+ trimLeft?: (() => string) | undefined;
3699
+ trimRight?: (() => string) | undefined;
3700
+ matchAll?: {} | undefined;
3701
+ replaceAll?: {} | undefined;
3702
+ at?: {} | undefined;
3703
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3704
+ })[] | undefined;
3705
+ additionalProperties?: {
3706
+ [x: string]: unknown;
3707
+ } | undefined;
3708
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-4", {
3709
+ name: string;
3710
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3711
+ created: string;
3712
+ knowledge: string;
3713
+ modalities: {
3714
+ input: readonly ["text", "image", "pdf", "file"];
3715
+ output: readonly ["text"];
3716
+ };
3717
+ context: number;
3718
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3719
+ } & O>, <const O extends {
3720
+ name?: string | undefined;
3721
+ created?: string | undefined;
3722
+ knowledge?: string | undefined;
3723
+ modalities?: {
3724
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3725
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3726
+ } | undefined;
3727
+ context?: number | undefined;
3728
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3729
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3730
+ readonly [x: number]: string | undefined;
3731
+ toString?: (() => string) | undefined;
3732
+ charAt?: {} | undefined;
3733
+ charCodeAt?: {} | undefined;
3734
+ concat?: {} | undefined;
3735
+ indexOf?: {} | undefined;
3736
+ lastIndexOf?: {} | undefined;
3737
+ localeCompare?: {} | undefined;
3738
+ match?: {} | undefined;
3739
+ replace?: {} | undefined;
3740
+ search?: {} | undefined;
3741
+ slice?: {} | undefined;
3742
+ split?: {} | undefined;
3743
+ substring?: {} | undefined;
3744
+ toLowerCase?: (() => string) | undefined;
3745
+ toLocaleLowerCase?: {} | undefined;
3746
+ toUpperCase?: (() => string) | undefined;
3747
+ toLocaleUpperCase?: {} | undefined;
3748
+ trim?: (() => string) | undefined;
3749
+ readonly length?: number | undefined;
3750
+ substr?: {} | undefined;
3751
+ valueOf?: (() => string) | undefined;
3752
+ codePointAt?: {} | undefined;
3753
+ includes?: {} | undefined;
3754
+ endsWith?: {} | undefined;
3755
+ normalize?: {} | undefined;
3756
+ repeat?: {} | undefined;
3757
+ startsWith?: {} | undefined;
3758
+ anchor?: {} | undefined;
3759
+ big?: (() => string) | undefined;
3760
+ blink?: (() => string) | undefined;
3761
+ bold?: (() => string) | undefined;
3762
+ fixed?: (() => string) | undefined;
3763
+ fontcolor?: {} | undefined;
3764
+ fontsize?: {} | undefined;
3765
+ italics?: (() => string) | undefined;
3766
+ link?: {} | undefined;
3767
+ small?: (() => string) | undefined;
3768
+ strike?: (() => string) | undefined;
3769
+ sub?: (() => string) | undefined;
3770
+ sup?: (() => string) | undefined;
3771
+ padStart?: {} | undefined;
3772
+ padEnd?: {} | undefined;
3773
+ trimEnd?: (() => string) | undefined;
3774
+ trimStart?: (() => string) | undefined;
3775
+ trimLeft?: (() => string) | undefined;
3776
+ trimRight?: (() => string) | undefined;
3777
+ matchAll?: {} | undefined;
3778
+ replaceAll?: {} | undefined;
3779
+ at?: {} | undefined;
3780
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3781
+ })[] | undefined;
3782
+ additionalProperties?: {
3783
+ [x: string]: unknown;
3784
+ } | undefined;
3785
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.7", {
3786
+ name: string;
3787
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3788
+ created: string;
3789
+ knowledge: string;
3790
+ modalities: {
3791
+ input: readonly ["text", "image", "pdf", "file"];
3792
+ output: readonly ["text"];
3793
+ };
3794
+ context: number;
3795
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3796
+ } & O>, <const O extends {
3797
+ name?: string | undefined;
3798
+ created?: string | undefined;
3799
+ knowledge?: string | undefined;
3800
+ modalities?: {
3801
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3802
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3803
+ } | undefined;
3804
+ context?: number | undefined;
3805
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3806
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3807
+ readonly [x: number]: string | undefined;
3808
+ toString?: (() => string) | undefined;
3809
+ charAt?: {} | undefined;
3810
+ charCodeAt?: {} | undefined;
3811
+ concat?: {} | undefined;
3812
+ indexOf?: {} | undefined;
3813
+ lastIndexOf?: {} | undefined;
3814
+ localeCompare?: {} | undefined;
3815
+ match?: {} | undefined;
3816
+ replace?: {} | undefined;
3817
+ search?: {} | undefined;
3818
+ slice?: {} | undefined;
3819
+ split?: {} | undefined;
3820
+ substring?: {} | undefined;
3821
+ toLowerCase?: (() => string) | undefined;
3822
+ toLocaleLowerCase?: {} | undefined;
3823
+ toUpperCase?: (() => string) | undefined;
3824
+ toLocaleUpperCase?: {} | undefined;
3825
+ trim?: (() => string) | undefined;
3826
+ readonly length?: number | undefined;
3827
+ substr?: {} | undefined;
3828
+ valueOf?: (() => string) | undefined;
3829
+ codePointAt?: {} | undefined;
3830
+ includes?: {} | undefined;
3831
+ endsWith?: {} | undefined;
3832
+ normalize?: {} | undefined;
3833
+ repeat?: {} | undefined;
3834
+ startsWith?: {} | undefined;
3835
+ anchor?: {} | undefined;
3836
+ big?: (() => string) | undefined;
3837
+ blink?: (() => string) | undefined;
3838
+ bold?: (() => string) | undefined;
3839
+ fixed?: (() => string) | undefined;
3840
+ fontcolor?: {} | undefined;
3841
+ fontsize?: {} | undefined;
3842
+ italics?: (() => string) | undefined;
3843
+ link?: {} | undefined;
3844
+ small?: (() => string) | undefined;
3845
+ strike?: (() => string) | undefined;
3846
+ sub?: (() => string) | undefined;
3847
+ sup?: (() => string) | undefined;
3848
+ padStart?: {} | undefined;
3849
+ padEnd?: {} | undefined;
3850
+ trimEnd?: (() => string) | undefined;
3851
+ trimStart?: (() => string) | undefined;
3852
+ trimLeft?: (() => string) | undefined;
3853
+ trimRight?: (() => string) | undefined;
3854
+ matchAll?: {} | undefined;
3855
+ replaceAll?: {} | undefined;
3856
+ at?: {} | undefined;
3857
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3858
+ })[] | undefined;
3859
+ additionalProperties?: {
3860
+ [x: string]: unknown;
3861
+ } | undefined;
3862
+ }>(override?: O | undefined) => Record<"anthropic/claude-sonnet-3.5", {
3863
+ name: string;
3864
+ created: string;
3865
+ knowledge: string;
3866
+ modalities: {
3867
+ input: readonly ["text", "image", "pdf", "file"];
3868
+ output: readonly ["text"];
3869
+ };
3870
+ capabilities: ("temperature" | "attachments" | "tool_call" | "structured_output")[];
3871
+ context: number;
3872
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3873
+ } & O>];
3874
+ readonly opus: readonly [<const O extends {
3875
+ name?: string | undefined;
3876
+ created?: string | undefined;
3877
+ knowledge?: string | undefined;
3878
+ modalities?: {
3879
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3880
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3881
+ } | undefined;
3882
+ context?: number | undefined;
3883
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3884
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3885
+ readonly [x: number]: string | undefined;
3886
+ toString?: (() => string) | undefined;
3887
+ charAt?: {} | undefined;
3888
+ charCodeAt?: {} | undefined;
3889
+ concat?: {} | undefined;
3890
+ indexOf?: {} | undefined;
3891
+ lastIndexOf?: {} | undefined;
3892
+ localeCompare?: {} | undefined;
3893
+ match?: {} | undefined;
3894
+ replace?: {} | undefined;
3895
+ search?: {} | undefined;
3896
+ slice?: {} | undefined;
3897
+ split?: {} | undefined;
3898
+ substring?: {} | undefined;
3899
+ toLowerCase?: (() => string) | undefined;
3900
+ toLocaleLowerCase?: {} | undefined;
3901
+ toUpperCase?: (() => string) | undefined;
3902
+ toLocaleUpperCase?: {} | undefined;
3903
+ trim?: (() => string) | undefined;
3904
+ readonly length?: number | undefined;
3905
+ substr?: {} | undefined;
3906
+ valueOf?: (() => string) | undefined;
3907
+ codePointAt?: {} | undefined;
3908
+ includes?: {} | undefined;
3909
+ endsWith?: {} | undefined;
3910
+ normalize?: {} | undefined;
3911
+ repeat?: {} | undefined;
3912
+ startsWith?: {} | undefined;
3913
+ anchor?: {} | undefined;
3914
+ big?: (() => string) | undefined;
3915
+ blink?: (() => string) | undefined;
3916
+ bold?: (() => string) | undefined;
3917
+ fixed?: (() => string) | undefined;
3918
+ fontcolor?: {} | undefined;
3919
+ fontsize?: {} | undefined;
3920
+ italics?: (() => string) | undefined;
3921
+ link?: {} | undefined;
3922
+ small?: (() => string) | undefined;
3923
+ strike?: (() => string) | undefined;
3924
+ sub?: (() => string) | undefined;
3925
+ sup?: (() => string) | undefined;
3926
+ padStart?: {} | undefined;
3927
+ padEnd?: {} | undefined;
3928
+ trimEnd?: (() => string) | undefined;
3929
+ trimStart?: (() => string) | undefined;
3930
+ trimLeft?: (() => string) | undefined;
3931
+ trimRight?: (() => string) | undefined;
3932
+ matchAll?: {} | undefined;
3933
+ replaceAll?: {} | undefined;
3934
+ at?: {} | undefined;
3935
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
3936
+ })[] | undefined;
3937
+ additionalProperties?: {
3938
+ [x: string]: unknown;
3939
+ } | undefined;
3940
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.5", {
3941
+ name: string;
3942
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
3943
+ created: string;
3944
+ knowledge: string;
3945
+ modalities: {
3946
+ input: readonly ["text", "image", "pdf", "file"];
3947
+ output: readonly ["text"];
3948
+ };
3949
+ context: number;
3950
+ providers: readonly ["anthropic", "bedrock", "vertex"];
3951
+ } & O>, <const O extends {
3952
+ name?: string | undefined;
3953
+ created?: string | undefined;
3954
+ knowledge?: string | undefined;
3955
+ modalities?: {
3956
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
3957
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
3958
+ } | undefined;
3959
+ context?: number | undefined;
3960
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
3961
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
3962
+ readonly [x: number]: string | undefined;
3963
+ toString?: (() => string) | undefined;
3964
+ charAt?: {} | undefined;
3965
+ charCodeAt?: {} | undefined;
3966
+ concat?: {} | undefined;
3967
+ indexOf?: {} | undefined;
3968
+ lastIndexOf?: {} | undefined;
3969
+ localeCompare?: {} | undefined;
3970
+ match?: {} | undefined;
3971
+ replace?: {} | undefined;
3972
+ search?: {} | undefined;
3973
+ slice?: {} | undefined;
3974
+ split?: {} | undefined;
3975
+ substring?: {} | undefined;
3976
+ toLowerCase?: (() => string) | undefined;
3977
+ toLocaleLowerCase?: {} | undefined;
3978
+ toUpperCase?: (() => string) | undefined;
3979
+ toLocaleUpperCase?: {} | undefined;
3980
+ trim?: (() => string) | undefined;
3981
+ readonly length?: number | undefined;
3982
+ substr?: {} | undefined;
3983
+ valueOf?: (() => string) | undefined;
3984
+ codePointAt?: {} | undefined;
3985
+ includes?: {} | undefined;
3986
+ endsWith?: {} | undefined;
3987
+ normalize?: {} | undefined;
3988
+ repeat?: {} | undefined;
3989
+ startsWith?: {} | undefined;
3990
+ anchor?: {} | undefined;
3991
+ big?: (() => string) | undefined;
3992
+ blink?: (() => string) | undefined;
3993
+ bold?: (() => string) | undefined;
3994
+ fixed?: (() => string) | undefined;
3995
+ fontcolor?: {} | undefined;
3996
+ fontsize?: {} | undefined;
3997
+ italics?: (() => string) | undefined;
3998
+ link?: {} | undefined;
3999
+ small?: (() => string) | undefined;
4000
+ strike?: (() => string) | undefined;
4001
+ sub?: (() => string) | undefined;
4002
+ sup?: (() => string) | undefined;
4003
+ padStart?: {} | undefined;
4004
+ padEnd?: {} | undefined;
4005
+ trimEnd?: (() => string) | undefined;
4006
+ trimStart?: (() => string) | undefined;
4007
+ trimLeft?: (() => string) | undefined;
4008
+ trimRight?: (() => string) | undefined;
4009
+ matchAll?: {} | undefined;
4010
+ replaceAll?: {} | undefined;
4011
+ at?: {} | undefined;
4012
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
4013
+ })[] | undefined;
4014
+ additionalProperties?: {
4015
+ [x: string]: unknown;
4016
+ } | undefined;
4017
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4.1", {
4018
+ name: string;
4019
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
4020
+ created: string;
4021
+ knowledge: string;
4022
+ modalities: {
4023
+ input: readonly ["text", "image", "pdf", "file"];
4024
+ output: readonly ["text"];
4025
+ };
4026
+ context: number;
4027
+ providers: readonly ["anthropic", "bedrock", "vertex"];
4028
+ } & O>, <const O extends {
4029
+ name?: string | undefined;
4030
+ created?: string | undefined;
4031
+ knowledge?: string | undefined;
4032
+ modalities?: {
4033
+ input?: readonly ("text" | "file" | "image" | "audio" | "video" | "pdf")[] | undefined;
4034
+ output?: readonly ("text" | "image" | "audio" | "video" | "embeddings")[] | undefined;
4035
+ } | undefined;
4036
+ context?: number | undefined;
4037
+ capabilities?: readonly ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[] | undefined;
4038
+ providers?: readonly ("anthropic" | "azure" | "bedrock" | "cohere" | "groq" | "openai" | "vertex" | "voyage" | {
4039
+ readonly [x: number]: string | undefined;
4040
+ toString?: (() => string) | undefined;
4041
+ charAt?: {} | undefined;
4042
+ charCodeAt?: {} | undefined;
4043
+ concat?: {} | undefined;
4044
+ indexOf?: {} | undefined;
4045
+ lastIndexOf?: {} | undefined;
4046
+ localeCompare?: {} | undefined;
4047
+ match?: {} | undefined;
4048
+ replace?: {} | undefined;
4049
+ search?: {} | undefined;
4050
+ slice?: {} | undefined;
4051
+ split?: {} | undefined;
4052
+ substring?: {} | undefined;
4053
+ toLowerCase?: (() => string) | undefined;
4054
+ toLocaleLowerCase?: {} | undefined;
4055
+ toUpperCase?: (() => string) | undefined;
4056
+ toLocaleUpperCase?: {} | undefined;
4057
+ trim?: (() => string) | undefined;
4058
+ readonly length?: number | undefined;
4059
+ substr?: {} | undefined;
4060
+ valueOf?: (() => string) | undefined;
4061
+ codePointAt?: {} | undefined;
4062
+ includes?: {} | undefined;
4063
+ endsWith?: {} | undefined;
4064
+ normalize?: {} | undefined;
4065
+ repeat?: {} | undefined;
4066
+ startsWith?: {} | undefined;
4067
+ anchor?: {} | undefined;
4068
+ big?: (() => string) | undefined;
4069
+ blink?: (() => string) | undefined;
4070
+ bold?: (() => string) | undefined;
4071
+ fixed?: (() => string) | undefined;
4072
+ fontcolor?: {} | undefined;
4073
+ fontsize?: {} | undefined;
4074
+ italics?: (() => string) | undefined;
4075
+ link?: {} | undefined;
4076
+ small?: (() => string) | undefined;
4077
+ strike?: (() => string) | undefined;
4078
+ sub?: (() => string) | undefined;
4079
+ sup?: (() => string) | undefined;
4080
+ padStart?: {} | undefined;
4081
+ padEnd?: {} | undefined;
4082
+ trimEnd?: (() => string) | undefined;
4083
+ trimStart?: (() => string) | undefined;
4084
+ trimLeft?: (() => string) | undefined;
4085
+ trimRight?: (() => string) | undefined;
4086
+ matchAll?: {} | undefined;
4087
+ replaceAll?: {} | undefined;
4088
+ at?: {} | undefined;
4089
+ [Symbol.iterator]?: (() => StringIterator<string>) | undefined;
4090
+ })[] | undefined;
4091
+ additionalProperties?: {
4092
+ [x: string]: unknown;
4093
+ } | undefined;
4094
+ }>(override?: O | undefined) => Record<"anthropic/claude-opus-4", {
4095
+ name: string;
4096
+ capabilities: ("temperature" | "reasoning" | "attachments" | "tool_call" | "structured_output")[];
4097
+ created: string;
4098
+ knowledge: string;
4099
+ modalities: {
4100
+ input: readonly ["text", "image", "pdf", "file"];
4101
+ output: readonly ["text"];
4102
+ };
4103
+ context: number;
4104
+ providers: readonly ["anthropic", "bedrock", "vertex"];
4105
+ } & O>];
4106
+ };