-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Description
Example URL(s)
https://developers.cloudflare.com/autorag/platform/limits-pricing/
Actual Behavior
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))
Expected Behavior
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))
Additional information
In the "Calculating vector dimensions" part, the price formula seems incorrect: it should be "stored vectors * dimensions", instead of "stored vectors + dimensions".