Premium features overview

Paid-tier conveniences and bring-your-own-key alternatives.

Most of mnueron is free and works offline. A few features cost real money to operate (LLM API calls, attachment storage, vision-model runs) and are gated by tier. This page explains the tier matrix and the bring-your-own-key (BYOK) fallback for users who want premium features without the premium subscription.

Tier matrix

FeatureFree localFree hostedPaid hostedBYOK on either
Save / search / recalln/a
Multi-machine syncn/a
Fact extraction (v0.2.9)with own API keyper-call opt-inauto on every long save
Auto-synopsis (v0.4)with own API keyper-call opt-inauto on every long save
Attachment text extraction (v0.5)with own keysnot availableauto✓ where extractor needs LLM
Image vision description (v0.5)with own keysnot availableauto with thresholds
Webhook deliveryn/a

Bring-your-own-key (BYOK) flow

The hosted free tier doesn't pay for premium LLM features. If you want them anyway, pass your own Anthropic or OpenAI key per-call via metadata. The key is used for that one operation and then stripped from metadata before the row is persisted — it never lands in the database.

mem.save(
    content=long_text,
    namespace="my-app",
    metadata={
        "summarize": True,
        "byok_anthropic_key": os.environ["MY_ANTHROPIC_KEY"],
    },
)

Same shape for byok_openai_key (used when v0.5 image OCR ships).

Premium features that involve sending content to third-party providers (Anthropic, OpenAI) are off by default on all tiers. You opt in:

  • Per-call: add the flag to metadata as shown above.
  • Per-org: site-admin toggles in /admin (paid hosted only).
  • Per-deploy (self-host): environment variables ENABLE_AUTO_SUMMARY, ENABLE_FACT_EXTRACTION, ENABLE_IMAGE_OCR, ENABLE_ATTACHMENT_EXTRACT.

When any of these features run, the source content is sent to the relevant provider (Anthropic for auto-summary / fact extraction; OpenAI or Anthropic for image vision; tesseract or LLM for attachments). This crosses your data over a network boundary outside Supabase — that's the entire reason for the opt-in gate.

Last updated 2026-05-17edit