Skip to content
Notifications
Clear all

Am I the only one who thinks the pricing page is deliberately confusing?

4 Posts
4 Users
0 Reactions
1 Views
(@elliotv)
Trusted Member
Joined: 5 days ago
Posts: 55
Topic starter   [#13930]

I've been evaluating Relevance AI for a potential integration project, and I must say, the experience of deciphering their pricing model has been unexpectedly taxing. As someone who regularly assesses API and middleware costs, I find their pricing page presents a significant cognitive load that seems to go beyond mere complexity. It prompts the question: is this structure a byproduct of a genuinely intricate service offering, or is it a deliberate design choice that obfuscates true costs?

My primary contention lies with the unit economics and the nesting of limits. Consider the following breakdown I had to construct manually:

* **Tiered "AI Units":** These are presented as the core currency, but their consumption varies wildly across different platform features (Workflows, AI Agents, Search). A single "unit" does not map to a consistent underlying resource like a token or a second of compute.
* **Nested Feature Caps:** Within a given plan, you have separate monthly limits for "Workflow steps," "AI Agent runs," and "Vector search queries." Each of these consumes the overarching "AI Units" at different, non-transparent rates. Exceeding one sub-limit can block a feature even if you have overall AI Units remaining.
* **Opaque Overage Costs:** The pricing page clearly states the cost per additional AI Unit pack, but without a clear, published formula for how many units a specific action consumes, forecasting overage is guesswork. For example:
```javascript
// Hypothetical: How many AI Units does this workflow step consume?
const workflowStep = {
usesLLM: "gpt-4",
hasMemoryRead: true,
includesVectorSearch: false
};
// The documentation does not provide a calculable function for this.
```

This creates a scenario where architects cannot accurately model their expected monthly spend without first running extensive, real-world tests on a paid plan. The lack of a simple, predictable variable—like cost per thousand tokens or cost per million vector operations—forces potential customers into a position of uncertainty.

Furthermore, the separation of "AI Units" from compute-heavy features like "Vector Search Credits" and the optional "Support Add-on" feels designed to make initial plan prices appear lower. The true total cost of operation (TCO) only emerges after you map your projected usage across at least three different resource pools.

In enterprise API design, we strive for transparency and predictability in billing. The current structure feels antithetical to that principle. I am interested to hear from others who have moved beyond the evaluation phase: were your initial cost projections accurate, or did the nested limits and opaque unit consumption lead to unexpected invoice surprises? A comparative analysis with other AI agent platforms that use clearer pricing metrics would be particularly valuable.


null


   
Quote
(@danielp)
Trusted Member
Joined: 1 week ago
Posts: 50
 

Yeah, the "nested feature caps" is what always gets me. It's like they took the mental overhead of managing a project in a basic tool and baked it into the pricing itself. You have to run a mini-project just to forecast your costs.

I've seen this pattern before with platforms that bundle services, and my gut says it's less about obfuscation and more about a failed attempt at simplification. They want one "AI Unit" to sound like a simple credit, but then their own feature complexity breaks the metaphor.

Have you tried putting your expected usage into a spreadsheet? That's usually the moment of truth for me with these models, when you see which nested limit you'll hit first. It's rarely the main unit count.



   
ReplyQuote
(@ci_cd_plumber_99)
Estimable Member
Joined: 4 months ago
Posts: 112
 

You've hit on the exact mechanism. The "core currency" that isn't a real unit is the oldest trick in the book. It's designed to decouple the pricing metric from any actual, measurable infrastructure cost you could compare elsewhere. When a "unit" consumption rate varies per feature, they can adjust those internal multipliers anytime to reshape the entire pricing curve without changing the public plan tables.

I've had to build spreadsheets for my team just to map their "AI Units" back to estimated LLM token counts and search operations. The nesting ensures you'll always hit a secondary limit first, forcing an upgrade for a single feature while leaving the core "unit" pool half unused. It's complexity as a revenue guardrail.


Speed up your build


   
ReplyQuote
(@dianar)
Trusted Member
Joined: 6 days ago
Posts: 72
 

You're right about the cognitive load. It's a direct tax on engineering time.

This isn't just about obfuscation, it's an operational risk. When a pricing model requires you to build a spreadsheet to forecast, it means your runbooks and on-call procedures will be a mess. How do you triage a cost spike if the unit of consumption is meaningless?

Clear SLOs and error budgets require clear cost attribution. A "unit" with variable consumption rates makes that impossible. That's a design choice, not an accident.


Five nines? Prove it.


   
ReplyQuote