Presidentlin commited on
Commit
915784a
·
1 Parent(s): de2cdb6
Files changed (1) hide show
  1. src/lib/data.ts +13 -8
src/lib/data.ts CHANGED
@@ -213,17 +213,22 @@ export const mockData: Provider[] = [
213
  provider: "Amazon",
214
  uri: "https://aws.amazon.com/bedrock/pricing/",
215
  models: [
 
216
  { name: "Amazon Nova Micro", inputPrice: 0.035, outputPrice: 0.14 },
217
- { name: "Amazon Nova Lite ", inputPrice: 0.06, outputPrice: 0.24 },
218
  { name: "Amazon Nova Pro", inputPrice: 0.8, outputPrice: 3.2 },
219
- {
220
- name: "Amazon Nova Micro Batch",
221
- inputPrice: 0.0175,
222
- outputPrice: 0.07,
223
- },
224
- { name: "Amazon Nova Lite Batch ", inputPrice: 0.03, outputPrice: 0.12 },
225
  { name: "Amazon Nova Pro Batch", inputPrice: 0.4, outputPrice: 1.6 },
226
- ],
 
 
 
 
 
 
227
  },
228
  {
229
  provider: "Arcee",
 
213
  provider: "Amazon",
214
  uri: "https://aws.amazon.com/bedrock/pricing/",
215
  models: [
216
+ // Legacy Nova
217
  { name: "Amazon Nova Micro", inputPrice: 0.035, outputPrice: 0.14 },
218
+ { name: "Amazon Nova Lite", inputPrice: 0.06, outputPrice: 0.24 },
219
  { name: "Amazon Nova Pro", inputPrice: 0.8, outputPrice: 3.2 },
220
+ { name: "Amazon Nova Premier", inputPrice: 2.5, outputPrice: 12.5 },
221
+ // Legacy Batch
222
+ { name: "Amazon Nova Micro Batch", inputPrice: 0.0175, outputPrice: 0.07 },
223
+ { name: "Amazon Nova Lite Batch", inputPrice: 0.03, outputPrice: 0.12 },
 
 
224
  { name: "Amazon Nova Pro Batch", inputPrice: 0.4, outputPrice: 1.6 },
225
+
226
+ // 🚀 Nova 2 Standard Tier (per 1M tokens)
227
+ { name: "Amazon Nova 2 Lite", inputPrice: 0.3, outputPrice: 2.5 },
228
+ { name: "Amazon Nova 2 Omni", inputPrice: 0.3, outputPrice: 2.5 },
229
+ { name: "Amazon Nova 2 Pro", inputPrice: 1.25, outputPrice: 10.0 },
230
+
231
+ ]
232
  },
233
  {
234
  provider: "Arcee",