From 38988703d3cba01e1b238b9569439227f94a9c72 Mon Sep 17 00:00:00 2001 From: kodster28 Date: Tue, 8 Apr 2025 09:52:43 -0500 Subject: [PATCH] [Vectorize] Pricing inaccuracy --- src/content/partials/vectorize/vectorize-pricing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/partials/vectorize/vectorize-pricing.mdx b/src/content/partials/vectorize/vectorize-pricing.mdx index 79673b4b7e7452..6e9c62c6aea391 100644 --- a/src/content/partials/vectorize/vectorize-pricing.mdx +++ b/src/content/partials/vectorize/vectorize-pricing.mdx @@ -9,7 +9,7 @@ ### Calculating vector dimensions -To calculate your potential usage, calculate the queried vector dimensions and the stored vector dimensions, and multiply by the unit price. The formula is defined as `((queried vectors + stored vectors) * dimensions * ($0.01 / 1,000,000)) + (stored vectors + dimensions * ($0.05 / 100,000,000))` +To calculate your potential usage, calculate the queried vector dimensions and the stored vector dimensions, and multiply by the unit price. The formula is defined as `((queried vectors + stored vectors) * dimensions * ($0.01 / 1,000,000)) + (stored vectors * dimensions * ($0.05 / 100,000,000))` - For example, inserting 10,000 vectors of 768 dimensions each, and querying those 1,000 times per day (30,000 times per month) would be calculated as `((30,000 + 10,000) * 768) = 30,720,000` queried dimensions and `(10,000 * 768) = 7,680,000` stored dimensions (within the included monthly allocation) - Separately, and excluding the included monthly allocation, this would be calculated as `(30,000 + 10,000) * 768 * ($0.01 / 1,000,000) + (10,000 * 768 * ($0.05 / 100,000,000))` and sum to $0.31 per month.