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