We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1344b2d + 3ede4c8 commit 244732fCopy full SHA for 244732f
src/components/home/ExpandedGpuPricing.tsx
@@ -201,13 +201,13 @@ const ExpandedGpu = () => {
201
if (result) {
202
const a100Price = result?.data?.models?.find((model) =>
203
model?.model?.includes("a100"),
204
- )?.price?.avg;
+ )?.price?.weightedAverage;
205
const h100Price = result?.data?.models?.find((model) =>
206
model?.model?.includes("h100"),
207
208
const h200Price = result?.data?.models?.find((model) =>
209
model?.model?.includes("h200"),
210
211
212
if (h100Price) {
213
data[1][1] = `$${h100Price?.toFixed(2)?.toString()}`;
0 commit comments