Commit
·
033b166
1
Parent(s):
152eb96
- src/lib/data.ts +16 -0
src/lib/data.ts
CHANGED
@@ -32,6 +32,22 @@ export const mockData: Provider[] = [
|
|
32 |
{ name: "Claude 3.5 Haiku", inputPrice: 1.0, outputPrice: 5.0 },
|
33 |
],
|
34 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
{
|
36 |
provider: "Arcee",
|
37 |
uri: "https://models.arcee.ai",
|
|
|
32 |
{ name: "Claude 3.5 Haiku", inputPrice: 1.0, outputPrice: 5.0 },
|
33 |
],
|
34 |
},
|
35 |
+
{
|
36 |
+
provider: "Amazon",
|
37 |
+
uri: "https://aws.amazon.com/bedrock/pricing/",
|
38 |
+
models: [
|
39 |
+
{ name: "Amazon Nova Micro", inputPrice: 0.035, outputPrice: 0.14 },
|
40 |
+
{ name: "Amazon Nova Lite ", inputPrice: 0.06, outputPrice: 0.24 },
|
41 |
+
{ name: "Amazon Nova Pro", inputPrice: 0.8, outputPrice: 3.2 },
|
42 |
+
{
|
43 |
+
name: "Amazon Nova Micro Batch",
|
44 |
+
inputPrice: 0.0175,
|
45 |
+
outputPrice: 0.07,
|
46 |
+
},
|
47 |
+
{ name: "Amazon Nova Lite Batch ", inputPrice: 0.03, outputPrice: 0.12 },
|
48 |
+
{ name: "Amazon Nova Pro Batch", inputPrice: 0.4, outputPrice: 1.6 },
|
49 |
+
],
|
50 |
+
},
|
51 |
{
|
52 |
provider: "Arcee",
|
53 |
uri: "https://models.arcee.ai",
|