Skip to content

Free vs AI-enhanced

bAInquet has a free tier that produces deterministic, fully reproducible data with zero LLM work, and paid tiers that add AI enrichment on top. Every value is provenance-tagged so a consumer can always tell deterministic data from AI-derived data.

The free tier: deterministic data

The free tier triggers zero LLM work anywhere in the pipeline. A free-tier job that attempts LLM work is a contract violation rejected at enqueue. The result is data that is:

  • Reproducible. Given identical graph content and a frozen build timestamp, exporter output is byte-identical.
  • Auditable. Every fact records the deterministic extractor that produced it and a confidence score.
  • Free of model risk. No hallucination, no inference, no model cost.

What the free tier includes

The four deterministic extractors run in priority order, each stamping a provenance method:

Provenance methodConfidenceSource of the value
cms_field0.98Structured CMS fields supplied in the item json bag
schema_org0.95schema.org JSON-LD on the page
seo_meta0.85OpenGraph / SEO meta tags
text_extraction0.75Deterministic extraction from plain text

The free tier publishes these node files (all produced by free exporters):

manifest.json, ai.json, llms.txt, entities.jsonl, facts.jsonl (and per-language facts.<lang>.jsonl), relationships.jsonl, chunks.jsonl, qa.jsonl, sources.jsonl, schema.jsonld, and sitemap-ai.xml. See Node files.

The paid tiers: AI-enhanced data

The paid tiers — Pro and Business — add LLM enrichment on top of the deterministic base. Enrichment is opt-in, budgeted, and never blocks the deterministic path. It can include:

  • Gap-fill: inferring values the deterministic extractors did not find.
  • Inferred relationships: edges suggested by a model rather than read from structured data.
  • Grounded Q&A: synthetic question/answer pairs generated from the facts.
  • Tuned chunks: retrieval chunks shaped for better model consumption.

The paid tiers also gate the trust.json and openapi.json exporters, which run only when plan-derived capabilities allow.

Each paid tier includes a monthly pool of LLM tokens for enrichment — 1,000,000 on Pro and 4,000,000 on Business — and you can top up in 1M-token blocks when you need more. Business adds MCP server access, API keys, and team roles on top of everything in Pro.

Every enriched value is tagged

This is the contract that makes the paid tier safe to consume: every model-derived value carries the provenance method ai_enhanced with a lower confidence (0.60 to 0.90), and the merge policy ranks it below every deterministic method (cms_field > schema_org > seo_meta > text_extraction > model-inferred). A consumer can filter on provenance to use deterministic facts only, or to weight AI-derived facts lower.

Provenance tagging: cms_field vs ai_enhanced

cms_field (and other deterministic methods)ai_enhanced
Produced byDeterministic extractors, no LLMAn LLM, paid tiers only
Confidence0.75 to 0.980.60 to 0.90
ReproducibleYes, byte-identicalNo (model output varies)
Merge precedenceHigherLowest
Available on free tierYesNo

Because the tag travels with every published fact, a downstream AI consumer reading the node can separate owner-supplied deterministic data from AI-derived data at consumption time. See Core concepts.

Comparison

FreeProBusiness
Websitesunlimitedunlimitedunlimited
Deterministic extraction (cms_field, schema_org, seo_meta, text_extraction) + published CDN nodeyesyesyes
LLM gap-fill, inferred relationships, grounded Q&A, tuned chunksnoyesyes
Monthly LLM tokens (rechargeable in 1M blocks)01,000,0004,000,000
trust.json, openapi.json (citations / OpenAPI) exportersnoyesyes
CDN refresh cadencedailyhourlyhourly
Priority ingestionnoyesyes
Webhooksnoyesyes
MCP server accessnonoyes
API keysnonoyes
Team roles / priority supportnonoyes
Reproducible, byte-identical outputyesthe deterministic base; enriched values varythe deterministic base; enriched values vary
Provenance tagging on every valueyesyes (ai_enhanced on enriched values)yes (ai_enhanced on enriched values)

Billing status

Plan entitlements and usage are readable at GET /v1/organizations/:id/entitlements and GET /v1/organizations/:id/usage (plan-derived constants). Live payments are not wired in the current build: the Stripe integration is scaffold-only, with no checkout, portal, or webhook routes.

Pricing

For current plans and pricing, see the marketing site at bainquet.online.

Owner-controlled structured data for AI.