Spaces:
Sleeping
Sleeping
| # Decisions Log | |
| Every meaningful technical and product decision, with alternatives considered and the reasoning for the chosen path. Append-only. Each entry is auditable. | |
| --- | |
| ## D-001 β Vertical slice scope, not full platform | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** | |
| - (a) Single-document RAG-voice bot for one policy | |
| - (b) Vertical slice β full architecture for one category (Health), built for category expansion | |
| - (c) Full platform β 300 policies across all categories | |
| **Chose:** (b) | |
| **Reasoning:** With <24h to ship and an explainability-graded assignment, (a) under-signals product vision, (c) over-scopes and ships rough. (b) demonstrates senior-engineer scoping discipline while showing the full architectural surface a reviewer cares about. | |
| **Revisit at scale:** All seven "c-readiness commitments" (see Doc 02) become real work in v2. | |
| --- | |
| ## D-002 β Category for vertical slice: Health | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** Health, Life, Motor | |
| **Chose:** Health | |
| **Reasoning:** Richest structured-attribute surface (waiting periods, PED, sub-limits, network, claim ratio); broadest user relevance; cleanest public corpus from top 10 insurers (Star, HDFC ERGO, Niva Bupa, Care, ICICI Lombard, Bajaj Allianz, New India, Aditya Birla, Tata AIG, ManipalCigna). | |
| **Revisit at scale:** v2 adds Life (already harder β emotional, harder numeric compare) and Motor (price commodity). | |
| --- | |
| ## D-003 β Corpus curated, not user-uploaded | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** User-uploaded PDFs vs. pre-acquired corpus | |
| **Chose:** Pre-acquired | |
| **Reasoning:** Removes biggest source of input variance (bad uploads); enables cross-policy comparison/recommendation; positions the corpus as a product moat vs. generic RAG-over-anything. | |
| **Revisit at scale:** Same approach, larger corpus + scheduled refresh. | |
| --- | |
| ## D-004 β Architecture: hybrid structured + unstructured | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** Pure RAG, pure structured DB, hybrid | |
| **Chose:** Hybrid (DuckDB for structured, Chroma for vector) | |
| **Reasoning:** Filter UI / comparison / recommendation pre-ranking require structured data; free-form Q&A with clause citations requires unstructured RAG. Linked by canonical `policy_id`. | |
| **Revisit at scale:** Possibly migrate DuckDB β Postgres if multi-tenant; possibly Chroma β Pinecone/Qdrant if scale demands. | |
| --- | |
| ## D-005 β Streamlit for v1 UI | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** Streamlit Β· FastAPI + React Β· Next.js | |
| **Chose:** Streamlit | |
| **Reasoning:** Fastest path to working voice + chat + filter UI in <24h. Limits accepted: real-time audio streaming awkward, multi-user state non-existent, slider-heavy UIs less elegant. Business logic kept in separate `app/` module so v2 swaps only the UI layer. | |
| **Revisit at scale:** FastAPI + React for production v2. | |
| --- | |
| ## D-006 β Sarvam-first benchmarking for STT/TTS/LLM | |
| **Date:** 2026-05-13 | |
| **Status:** Locked (provider picks pending Doc 02) | |
| **Alternatives considered:** Sarvam vs. Whisper/Deepgram (STT), Sarvam vs. ElevenLabs/OpenAI (TTS), Sarvam-M vs. GPT-4o/Claude (LLM) | |
| **Chose:** Sarvam by default unless empirical benchmark shows otherwise on our test set | |
| **Reasoning:** Sarvam assignment β silent defaults to non-Sarvam stack would screen out. Each component is behind a thin interface so swapping is a config flag. | |
| **Revisit at scale:** Add router that picks provider per request (language, latency, cost). | |
| --- | |
| ## D-007 β Pricing as illustrative band, not real-time quote | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** | |
| - (i) Illustrative band with disclaimer + sourcing | |
| - (ii) Scrape comparison portals at query time | |
| - (iii) Build actuarial model from first principles | |
| **Chose:** (i) primary, (ii) for top-5 ground-truth validation | |
| **Reasoning:** Insurers hide real pricing behind callback. (iii) is out of scope. (ii) is gray-area legally and brittle. (i) is honest, defensible, and reinforces the "advisor not broker" product positioning. | |
| **Revisit at scale:** Add live aggregator integrations / B2B insurer API. | |
| --- | |
| ## D-008 β Persona: consultative advisor, not closer | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** Hard-sell pitcher vs. consultative advisor | |
| **Chose:** Consultative β modelled on a great Independent Financial Advisor | |
| **Reasoning:** Mis-selling is regulated in India; Sarvam's BFSI buyers (banks/insurers) get fined for it; consultative tone wins trust which is the real conversion driver in insurance. | |
| **Revisit at scale:** Same. Tone may flex by deployment partner. | |
| --- | |
| ## D-009 β Scope expansion: 10 insurers, comprehensive schema | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** 5 insurers Γ ~3 policies each (original v1 plan), 10 insurers Γ all health policies (expanded) | |
| **Chose:** 10 insurers Γ all health policies (target 40β80 PDFs), 40β50 structured fields per policy | |
| **Reasoning:** User explicitly expanded scope mid-flight for comprehensiveness. Aggressive but achievable with agentic crawl + batched extraction. Coverage of geography, PED, waiting periods, sub-limits, riders, etc. needed for the comparison surface to be credibly useful. | |
| **Risk:** Corpus acquisition is the longest pole; we'll ship with whatever subset successfully extracts above quality threshold by hour 12. | |
| --- | |
| ## D-010 β Secret handling: Sarvam API key | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Reasoning:** Key lives only in `.env` (chmod 600, gitignored from line 1). `.env.example` checked in with placeholder. Streamlit Cloud deployment uses its own secrets UI. Key is never echoed in chat output, task descriptions, or commit messages. If leaked, rotate immediately at dashboard.sarvam.ai. | |
| --- | |
| --- | |
| ## D-005 (revised) β Frontend stack: Next.js + FastAPI (was: Streamlit) | |
| **Date:** 2026-05-13 (revised mid-build) | |
| **Status:** Locked | |
| **Alternatives considered:** Streamlit (original v1 pick) Β· Gradio Β· Chainlit Β· Reflex Β· Next.js + FastAPI | |
| **Chose:** **Next.js 14 (App Router) frontend + FastAPI backend** | |
| **Reasoning for revision:** User unlocked the constraint mid-build ("use whatever is best"). Streamlit is fast-to-demo but signals "prototype" to a BFSI reviewer. Next.js + FastAPI signals "production-pattern, white-labelable to a bank." Extra 2β3h of scaffolding offset by polish gap and architectural cleanliness. | |
| **Revisit at scale:** Same stack. Standard production pattern for AI products in 2026. | |
| **Risk:** FE/BE auth + CORS + dual deploy adds complexity. Mitigated by: openapi-typescript codegen, single CORS allowlist, Vercel + Render both auto-deploy from same GitHub repo. | |
| --- | |
| ## D-011 β Embeddings provider: Voyage AI (Anthropic's partner) | |
| **Date:** 2026-05-13 | |
| **Status:** Pending β awaiting Voyage API key confirmation | |
| **Alternatives considered:** OpenAI text-embedding-3-small Β· Voyage voyage-3 Β· Sarvam embeddings (if API exists) Β· BGE-m3 local Β· Cohere embed-v3 | |
| **Chose:** **Voyage voyage-3**; fallback **BGE-m3 local** if no Voyage key | |
| **Reasoning:** User confirmed they have Anthropic, not OpenAI β rules out OpenAI embeddings. Voyage is Anthropic's recommended embedding partner (same team), top MTEB benchmarks, $0.12/1M tokens (well under $50 signup credit). BGE-m3 is the local zero-cost fallback β slightly slower at ingest but multilingual and free forever. | |
| **Revisit at scale:** Re-benchmark Sarvam embeddings when their API exposes them; potentially route by language (Voyage for English, Sarvam for Indic). | |
| --- | |
| ## D-012 β Backend deployment: Render | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** Render Β· Fly.io Β· Railway Β· Modal Β· self-hosted Docker on a VPS | |
| **Chose:** **Render** (free tier 750 h/mo) | |
| **Reasoning:** GitHub auto-deploy on push, Python-native, persistent disk for DuckDB + Chroma, supports environment-variable secrets, well-documented. Fly.io was close second (better global routing) but more setup overhead. | |
| **Revisit at scale:** Migrate to dedicated cloud (AWS / GCP) when v2 needs multi-region or auth. | |
| --- | |
| ## D-013 β Frontend UI library: Tailwind CSS + shadcn/ui | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** Tailwind + shadcn/ui Β· MUI Β· Chakra UI Β· Mantine Β· plain CSS | |
| **Chose:** **Tailwind + shadcn/ui** | |
| **Reasoning:** shadcn components are copy-paste primitives that produce beautiful, accessible UIs in hours. Tailwind utility classes give fine-grained control. Combined: fastest path to "looks like a real product" in a 1-day build. | |
| **Revisit at scale:** Same stack. | |
| --- | |
| ## D-014 (revised, locked) β Grader LLM: Groq Llama-3.3-70B-versatile | |
| **Date:** 2026-05-13 (locked) | |
| **Status:** Locked β user signed up for Groq, key in `.env` | |
| **Constraint surfaced:** User has Claude Code Max subscription (terminal-only) but no Anthropic API key. Cannot call Claude from deployed app code. | |
| **Alternatives considered:** | |
| - GPT-4o-mini β rejected (no OpenAI API) | |
| - Claude Haiku via API β rejected (no Anthropic API) | |
| - Groq Llama-3.3-70B-versatile β free tier, different family, clean non-circular eval | |
| - Sarvam-M self-grade with strict rubric + regex hard-fact checks + manual spot-check | |
| - Interactive grading via Claude Code (manual, not reproducible) | |
| **Chosen:** TBD β leaning Groq for clean grading story; Sarvam-M self-grade is the zero-friction fallback | |
| **Reasoning:** Groq's free tier (30 req/min) is plenty for eval; Llama-3.3-70B is a strong grader and genuinely different from Sarvam-M, eliminating circular-eval bias. Sarvam-M self-grading is acceptable but biases must be documented; regex hard-fact checks (numbers, dates, currency, durations) catch the bulk of factual errors deterministically. | |
| **Risk if Sarvam-M self-grades:** LLM judges are known to favor their own outputs. Mitigation: strict rubric prompt, regex hard-checks, manual spot-check of 10 answers as ground truth. | |
| **Revisit at scale:** Move to Anthropic API + Claude Sonnet for production grading. Add LLM-judge calibration suite. | |
| --- | |
| ## D-016 β Brain (generation LLM): Sarvam-M primary + Llama-3.3-70B / DeepSeek-V3 fallback router | |
| **Date:** 2026-05-13 | |
| **Status:** Locked (architecture); winners per query type determined empirically by gold Q&A eval | |
| **Alternatives considered:** Sarvam-M only Β· Sarvam-M + Llama-3.3-70B fallback Β· Sarvam-M + DeepSeek-V3 fallback Β· Hybrid router across all three Β· GPT-4o / Claude (rejected β no API) | |
| **Chose:** **Hybrid router** β Sarvam-M primary, escalate to Llama-3.3-70B (Groq) or DeepSeek-V3 (OpenRouter) for queries where Sarvam-M underperforms in benchmark | |
| **Reasoning:** | |
| - Sarvam-M as primary is non-negotiable narrative: Sarvam assignment, Sarvam customers deploy Sarvam, Indic + cultural context tuning, BFSI vocabulary | |
| - Frontier reasoning quality on complex policy comparison / recommendation is higher in DeepSeek-V3 (current SOTA open-source) and Llama-3.3-70B than in mid-size Indic models | |
| - A router pattern lets us be honest about strengths/weaknesses: "Sarvam-M for X, alternate brain for Y, here's the benchmark proving why" | |
| - This is the senior-engineer architectural answer; aligns with how production B2B AI services route by competence | |
| **Router heuristic v1:** | |
| - Indic language detected β Sarvam-M | |
| - Comparison of 3+ policies β fallback brain (longer context, stronger reasoning) | |
| - Open-ended recommendation requiring multi-hop reasoning β fallback brain | |
| - Simple single-policy Q&A β Sarvam-M | |
| **Empirical override:** if gold Q&A eval shows Sarvam-M wins a query class we expected to lose, we keep Sarvam-M for that class. Data > heuristic. | |
| **Revisit at scale:** Add additional candidate models (Gemini 2.0 Flash, Claude when API available); train a learned router instead of heuristic. | |
| --- | |
| ## D-015 β API contract: REST with OpenAPI-driven TS codegen | |
| **Date:** 2026-05-13 | |
| **Status:** Locked | |
| **Alternatives considered:** REST + manual TypeScript types Β· REST + `openapi-typescript` codegen Β· tRPC (Node-only, doesn't fit Python BE) Β· GraphQL Β· gRPC | |
| **Chose:** **REST + `openapi-typescript` codegen from FastAPI's auto-generated OpenAPI** | |
| **Reasoning:** FastAPI ships an OpenAPI schema out of the box. `openapi-typescript` turns it into TypeScript types for the Next.js frontend β single source of truth, types update on backend change. Simpler than GraphQL for our request/response shape. | |
| **Revisit at scale:** Same. If real-time streaming becomes the dominant pattern (e.g. streaming TTS), add a WebSocket route alongside REST. | |
| --- | |
| --- | |
| ## D-017 β Regulatory corpus acquisition deferred (Akamai bot protection) | |
| **Date:** 2026-05-13 | |
| **Status:** Deferred to v2 | |
| **Context:** 17 IRDAI + government regulatory PDF URLs identified by research agent. 14 of 17 on `irdai.gov.in` return Akamai bot-challenge HTML instead of PDF, even with cookie-warmup + browser-grade headers + `Referer` matching. 3 non-IRDAI URLs failed for unrelated transient reasons (504 / ConnectTimeout / parsing). | |
| **Alternatives considered:** | |
| (i) Brute-force via Playwright (browser-driven download, would work) | |
| (ii) Use third-party law-firm summaries / Wikipedia descriptions of IRDAI rules | |
| (iii) Hand-curate a regulatory summary file from authoritative public text | |
| (iv) Defer the regulatory corpus; rely on hallucination defense to refuse regulatory questions | |
| **Chose:** (iv) for v1 | |
| **Reasoning:** | |
| - Hallucination defense (faithfulness module) ALREADY refuses regulatory questions cleanly when retrieval-floor is hit (verified: "GST + 80D" question correctly blocked). | |
| - (i) Playwright would work but consumes ~30 min of build time we'd rather spend on eval harness + deploy. | |
| - (ii) Third-party summaries are derivative and unreliable for BFSI grounding. | |
| - (iii) Hand-curating violates our own no-hallucination rule β we cannot insert training-data facts into the corpus. | |
| **Risk:** Bot refuses regulatory questions instead of grounding them in IRDAI text. This is the *safer* failure mode β refusal vs. hallucination. | |
| **Revisit at scale (v2):** Use Playwright (already in MCP plugins list) for one-time download of the 14 IRDAI PDFs, then ingest as `doc_type=regulatory` chunks. Build a periodic refresh job. | |
| --- | |
| *Entries added as we go. Format: D-NNN β short title, date, status, alternatives, chose, reasoning, revisit-at-scale, optional risk.* | |