@hebo-ai/gateway 0.1.2 → 0.2.0

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