Skip to content

Commit 7dcb4c7

Browse files
committed
Prices for Amazon Nova models
https://aws.amazon.com/bedrock/pricing/
1 parent cb91c2b commit 7dcb4c7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

llm-prices.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ <h2>Presets</h2>
140140
</div>
141141

142142
<script>
143+
// Prices are $ per 1M tokens
143144
const presets = {
144145
'gemini-1.5-flash': { name: 'Gemini 1.5 Flash ≤128k', input: 0.075, output: 0.30 },
145146
'gemini-1.5-flash-128k': { name: 'Gemini 1.5 Flash >128k', input: 0.15, output: 0.60 },
@@ -154,7 +155,10 @@ <h2>Presets</h2>
154155
'gpt-4o': { name: 'GPT-4o', input: 2.50, output: 10.00 },
155156
'gpt-4o-mini': { name: 'GPT-4o Mini', input: 0.150, output: 0.600 },
156157
'o1-preview': { name: 'o1-preview', input: 15.00, output: 60.00 },
157-
'o1-mini': { name: 'o1-mini', input: 3.00, output: 12.00 }
158+
'o1-mini': { name: 'o1-mini', input: 3.00, output: 12.00 },
159+
'amazon-nova-micro': { name: 'Amazon Nova Micro', input: 0.035, output: 0.14 },
160+
'amazon-nova-lite': { name: 'Amazon Nova Lite', input: 0.06, output: 0.24 },
161+
'amazon-nova-pro': { name: 'Amazon Nova Pro', input: 0.8, output: 3.2 },
158162
};
159163

160164
function calculateCost() {

0 commit comments

Comments
 (0)