Skip to content
INDXR.AI
All docs

Settings

Settings is where you adjust how INDXR looks and behaves for you. Most of it you can leave on the defaults; the two worth knowing about are the RAG chunk size — which only matters if you export transcripts for AI-powered search — and account deletion. Each setting is described below with its options.

Email preferences

Two independent switches control what lands in your inbox. Email me about replies and messages covers replies to your support messages and is on by default. Marketing & product emails covers product news; you're subscribed by default and can opt out here.

Library page size

This sets how many transcripts show on one page of your library — 25, 50 or 100, with 50 as the default. Higher means less clicking through pages; lower means a lighter page.

RAG chunk size

This is the default length of the chunks in a RAG JSON export. RAG (retrieval-augmented generation) is the technique of feeding an AI only the most relevant snippets of a text, and chunks are the pieces a transcript is split into so a vector database — a store that finds text by meaning rather than by exact words — can look them up. Shorter chunks are tighter and better for pulling exact quotes; longer chunks keep more surrounding context per piece. The default is 60 seconds, and you can override it per export.

Scroll the table horizontally →

PresetChunk lengthApprox. tokens
Quote30s~100 tokens
Balanced (default)60s~200 tokens
Precise90s~300 tokens
Context120s~390 tokens

See JSON & RAG JSON for what the chunks look like.

Deleting your account

The danger zone deletes your account and everything in it — transcripts, credits, summaries, history — and can't be undone. You type DELETE to confirm. For exactly what is removed and what happens to your data, see the privacy policy.

Sources

  • INDXR (own code)settings list, email toggles, page-size options and defaultsVerified against apps/app/src/app/dashboard/settings/page.tsx:17-26,52-76; apps/app/src/components/dashboard/settings/LibraryPageSizeSelect.tsx:8
  • INDXR (own code)RAG chunk-size presets (30/60/90/120s, default 60) and token estimatesVerified against apps/app/src/components/dashboard/settings/DeveloperExportsCard.tsx:8,14-19
  • INDXR (own code)account deletion (type DELETE, cascade removal)Verified against apps/app/src/components/dashboard/settings/DeleteAccountCard.tsx:56-98; apps/app/src/app/api/account/delete/route.ts:7-22