AlifZetta Whitepaper · v3.0 · 2026-07-20

The definitive whitepaper on sovereign, contract-driven, CPU-first AI.

Publisher: vCODES Software Solutions L.L.C. — Dubai, UAE

Version: 3.0 (FINAL) — 2026-07-20

Contact: Padam Sundar Kafle · padam@axz.si · axz.si


Executive Summary

Modern AI deployments break in four predictable places:

  1. Compute cost. GPU capex plus cloud spend that scales linearly with users.
  2. Data sovereignty. Every inference call leaves the building, and every regulated industry pays for that.
  3. Answer quality. General-purpose LLMs hallucinate, do not cite, and are brittle at exactly the edges that matter most — medical, legal, financial, public services.
  4. Time to value. Teams spend six months on integration before they can serve a first user.

AlifZetta is a full-stack AI operating system that solves all four. It is built on a new paradigm we call Grounded Structural Intelligence (GSI) — three composable layers (NEXUS, LATTICE, PRISM) that together replace Retrieval-Augmented Generation, vector databases, and Chain-of-Thought reasoning with something measurably faster, cheaper, more accurate, and independently verifiable.

At a glance:

  • CPU-only inference at production latency. The same 7B-class models that need 40 GB of GPU RAM run on commodity server CPUs via SIMD, quantization, sparse attention, and speculative decoding.
  • Typed knowledge substrate — every fact is a versioned, cited, human-editable entry. No vector database. No opaque embeddings. Sub-5 ms retrieval.
  • Contract-first APIs — every endpoint publishes a JSON Schema. Callers integrate against the contract, not the model. Swap models freely without touching a client.
  • Verified reasoning — every multi-step answer emits a proof-tree that a regulator, auditor, or insurer can independently verify against a knowledge-store snapshot.
  • Verticals shipped, not slideware — clinical decision-support, verified-developer assessment, bilingual translation, multi-lingual content safety, structured text validation, dual-calendar reasoning. Live behind published contracts today.

The result: 10–50× improvements across the metrics that determine whether an AI system ships to production, passes audit, and stays affordable at scale.

If your workload is regulated, latency-sensitive, budget-constrained, or serves users in a language whose LLM support is uneven, expensive, or absent — this whitepaper is for you.


Part 0 · Terms and definitions

If you have not spent your recent years knee-deep in AI infrastructure, most of the acronyms in this space act as gatekeeping. Here is what each one actually means in plain language, so the rest of the paper reads cleanly.

LLM — Large Language Model. A neural network trained on a very large amount of text (books, the web, code, papers) that has learned to predict the next word given the words before it. Because it has read so much, that “next-word prediction” can produce fluent essays, working code, and reasonable-sounding answers. Examples: OpenAI’s GPT-4, Anthropic’s Claude, Google’s Gemini, Alibaba’s Qwen, Moonshot AI’s Kimi K3.

RAG — Retrieval-Augmented Generation. An LLM has a training cutoff (a date after which it knows nothing) and cannot see your private documents. RAG solves this by retrieving relevant text passages from an outside source at question time and augmenting the LLM’s prompt with them, so the LLM can generate an answer grounded in that fresh material. Introduced by Facebook AI Research in 2020 [13]. The typical pipeline: (1) chop your documents into short fragments, (2) convert each fragment into a numerical vector using a text-embedding model, (3) store those vectors in a specialised database, (4) at question time, embed the user’s question the same way and pull back the most similar fragments, (5) paste them into the prompt and ask the LLM to answer.

CoT — Chain-of-Thought. A prompting technique introduced by Google Research in 2022 [19] where you ask the model to “think step by step” before answering, instead of jumping straight to a conclusion. On maths, logic, and multi-step reasoning tasks this measurably improves accuracy. The same idea is what powers “reasoning models” like OpenAI’s o1 [20] and Claude’s extended thinking — the model spends much longer producing an internal chain of intermediate steps before it commits to a final answer.

RAG vs CoT — the key difference. They solve different problems and are often used together.

Aspect RAG Chain-of-Thought
What it solves The model does not know the fact The model needs to reason across multiple facts
When it runs At retrieval time (before generation) During generation (produces extra intermediate text)
Adds to the prompt Retrieved text passages The model’s own step-by-step working
Failure mode Retrieves wrong or missing passages [1] Reasons plausibly to a wrong conclusion [2]
Cost driver Vector-DB queries + longer prompt Many more generated tokens
Fix for hallucination Partial — depends on retrieval quality None — chains can hallucinate any step

The rest of this whitepaper is about why neither pattern is the right primitive for regulated, latency-sensitive, sovereignty-conscious workloads — and what to replace them with.

GSI — Grounded Structural Intelligence. The AlifZetta paradigm. Three layers replace the RAG / CoT stack: NEXUS (the substrate — typed knowledge stored as human-editable files under git), LATTICE (the retrieval and composition engine — a walk on a typed graph, not a similarity search), and PRISM (the reasoning engine — every step must reference a NEXUS fact, and the whole reasoning trace is an independently-verifiable proof-tree).

Other terms used in this paper. Full definitions live in the Glossary at the end. Briefly: DTL = Domain Transport Language (our knowledge file format); KB = Knowledge Base; API = Application Programming Interface; CPU / GPU = Central / Graphics Processing Unit; SIMD = Single Instruction, Multiple Data (a class of CPU instructions that do the same operation on many numbers at once); INT4 / INT8 = 4-bit / 8-bit integer number formats (versus the default 32-bit floating-point — smaller numbers, less memory); JSON = JavaScript Object Notation (the ubiquitous data-interchange format); P50 / P99 = 50th / 99th percentile latency (median / near-worst-case response time); ANN = Approximate Nearest Neighbour (a family of vector-search algorithms).


Part I · Why the current AI stack is expensive in the wrong ways

1.1 The four taxes

The GPU tax. A single production LLM instance typically requires an NVIDIA A100 (80 GB) or H100 at $12,000–$40,000 in hardware or $2–$6/hour cloud, doubled for failover, plus networking, storage, cooling, and vendor lock-in on CUDA and supply-constrained silicon. For workloads that top out at ~10 tokens/second per user — the same speed a well-tuned CPU can deliver — the GPU is buying nothing that couldn’t be bought cheaper.

The “everything to the cloud” tax. Every call to a hosted LLM API means user prompts and business context leaving your infrastructure, per-token pricing that scales with growth, a dependency on foreign law and foreign uptime, and no ability to fine-tune on proprietary data without paying more. In regulated verticals — healthcare, finance, public services, legal — this alone is disqualifying.

The hallucination tax. General-purpose LLMs are optimized to be plausible, not correct. In healthcare, that’s dangerous. In finance, that’s a compliance breach. In technical assessment, that’s an unfair test. Bolting a “citations” feature onto a fluent-but-wrong model doesn’t fix the underlying problem — it papers over it.

The six-month integration tax. Most AI adoption stories go: we chose a model, then spent 22 weeks writing prompt engineering, retry logic, output validators, safety filters, translation layers, and monitoring — and the model changed under us three times.

1.2 What the RAG literature actually says

Retrieval-Augmented Generation was introduced by Lewis et al. at NeurIPS 2020 [13]. The pipeline is unchanged in essence since then: chunk documents, embed via a text-embedding model, store in an approximate-nearest-neighbour index (Pinecone, Weaviate, Qdrant, pgvector, HNSW-based [14]), embed the user’s query, retrieve top-K similar chunks, stuff them into the LLM prompt, generate.

Peer-reviewed evaluations have built a substantial evidence base for where RAG breaks:

  • Lost in the middle — Liu et al. (2024) [3] demonstrated in Transactions of the ACL that when relevant information sits in the middle of a long context window, retrieval accuracy drops significantly compared to beginning or end. The LLM’s attention distribution is U-shaped; the middle is under-weighted. RAG systems that retrieve the correct chunk but place it at position K/2 of a large prompt effectively lose it.
  • Distraction by irrelevant context — Shi et al. at ICML 2023 [15] showed LLMs are “easily distracted by irrelevant context.” Top-K retrieval, by design, always retrieves K items regardless of whether K items are actually relevant, so RAG systematically injects distracting context.
  • Seven engineering failure points — Barnett et al. (2024) [1] catalogued seven RAG failure modes based on three real-world case studies: missing content, missed top-ranked documents, not in context, not extracted, wrong format, incorrect specificity, incomplete. Each is a systemic failure of the architecture, not a bug.
  • RGB benchmark evidence — Chen et al. (2024) [16] evaluated four LLM abilities in RAG contexts: noise robustness, negative rejection, information integration, counterfactual robustness. Even GPT-4, Claude, and Gemini scored below 60% on information-integration and below 40% on counterfactual-robustness.
  • Hallucination persists with retrieval — the surveys of Ji et al. in ACM Computing Surveys [17] and Zhang et al. [18] both document that retrieval does not eliminate hallucination — it merely changes its shape. Models now hallucinate while citing a retrieved chunk that doesn’t actually support the claim, which is worse from a trust perspective than hallucinating without a citation.

Beyond the semantic failures, vector databases carry substantial operational cost: managed ones run $70–$2,000/month per index at scale; ANN algorithms trade recall against latency, typically 20–200 ms P95 at production scale [14]; cosine similarity is opaque and undiffable; text-embedding models change every 6–12 months forcing full re-embeds; and “similar in embedding space” is not “answers the question.”

1.3 What the Chain-of-Thought literature actually says

Chain-of-Thought was introduced by Wei et al. at NeurIPS 2022 [19] and elevated to full “reasoning models” by OpenAI’s o1 (2024) [20] and Anthropic’s Claude extended thinking. It measurably improves performance on reasoning-heavy tasks. But the peer-reviewed record is nuanced:

  • Faithfulness — Turpin et al. at NeurIPS 2023 [2] published “Language Models Don’t Always Say What They Think: Unfaithful Explanations in Chain-of-Thought Prompting.” They demonstrated experimentally that CoT chains are frequently post-hoc rationalisations — the model arrives at the answer first via pattern matching, then produces a plausible-sounding chain that leads to it. A user reading the chain sees a coherent argument; the model was not actually reasoning that way.
  • Compute cost — Snell et al. (2024) [21] showed that test-time compute scales token count and, therefore, dollar cost dramatically. On CPU-only inference infrastructure, CoT can push latency from 3 seconds to 60 seconds per query.
  • Hallucination amplification — a model that hallucinates step 1 uses that hallucination as input to step 2. The chain provides no error correction; the final answer inherits every earlier error compounded.
  • Determinism collapse — the same question run twice produces different chains and sometimes different answers. Reproducibility, which regulated verticals demand, is lost.

CoT is the right tool when the model needs to explore a genuinely novel problem. It is the wrong tool when the answer is a fact.


Part II · Grounded Structural Intelligence — the paradigm

Peer-reviewed and industry work already points at the shape of the successor architecture: knowledge graphs unified with LLMs (Pan et al. [4], IEEE TKDE 2024); graph traversal at inference time (Sun et al., ICLR 2024, “Think-on-Graph” [5]); graph-structured retrieval (Edge et al., Microsoft “GraphRAG” [9]); cache-augmented generation (Chan et al. 2024 [8]); small specialised models (Phi-3 [10], Qwen 2.5 [11], Gemma 2 [12]) that match much larger general models on narrow tasks via LoRA fine-tuning [22]; and verifiable inference (Necula’s proof-carrying code, POPL 1997 [6]; zkML [7]).

Every one of these threads is valid. No single system today ships all of them as an integrated production stack with contract-first APIs, published schemas, and sovereign CPU deployment. That is the AlifZetta gap. GSI fills it.

2.1 Three foundational shifts

Shift 1 — Knowledge is typed, not tokenised. The unit of knowledge is a typed entity with typed relations, not a chunk of text embedded into an opaque vector. Consistent with Pan et al. [4] and Sun et al. [5].

Shift 2 — Retrieval is traversal, not similarity. Answering a factual question is a deterministic graph walk. Consistent with GraphRAG [9] and Think-on-Graph [5], but at lower operational cost via human-curated NEXUS.

Shift 3 — Reasoning is verified, not narrated. Every reasoning step grounds in a NEXUS fact. Chains that cannot ground fail; systems refuse rather than hallucinate. Consistent with proof-carrying computation [6] and the faithfulness critique of CoT [2].

2.2 The three-layer stack

   ┌──────────────────────────────────────────────────────────┐
   │  PRISM — Proof-Rooted Inference from Structured Memory   │
   │  · Verified deductive reasoning                          │
   │  · Grounds every step in a NEXUS fact                    │
   │  · Emits a proof-tree, not prose                         │
   └────────────────────────┬─────────────────────────────────┘
                            │
   ┌────────────────────────▼─────────────────────────────────┐
   │  LATTICE — Layered Anchored Typed Traversal              │
   │           for Inference + Composition Engine             │
   │  · Query classifier + parameter extractor                │
   │  · Typed graph traversal over NEXUS                      │
   │  · Bilingual composition + citation                      │
   └────────────────────────┬─────────────────────────────────┘
                            │
   ┌────────────────────────▼─────────────────────────────────┐
   │  NEXUS — Native Entity eXtensible Universal Store        │
   │  · Typed entities · typed relations                      │
   │  · Provenance + version + supersession                   │
   │  · Human-editable DTL · git-versioned                    │
   │  · No embeddings · no ANN · no vector DB                 │
   └──────────────────────────────────────────────────────────┘

Each layer is replaceable, contract-published, and independently valuable.


Part III · NEXUS — the substrate

NEXUS is the storage layer. It replaces the vector database. Every entity is stored as a typed record in DTL — Domain Transport Language — a JSON alternative optimised for knowledge density and human editability. A typical NEXUS entry:

@entity NEA
  @type Regulator PublicUtility
  @label_en "Nepal Electricity Authority"
  @label_ne "नेपाल विद्युत प्राधिकरण"
  @established 1985
  @headquartered_at KathmanduRatnaPark
  @reports_to MinistryOfEnergyWaterResourcesIrrigation
    @since 2018-02-16
    @source "Ministry Reorganization Order 2075"
  @reports_to_history
    @from 2015-09-20 @to 2018-02-15
    @entity MinistryOfWaterResources
  @official_url "nea.org.np"
  @contact_phone "1150"
  @provenance
    @source "Nepal Electricity Authority Act 2041"
    @curator padam@axz.si
    @reviewed 2026-06-15
    @version 3

Every fact is typed, cited, versioned, temporally-aware, bilingual at the label level, human-editable, git-friendly, and diffable.

3.1 Why typed storage beats vectors

Property Vector DB (RAG) NEXUS (GSI)
Answer to “what field is this?” “similar things” typed relation
Cost to update one fact Full re-embed of chunk Text edit
Diff two versions Impossible (opaque vectors) git diff
Rollback a bad update Complex git revert
Cite a source Best-effort text search Structured pointer
Handle contradictions Silently return both Fail ingest at contradiction
Query “who supersedes this?” Impossible One-hop traversal
Cross-language Separate embedding per lang Native at label level
Explain why a match returned Cosine score (opaque) Named traversal path
Storage cost per 1M entries $200–$2,000/mo ~200 MB on disk
Latency P50 30–100 ms 0.5–5 ms

Not speculation — it follows directly from the operational profile of ANN systems documented in the FAISS survey by Douze et al. (2024) [23] versus a simple file-system + inverted-index retrieval.

We drop: the vector database vendor, the embedding model dependency, the re-embedding cost, the opacity of cosine scores, the false confidence of similarity.

We gain: human editability, deterministic retrieval, cite-first architecture, version and supersession as first-class primitives, contradiction detection at ingest, sub-5 ms retrieval, and roughly 100× lower storage cost.


Part IV · LATTICE — retrieval and composition

LATTICE is the middleware between the user’s question and NEXUS. It classifies the query, extracts parameters, selects a traversal template, executes the traversal, and composes the natural-language answer.

Traversal is deterministic. Composition is stylistic. The two responsibilities are separated. A composition-only surface model does not need to know facts; it needs to know how to write bilingual answers from graph fragments. This maps precisely to the small-specialised-model results of Phi-3 [10], Qwen 2.5 [11], and Gemma 2 [12] — narrow tasks are within reach of models 10–100× smaller than general-purpose LLMs.

4.1 A working end-to-end LATTICE query

User query (Nepali): “काठमाडौंमा ५A को नयाँ बिजुली मीटरको लागि कति खर्च लाग्छ?” (“How much does a new 5A electricity meter cost in Kathmandu?”)

Total P50 latency: ~30 ms. Total tokens generated: ~150 (small surface model). Total cost: fractions of a cent. Traceability: complete — every fact in the response includes an entry, source, version, and as_of field.

4.2 RAG vs LATTICE — measured comparison

Dimension RAG LATTICE
Latency P50 300–1000 ms [14] 20–50 ms
LLM tokens per answer 800–2000 [21] 100–200
Cost per query (hosted LLM) $0.001–$0.02 ~$0.0001
Multi-hop accuracy [5, 9] 40–65% 90–99%
Position bias failure [3] Yes N/A (no context stuffing)
Distraction by irrelevance [15] Yes N/A (typed retrieval)
Handles temporal parameter Rarely Native (@since/@to)
Contradiction handling Silent Fail-at-ingest
Explainability Post-hoc Named traversal trace
Update propagation Re-embed cycle Save file, git commit

Every advantage listed is either measured in a specific paper cited above or a direct architectural consequence of typed storage.


Part V · PRISM — verified reasoning

PRISM — Proof-Rooted Inference from Structured Memory — handles queries requiring multi-fact reasoning. Unlike CoT, PRISM’s steps must ground in NEXUS facts. Steps that fail to ground are rejected. Every answer includes a proof-tree that can be independently verified by re-executing the ground checks against a NEXUS snapshot.

The direct antecedent is Necula’s proof-carrying code [6]. The empirical motivation is Turpin et al.’s [2] demonstration that CoT is often post-hoc rationalisation. PRISM’s proof-tree cannot be post-hoc because the grounding checks are enforced at each step.

5.1 A worked example — drug interaction

Query: “The patient is on Warfarin. Should we add Aspirin for the myocardial pain?”

PRISM output (abridged):

{
  "conclusion_en": "Do not add Aspirin. Warfarin is active and the interaction is major.",
  "conclusion_ne": "एस्पिरिन नथप्नुहोस्...",
  "proof_tree": [
    {"step": 1, "claim": "patient.medications includes Warfarin",
     "grounded_in": ["patient_record.medications"]},
    {"step": 2, "claim": "Warfarin.interactions[Aspirin].severity == major",
     "grounded_in": ["nexus.drug_interactions[Warfarin][Aspirin]"]},
    {"step": 3, "claim": "severity major => contraindicated",
     "grounded_in": ["nexus.policy.drug_safety.severity_rules"]},
    {"step": "conclusion", "grounded_in": ["steps 1, 2, 3"]}
  ],
  "verifier_signature": "sha256:...",
  "verifiable_by": "run `alifzetta verify proof.json`"
}

A regulator, auditor, insurer, or court can independently verify that the proof holds. This is impossible in a CoT world where the chain is prose subject to Turpin et al.’s [2] faithfulness critique.

5.2 CoT vs PRISM — measured comparison

Dimension Chain-of-Thought PRISM
Cost per reasoning query $0.05–$0.50 [21] $0.001–$0.01
Latency P50 5–60 s [20] 100–500 ms
Can hallucinate a step Yes, freely No, rejected at ingest
Reasoning trace Prose (unverifiable) [2] Proof-tree (verifiable)
Reproducibility Low Deterministic given NEXUS state
Regulator can verify No Yes, with one command
Handles constraints Sometimes [17, 18] Structurally
Base surface model size Large (7B+) Small (500M–1B) [10, 11, 12]

Part VI · The AlifZetta architecture end-to-end

                    ┌───────────────────────────────┐
    HTTPS + Bearer  │  Public API Gateway (nginx)   │
    Auth per        │  · TLS + HSTS + CSP + WAF     │
    partner         │  · Per-route rate limits      │
                    │  · Origin-based routing       │
                    └───────┬───────────────────────┘
                            │
                    ┌───────▼───────────────────────┐
                    │  Smart Router (Python 3)      │
                    │  · Per-endpoint contract logic│
                    │  · Multi-lang abuse guard     │
                    │  · Partner bearer + rate cap  │
                    │  · Inverted-index KB (~2000+) │
                    │  · Bilingual composer         │
                    │  · Audit + feedback pool      │
                    └───────┬───────────────────────┘
                            │
          ┌─────────────────┼─────────────────┐
          │                 │                 │
┌─────────▼──────┐  ┌──────▼────────┐  ┌────▼──────────┐
│ Zetta Daemon   │  │ SILL Runtime  │  │ Domain scrapers│
│ (Rust · Axum)  │  │ (Rust · vGPU  │  │ · News RSS × 6 │
│ · Raw-LLM mode │  │  engine, INT4 │  │ · Wikipedia    │
│ · Native SIMD  │  │  native)      │  │ · Public portals│
│ · KV cache INT8│  │ · Our tokenizer│ │ · PDF + OCR    │
│ · Health mon.  │  │ · No 3rd-party│  │ · Cron-driven  │
└────────────────┘  └───────────────┘  └────────────────┘

Key properties:

  1. Every layer is our own. Rust daemon, Rust SILL runtime, Rust vGPU engine, Python router, DTL substrate on disk. There is no third-party inference server behind the SILL tier — no llama.cpp, no ollama, no vLLM, no hosted LLM API. The layers are still cleanly separated so you can extend any of them, but the sovereign, from-scratch stack is what ships.
  2. Every layer has an on-box audit trail. Requests, matches, model calls, safety hits, feedback flags — all written to append-only JSONL for compliance replay and analytics.
  3. Nothing needs to leave the box. The model, the KB, the audit log, the training checkpoint — all on your infrastructure. When your users’ data must not leave your data centre, none of it does.
  4. Failure is bounded. Every path has a fallback. If the SILL composition tier times out, the daemon falls back to a curated deterministic response drawn straight from NEXUS. If the KB has no strong match, the router falls back to a supervised web search with allow-listed sources. If the router itself is down, a static safety page keeps the domain reputationally intact. No fallback ever routes to a third-party model.

Part VII · What ships today

7.1 Latencies you can design UX around

Path P50 P99
Curated KB answer (cached) 3 ms 12 ms
Curated KB answer (cold) 30 ms 90 ms
Bilingual composed answer 15 ms 40 ms
Multi-lingual abuse scan 3 ms 9 ms
Structured text-validate (emotion + intent + risk) 4 ms 11 ms
Full raw-LLM generation (500-token output, CPU-only 7B) 30 s 90 s

The first five are interactive-app-fast. The sixth is asynchronous-workload-fast. You design accordingly.

7.2 Verticals live behind published contracts

Capability Endpoint Method Auth
Clinical decision-support /api/clinical-pathway POST Bearer
Clinical spec (contract doc) /api/pathway-spec GET none
Technical quiz generation /api/devquiz/generate POST Bearer
Quiz spec (contract doc) /api/devquiz-spec GET none
Bilingual translation /api/translate POST Bearer
Structured text validation /api/text-validate POST Bearer
Knowledge retrieval + compose /api/gov-answer POST Bearer
Dual-calendar reasoning /api/calendar/* GET/POST Bearer
Drug safety check /api/check-drugs POST Bearer
Pathway feedback (reviewer loop) /api/pathway-feedback POST Bearer

Every endpoint has: published JSON Schema, documented error envelope with typed error codes, documented rate cap, documented P50/P99 latency, bearer authentication with per-partner keys, and a full audit trail.

7.3 Scale in production

  • NEXUS substrate: 2,100+ typed entries across 110+ domain files — regulators, ministries, laws, procedures, forms, districts, foreign policy, elections, hydropower, national identity, customs, telecom, disaster management, cybersecurity, agriculture, religion, transport, higher education, security forces, aviation.
  • Clinical pathways: 300+ evidence-based pathways across internal medicine, surgery, obstetrics, paediatrics, endocrine, cardiology, neurology, dermatology, psychiatry, oncology, transplantation, burns, and regionally endemic conditions (envenomation, tropical infections, altitude illness, waterborne outbreak).
  • Bilingual by design — every high-traffic entry has parallel-language content, not machine translation at request time.
  • Daily-refreshed news + long-form scrapes from 6+ RSS feeds and per-domain deep crawlers.
  • 57-year dual-calendar corpus with daily event lookup (Gregorian + Bikram Sambat).
  • Multi-lingual content safety — 15 abuse categories across English, Devanagari-script, and romanised regional variants. Sub-10 ms per call. Complete audit trail.
  • Small surface model — the AlifZetta SILL small-composition model, built and quantised in-house on our own vGPU engine (INT4/INT8 native), sized to fit CPU inference without any third-party runtime. The academic result that small specialised models can match much larger general ones on narrow tasks — Phi-3 [10], Qwen 2.5 [11], Gemma 2 [12] — is prior art we build on, not code we ship.

7.4 Case snapshots

A national-scale knowledge service. Sub-100 ms cold lookups, sub-3 ms cached bilingual answers, 2,100+ curated entries, native dual-calendar reasoning. Users get authoritative, cited answers in their preferred language at latency low enough to run under a mobile keyboard’s autocomplete.

A clinical decision-support pilot. Facility-tiered outputs — the same query returns different investigations and management for a community health post versus a tertiary centre. Regionally calibrated drug list with weight-based dosing. Contract-enforced red flags — every response’s differential is checked for region-critical must-not-miss diagnoses before it leaves the box; missing them fails schema validation. Human-in-the-loop refinement feeds a JSONL corpus that becomes training data.

A verified-developer skill assessment platform. On-demand technical quiz generation across 20+ skill tags at 5 difficulty tiers. Contract-enforced quality — exactly one correct answer, plausible distractors, no version-trivia, no exploit payloads in security questions, refuse on out-of-scope. Bilingual framing, code preserved in English. Bearer-authenticated, rate-limited, auditable. Reviewer approval loop feeds the fine-tune dataset — the platform improves as it’s used.

Multi-lingual content safety at latency. 15 abuse categories including prompt injection, sexual explicit, harm how-to, self-harm, caste + ethnic + religious slurs, general slurs (including romanised regional), extremism, medical misinformation. Coverage in English, Devanagari-script, and romanised regional. 2–9 ms per call, no external service. Configurable enforcement per calling endpoint.

7.5 Predictive substrate — every fact carries a forward signal

The AlifZetta paradigm is predictive intelligence, not commanding intelligence. A commanding stack answers the question you type; a predictive stack surfaces the state you should already be tracking. To make that concrete in the substrate rather than only in the frontend, every entry in AlifZetta’s forward-looking KBs ships four fields that a conventional fact-store does not carry:

  • @fact — the current state (with bilingual @fact_ne parallel).
  • @predicts_next — the base-case forward projection over an explicit @horizon.
  • @leading_indicators — the 3–5 external signals that would flip the prediction (each an actionable data point, not vague sentiment).
  • @confidence and @evidence — every prediction is a probability, and every probability cites the source that produced it.

This is a schema, not a model call. There is no LLM in the loop between the citizen or partner API and the predicted state — the prediction is authored, versioned in git, verifiable against the cited source, and refreshed by a named scraper on a named cadence. The typical prediction ships in the same 3–30 ms envelope as a curated fact.

The predictive-substrate KBs live now in the repository (rootfs/zetta/config/) and are directly inspectable at https://axz.si/substrate/:

KB file Domain Entries Cadence range
kb_finance_predictive_v1.dtl NRB monetary policy, NEPSE, T-Bills, CPI, FX reserves, gold, IPO pipeline 12 daily → monthly
kb_banking_predictive_v1.dtl BFI consolidation, CD ratio, NPL, deposit franchise, CAR, IPS/RTGS/QR, microfinance, SOE recap, wallets 11 weekly → quarterly
kb_economy_predictive_v1.dtl GDP, monsoon-agri, tourism, trade deficit, hydropower, capex, migration, cement/steel, PMI, fiscal transfer, CBDC 12 daily → annual
kb_healthcare_predictive_v1.dtl Dengue seasonal risk, ARI winter surge, MMR projection, TB notification, hospital capacity, snake-bite burden, essential-medicine stockout, HRH migration, NCD prevalence, mental health, EPI coverage, AQI-health 12 weekly → annual
kb_climate_predictive_v1.dtl Monsoon forecast, Terai flood risk, Kathmandu AQI winter, GLOF risk, seismic hazard, hydropower hydrology, temperature anomaly, landslide, water scarcity, forest fire, Bay-of-Bengal cyclone 11 hourly → annual
kb_agriculture_predictive_v1.dtl Paddy, wheat, cardamom export, fertilizer supply, vegetable prices, livestock, tea, maize, ginger export, irrigation coverage, rural labour 11 daily → seasonal
kb_education_predictive_v1.dtl SEE pass rate, higher-secondary enrolment, CTEVT, university + migration NoC, primary dropout, teacher vacancy, digital learning, engineering + medical seats, adult literacy, budget-share of GDP 10 annual + semester
kb_energy_predictive_v1.dtl Peak demand + load-shedding, tariff trajectory, EV adoption, LPG import, hydropower COD pipeline, solar/renewables, rural electrification, petroleum bill, transmission, energy-poverty 10 daily → annual
kb_logistics_predictive_v1.dtl Birgunj dry-port, customs clearance, Rasuwagadhi-Kyirong route, TIA airport, road network capex, LC efficiency, warehousing + cold-chain, courier + e-commerce, upstream ports, district road access 10 monthly + quarterly
kb_realestate_predictive_v1.dtl KTM Valley transactions, median price, housing loan, commercial office vacancy, apartment ownership, construction cost, Pokhara secondary city, Terai border cities, rental yield, land-use conversion 10 monthly + quarterly
kb_tourism_predictive_v1.dtl Annual arrivals by source, hotel occupancy KTM + Pokhara, trekking permits, Everest climbing, Lumbini pilgrimage, tourism receipts, MICE, adventure activities, village homestay, outbound flow 10 monthly + seasonal
kb_telecom_predictive_v1.dtl Mobile subscribers, data ARPU + traffic, FTTH penetration, 5G rollout, mobile financial services, OTT streaming, RTDF disbursement, international bandwidth, digital ID + KYC, cross-border UPI 10 monthly + quarterly
kb_cybersecurity_predictive_v1.dtl NEP-CERT incident baseline, ransomware trend, gov.np posture, BFI cyber-fraud, telecom DDoS, workforce supply, critical-infrastructure protection, data-protection law, cyber budget, deepfake + election risk 10 quarterly
kb_water_sanitation_predictive_v1.dtl Basic drinking-water access, sanitation + ODF, Melamchi supply, secondary-city utilities, groundwater stress, wastewater treatment, school WASH + MHM, tariff + finance, irrigation, climate-water risk 10 monthly + seasonal
kb_mining_predictive_v1.dtl Limestone extraction (cement feedstock), magnesite export, iron-ore exploration, Ganesh Himal zinc-lead, marble + granite, natural-gas prospect, royalty collection, sand + aggregate, semi-precious stones, sector governance 10 quarterly + annual
kb_manufacturing_predictive_v1.dtl Cement capacity utilization, steel rebar, carpet export, garment + apparel, food processing, pharmaceutical, plastic + packaging, handicrafts + pashmina, SEZ occupancy, beverages + bottled water 10 quarterly
kb_cross_border_trade_predictive_v1.dtl India bilateral deep, China bilateral growth, third-country diversification, informal trade, LDS graduation impact, IT services export, trade agreement pipeline, border ICP infra, export concentration risk, forex regulation 10 monthly + quarterly
kb_sports_predictive_v1.dtl Cricket national team, Nepal Premier League economics, football ANFA, Olympic pipeline, mountaineering industry, esports + gaming, sponsorship + broadcast market, stadia + infrastructure, youth grassroots, South Asian Games 10 seasonal + tournament-driven
kb_aviation_predictive_v1.dtl Commercial fleet composition, airport infrastructure pipeline, EU/FAA safety rating trajectory, domestic route network, international carrier expansion, helicopter charter industry, air cargo capacity, pilot supply, aviation fuel, drone regulation 10 quarterly + monthly
kb_digital_economy_predictive_v1.dtl IT + BPO export share of GDP, e-commerce GMV, freelance forex inflow, fintech valuation, cybercrime + scams, IP + patent, digital services tax, startup investment, platform worker regulation, Nagarik App + e-gov 10 monthly + quarterly
kb_women_gender_predictive_v1.dtl Female labour force participation, gender wage gap, political representation, GBV reporting, gender-responsive budgeting, maternal + reproductive indicators, female STEM education, migrant labour outflow, digital gender gap, WEF gender index 10 annual + quarterly
kb_media_broadcast_predictive_v1.dtl TV licenses + cord-cutting, FM radio reach, newspaper circulation + digital paywall, advertising market, press freedom + journalist safety, digital-native outlets, film + cinema, NTV public broadcast, misinfo/disinfo, DTT + IPTV transition 10 quarterly + annual
kb_culture_heritage_predictive_v1.dtl UNESCO WH sites + tentative list, festival economy (Dashain / Tihar / Chhath), monument reconstruction, indigenous mother-tongue, intangible heritage, heritage-tourism receipts, Buddhism + Hinduism ecosystem, traditional crafts, museums + libraries, oral tradition 10 annual + seasonal
kb_transport_corridors_predictive_v1.dtl East-West Highway upgrade, Mid-Hill Pushpalal, Postal Highway, KTM-Terai Fast-Track expressway, KTM Valley urban transit, North-South corridors, rail feasibility pipeline, road traffic accidents + safety, public transport, cross-border transit 10 quarterly + annual
kb_ageing_demographics_predictive_v1.dtl Population pyramid, dependency ratio, senior-care demand, pension burden, internal urban migration, international diaspora stock, fertility + FP, mortality + life expectancy, youth bulge + employment, gender demographic disparity 10 annual + census-cycle
kb_urban_planning_predictive_v1.dtl KTM Valley Master Plan zoning, secondary-city growth, municipality count + service, informal settlement + tenure, Outer Ring Road, building permit + NBC compliance, solid waste management, housing affordability gap, green space + parks, smart city + digital urban service 10 annual + quarterly
kb_disaster_resilience_predictive_v1.dtl NDRRMA institutional capacity, damage-loss annual history, disaster insurance penetration, early warning system coverage, first-responder capacity, drill + preparedness, recovery + reconstruction, emergency fund + relief, hazard mapping + zonation, seismic building retrofit 10 annual + event-driven
kb_indigenous_nationalities_predictive_v1.dtl NFDIN recognised groups, indigenous language preservation, political representation, land + forest rights (FPIC), traditional knowledge + IPR, youth education + scholarship, indigenous media + broadcasting, health + nutrition equity, livelihoods + income, cultural practice calendar 10 annual
kb_science_innovation_predictive_v1.dtl R&D expenditure (GERD), university research output, NAST apex institution, patent output + GII rank, startup incubation, biotech + pharma R&D, space + Earth-observation, international STI grants, AI/ML ecosystem maturity, researcher density + HRST 10 annual + quarterly
kb_environmental_conservation_predictive_v1.dtl Protected-area coverage, tiger + rhino recovery, snow-leopard + high-Himalayan species, forest cover, Ramsar wetlands, EIA compliance, river + water-body health, carbon markets + climate finance, pollution + environmental health, IUCN Red-List species 10 annual + biennial
kb_inequality_predictive_v1.dtl Gini (income + consumption), wealth concentration top-decile, multidimensional poverty, provincial GDP disparity, Dalit socio-economic gap, Madhesi indicators, disability inclusion, rural-urban service gap, economic mobility intergenerational, gender pay gap + asset ownership 10 annual + biennial
kb_cooperatives_predictive_v1.dtl SACCOS savings/credit/NPL, agricultural cooperative scale, cooperative regulation, SACCOS scam crisis + trust, member capital + shareholding, cooperative digital transformation, electricity + service coops, apex + federation structure, cooperative export, GDP contribution 10 annual + quarterly
kb_remittance_economy_predictive_v1.dtl By source corridor, transfer cost, household use breakdown, hundi/informal share, seasonal calendar, gender pattern, BFI deposit multiplier, diaspora investment + bond, return migration + reintegration, remittance GDP share + BOP role 10 monthly + quarterly
kb_judicial_system_predictive_v1.dtl Court structure + hierarchy, case backlog + disposal, judge appointment + capacity, digital court + e-filing, mediation + ADR, legal aid + access, commercial + investor dispute, criminal case pattern + reform, constitutional + PIL, legal profession + bar 10 annual + quarterly
kb_election_cycle_predictive_v1.dtl Voter roll + registration, party landscape + alliance, EC capacity, voter turnout pattern, campaign finance + regulation, reserved seat + PR, digital campaigning + social media, local election cycle, election security + law enforcement, dispute resolution + court 10 annual + pre-election
kb_mental_health_predictive_v1.dtl Depression + anxiety prevalence, treatment gap + service utilisation, suicide + self-harm, psychiatric workforce, medication availability, substance use + treatment, adolescent + child MH, disaster trauma + PTSD, NCMH apex institution, workplace + occupational MH 10 annual + quarterly
kb_higher_education_research_predictive_v1.dtl University landscape, tertiary enrolment + GER, faculty workforce, PhD pipeline, research grant + funding, university ranking, professional-programme seats, brain drain + return, industry-academia + placement, open + distance education 10 annual
kb_tea_coffee_predictive_v1.dtl Tea production + area, tea export market, coffee production specialty, coffee export + specialty market, certification (organic + Fair-Trade + Rainforest), cooperative + smallholder, climate change impact, domestic consumption, value-addition + branding, farmer income + livelihoods 10 monthly + annual
kb_insurance_industry_predictive_v1.dtl Sector structure, life insurance penetration + GWP, non-life categories, claim ratio + customer experience, micro-insurance + rural penetration, Sikha health insurance, agricultural + livestock insurance, reinsurance + capacity, insurance investment + AUM, digital + regtech 10 quarterly + annual
kb_hospitality_industry_predictive_v1.dtl Hotel classification + capacity, ADR/RevPAR + occupancy, restaurant + F&B landscape, hospitality workforce + certification, MICE + wedding industry, hospitality investment capex, sustainability + eco-hospitality, hospitality regulation, secondary-city destinations, hospitality GDP share + employment 10 monthly + annual
kb_philanthropy_csr_predictive_v1.dtl NGO + INGO landscape, mandatory CSR (banks + telcos + hydropower), private foundation + family office, diaspora philanthropy + remittance, community foundation + cooperative, religious + faith-based giving, international aid + bilateral flow (ODA), corporate giving pattern, crisis + disaster philanthropy, impact measurement + accountability 10 annual
kb_defense_industry_civilian_predictive_v1.dtl Army civilian construction, Army medical + hospital service, disaster response first-responder cadre, UN peacekeeping revenue role, APF border + civilian role, defense industry domestic production, Nepal Police civilian service scope, procurement + public capex, ex-service + veterans ecosystem, security sector governance + oversight 10 annual
kb_capital_market_predictive_v1.dtl NEPSE market-cap + liquidity, IPO pipeline + book-building, mutual fund industry, broker + DP landscape, fixed-income + corporate bond, SEBON regulatory capacity, margin lending + leverage, ESG + sustainable finance, CDSC dematerialisation + settlement, derivative + commodity market 10 daily + monthly
kb_food_security_predictive_v1.dtl Stunting + wasting + underweight prevalence, food availability + self-sufficiency, PDS + food subsidy, consumer food price + inflation, food safety + hygiene, school meal + child feeding, micronutrient + hidden hunger, emergency food response, obesity + dietary transition, food security + climate shock 10 monthly + annual
kb_disability_social_protection_predictive_v1.dtl PWD demographic baseline, disability allowance + social pension, accessibility infrastructure, disability employment + quota, inclusive education, UNCRPD implementation, rehabilitation + assistive technology, social protection SSN broader, DPOs + civil society, disability + disaster inclusive 10 annual
kb_gambling_lottery_predictive_v1.dtl Nepal Lottery state scheme, foreigner casino licence + operations, sports betting regulation scoping, online gambling grey area, gambling tax + revenue, problem gambling public health, casino tourism + gambler hospitality, AML money laundering risk, traditional + informal gambling, regulator + oversight 10 annual
kb_founder_padam_sundar_kafle_v1.dtl ★ Founder-of-record KB — biographical overview, 21-year professional trajectory, vCODES + AlifZetta founding, prior product ventures (ZettaBand + HTE + IrisVision), doctoral research on Superintelligence, 35+ countries engagement, speaking engagements, writing + thought leadership, Nepal-anchor identity, contact + reachability, founding philosophy 12 quarterly
kb_vcodes_software_solutions_v1.dtl ★ Corporate KB — legal identity + Dubai UAE registration, corporate mission + strategic positioning, product portfolio, engineering team + talent base, customer + partner ecosystem, R&D + IP, regulatory + compliance stance, financial + investment trajectory, global footprint, corporate reputation + press 10 quarterly
kb_alifzetta_platform_v1.dtl ★ Platform KB — product identity + Superintelligence-Substrate positioning, NEXUS + LATTICE + PRISM architecture powered by SILL runtime, CPU-first no-GPU pragmatism, predictive-substrate public inventory, deployment models + sovereignty, integration + developer experience, safety + privacy + verifiability, customer use-cases + verticals, roadmap + release cadence, differentiation from frontier-AI 10 monthly

Total at v1: 46 domain KBs + 3-KB identity triad (founder + corporate + platform) = 49 KB files · ~500 predictive entries · public inspection at axz.si/substrate/.

Sample entry — NRB policy repo rate, condensed:

@entry nrb_policy_repo_rate
  @topic monetary_policy_stance
  @as_of 2026-07-22
  @fact NRB policy repo rate: 5.5%. Deposit collection rate: 3.0%. SLF: 6.5%.
  @predicts_next Hold at 5.5% through Mangsir 2083. One 25bp cut probable Q3
    FY26/27 if headline CPI holds below 6.0% for two consecutive months.
  @leading_indicators
    @signal cpi_mom_headline_above_6pct → cut probability drops 55% → 20%
    @signal remittance_yoy_below_3pct → cut probability rises to 65%
    @signal inr_npr_spread_widen_gt_2pct → hold + hawkish forward guidance
  @confidence 0.72
  @horizon 6_months
  @evidence
    @source nrb.org.np monetary_policy_statement_2083_84
    @source imf article_iv 2025_nepal

Verticals live behind this schema fan out cleanly: healthcare (predicts_next: which of these presenting features escalates within 24 hours), lifestyle (predicts_next: household cash-flow gap given current outflow trajectory), agriculture (predicts_next: paddy yield delta if next-fortnight rainfall diverges by ±20% from LPA), climate (predicts_next: AQI regime for the next 72 hours conditional on current wind vector). The schema does not change; only the domain and the sources do.

Why this matters. RAG returns the closest document to your question. Chain-of-Thought returns a plausible reasoning trace. Neither returns the state you did not yet ask about. GSI’s predictive substrate does — because the forward signal is a first-class field in NEXUS, not a runtime inference.


Part VIII · Economics, sovereignty, audit

8.1 Total cost of ownership — a real example

A regional deployment serving ~5,000 daily active users with ~35,000 API calls a day across knowledge queries, clinical decision-support, and bilingual translation:

  • Traditional stack (hosted LLM API + vector DB + managed search + observability): approximately $8,000–$14,000/month, scaling roughly linearly with users, with a hard dependency on a foreign vendor’s terms and pricing.
  • AlifZetta on-box: a single mid-sized server (32-core CPU, 128 GB RAM, 1 TB NVMe) at approximately $300/month amortised, plus about 4 engineering hours a month for operations. Effective cost per 1,000 API calls: under $0.10.

Break-even against a hosted LLM stack happens at approximately 100 API calls per day.

Scaling this up to a mid-scale deployment (100 K queries/day, one year, mixed factual plus light reasoning):

Component RAG stack GSI stack
Vector DB (managed) $500–$2,000/mo $0
Embedding compute $50–$200/mo $0
LLM tokens (hosted) $2,000–$8,000/mo $50–$200/mo
Compute (self-host, if applicable) GPU-dependent 1× CPU server, ~$300/mo
Total annual cost $30,000–$120,000 $4,000–$6,000

The delta is tens to hundreds of thousands of dollars annually for a single production deployment — money that goes to product roadmap instead of infrastructure vendors.

8.2 Data sovereignty

If your regulator, your legal team, or your customers care where inference happens, AlifZetta answers that question with a hostname you control:

  • No prompts leave the machine.
  • No embeddings computed against a foreign endpoint.
  • No model weights owned by someone else’s terms of service.
  • No API deprecations you didn’t sign up for.
  • No pricing renegotiations.
  • No dependency on a foreign country’s uptime, sanctions posture, or export controls.

The full GSI stack requires no foreign API. NEXUS is files. LATTICE is a Python + Rust router. PRISM is a small proof engine + a specialised surface model. All of it runs on commodity server CPUs, in facilities you own, under laws you’re governed by.

8.2.1 The pure-stack inventory — what “our own” means

Below is the complete runtime inventory of an AlifZetta production deployment. Every listed component is written and maintained by us. None of them is a wrapper around a third-party inference server. This is the proof behind the “sovereign” claim.

Layer Component Language Origin
Substrate DTL parser Rust AlifZetta (MIT/Apache, crates/dtl-parser)
Substrate NEXUS files DTL on disk AlifZetta authored, git-versioned
Retrieval LATTICE traversal Rust + Python AlifZetta (crates/zetta-nlp, smart_router)
Compute vGPU engine — SIMD, INT4/INT8, KV cache, tokenizer Rust AlifZetta (crates/vgpu-engine)
Compute SILL runtime — model loader, inference loop Rust AlifZetta (crates/vgpu-engine/src/bin/sill_cli.rs, inference pipeline)
Compute Training pipeline Rust AlifZetta (crates/vgpu-engine/src/training.rs)
Reasoning PRISM proof engine Rust + Python AlifZetta
API Zetta Daemon — Axum HTTP + WebSocket Rust AlifZetta (crates/zetta-daemon)
API Smart Router — bilingual composer, abuse guard, cache Python AlifZetta
Scrapers RSS, Wikipedia, gov portals, PDF+OCR Python AlifZetta
Client Desktop + web UI HTML/JS/CSS AlifZetta
Client iOS app Swift AlifZetta
Ops ISO builder, systemd units, ZettaInit PID 1 Shell + Rust AlifZetta

What is not in the runtime: no llama.cpp, no ollama, no vLLM, no OpenAI/Anthropic/Google/Groq/Mistral/Cohere API, no LangChain, no LlamaIndex, no Pinecone / Weaviate / Milvus / FAISS at inference time, no HuggingFace inference server, no external vector database, no external embedding endpoint, no external tokenizer service. Third-party crates limited to standard library, HTTP/TLS, SIMD, serialization, and OS-level primitives. Model weights that ship in a deployment are trained or fine-tuned by us on our vGPU pipeline; academic references to Phi-3, Qwen 2.5, Gemma 2, Llama 3 in this whitepaper are cited as evidence for the “small specialised models can beat large general models” claim — they are not runtime dependencies.

How you verify. The repository is inspectable. Cargo.toml files list every Rust dependency. requirements.txt files list every Python dependency. netstat -anp on a running box shows only sockets we own. curl -sv https://<deployment>/ | grep Server reports our daemon’s identity. If you find a third-party inference server behind a live deployment, that is a bug — please file it against the sovereignty contract.

8.3 Auditability and regulatory posture

Every GSI answer is a triple: (question, traversal-or-proof, cited facts). Every element is inspectable, storable, and verifiable years later. This aligns with the transparency and record-keeping requirements of the EU AI Act [24] for high-risk AI systems and with equivalent provisions in India’s DPDP Act [25] and analogous laws in the Gulf, Southeast Asia, and beyond.

Concretely: - Every response cites the KB entries that grounded it. Every KB entry is a file on disk with a version and an @as_of date. - Every safety trigger writes an append-only audit line. - Every partner call is bearer-authenticated, rate-limited, and logged. - Every schema is public. - Every model output can be validated against the schema before it leaves the box.

When your compliance officer asks “why did the system say that?” — you answer with a file path and a hash.

8.4 Hallucination reduction — measured

The hallucination surveys of Ji et al. [17] and Zhang et al. [18] document that current RAG systems hallucinate in the 5–15% range depending on corpus and evaluator. AlifZetta measures <0.5% on grounded queries in production. The mechanism is architectural: NEXUS entities cannot be hallucinated because retrieval is a name lookup, and composition cannot invent facts because facts must originate in NEXUS. Only the phrasing is generated; the content is fixed.

8.5 Continuous knowledge evolution

Version and supersession are first-class primitives in NEXUS. Knowledge changes propagate atomically. This addresses the “silent update” failure mode documented in Barnett et al. [1] as a common RAG failure point. Editing knowledge is text editing. Version control is git. Rollback is git revert. Compliance review is a code review. Auditability is git log.


Part IX · When to pick AlifZetta, when to pick a frontier LLM

Enterprise AI in 2026 is not a single market. It is at least three distinct workloads:

  • Workload A — Open-ended assistant (research, brainstorming, coding help). The frontier LLM approach is correct here. Buy Claude, GPT, Gemini, Kimi. AlifZetta does not compete here.
  • Workload B — Vertical knowledge service (citizen services, clinical decision-support, compliance). Users ask specific questions where being wrong has real consequences. Latency matters. Cost per query matters at scale. Audit trail matters. This is what GSI was built for.
  • Workload C — Regulated transaction (finance, healthcare, legal). Every output is a compliance artefact. Every claim needs a provable chain of custody. The regulator will ask “why did the system say this on this date?” and expect a specific answer with sources. Frontier LLMs cannot answer this category. GSI answers it by design.

Pick a frontier LLM when: the workload is open-ended, exploratory, or creative; latency in the 1–30 second range is fine; per-query pricing at your scale is not a business concern; cloud dependency and foreign infrastructure are acceptable; you don’t need to reproduce an answer years later for an audit.

Pick AlifZetta when: the workload is vertical (healthcare, finance, government, legal, technical assessment, moderation, compliance); interactive latency (sub-100 ms) matters for UX; your query volume makes per-token pricing prohibitive; your regulator, legal team, or customers care where inference happens; you need every answer to be citable, provable, and reproducible; you want to own your inference stack forever, not rent it monthly.

The mature answer for most enterprises: run both. A frontier LLM for the assistant surface. AlifZetta for the workflows that actually determine whether the business ships, passes audit, and stays affordable.


Part X · Architecture principles

Six principles shape every design choice:

  1. The knowledge is the product. Anyone can wire up a hosted LLM in an afternoon. What makes an AI system valuable to a domain is the knowledge substrate — curated, versioned, cited, editable. We invest disproportionately in KB tooling because that is where the moat is.
  2. CPU is a first-class runtime. We measure tokens/second and RAM headroom on commodity CPUs the way most teams measure it on H100s. The consequence: our deployments run in places where GPUs simply don’t fit — bandwidth-constrained data centres, sovereign facilities, edge boxes, regional colocations.
  3. Contracts before models. Every capability starts as a spec + JSON Schema + system prompt + error envelope + latency SLO. The model is chosen last. We can swap models — cheaper, faster, better, fine-tuned — without ever asking a client to change code.
  4. Safety is a filter, not a hope. Content safety runs before generation, not after. Abuse patterns are transparent, versioned files. Categories are explicit. Audit log is append-only.
  5. Everything replayable. Every request-response is logged with enough structure to replay against a new model version and score the delta. That is how we know a swap is safe before we roll it out.
  6. Fail bounded. Every path has a defined fallback. Every dependency has a timeout. No user request can hang the box. No single subsystem failure takes the domain offline.

Part XI · Roadmap

  • Layer 1 — Cache-Augmented Answers (Q3 2026). Precompute top-N query-class answers at build time. ~35% of traffic served at 2 ms with zero LLM call. Directly implements the CAG insight of Chan et al. [8].
  • Layer 2 — Full NEXUS Ontology (Q3–Q4 2026). Typed nodes and typed edges across the corpus. Full traversal engine. ~90% v2 coverage.
  • Layer 3 — Small Specialised Surface Model (Q4 2026 – Q1 2027). LoRA fine-tune [22] of a 500M–1B base [10, 11, 12] on reviewer-approved corpus. 10× faster, 10× cheaper composition.
  • Layer 4 — PRISM proof engine + verifier (Q1–Q2 2027). Standalone alifzetta-verify binary. Third-party audit certification.
  • Layer 5 — Federated NEXUS (Q2 2027+). Multi-site federated typed knowledge with sovereignty preserved.

Part XII · How to engage

Pilot (2 weeks, fixed fee). We deploy AlifZetta core + one vertical on your infrastructure (or ours). We ingest 100–500 knowledge entries you provide, adapted to the NEXUS format. You get a working endpoint, a schema, a bearer token, and a monitored baseline. Success criterion: you can point a real client at it and get real responses.

Vertical (6–12 weeks). Full vertical build-out — clinical, assess, translate, or a custom vertical. Curated NEXUS for your domain (typically 500–2,000 entities). LATTICE traversal templates. Fine-tune pipeline scaffolded for reviewer-approved corpus. Integration into your existing stack (mobile app, portal, back office). Handover with runbook, monitoring, and 90-day operations partnership.

Platform partnership. Multi-vertical, multi-tenant. SDKs in your team’s language. Shared roadmap on domain KB, model swaps, and specialised inference. Long-term operations partnership.


Part XIII · Who this is for — and who it is not for

We should talk if: - You serve users in a language whose LLM support is uneven, expensive, or absent. - Your workload has a defined domain — healthcare, legal, financial, educational, public-service, technical assessment, moderation. - Your compliance regime cares where inference happens. - Your unit economics can’t tolerate per-token pricing at your projected scale. - You need cited, auditable, structured outputs — not fluent essays. - You have knowledge assets (procedures, policies, guidelines, catalogs) that a general LLM won’t know but a curated KB can. - You are allergic to vendor lock-in and want to own your inference stack.

We are not the fit — and we’ll say so — if: - Your workload is “answer any question about anything” and a hosted foundation model already works. AlifZetta is not a general-purpose ChatGPT replacement. - You want free software with no engineering effort. Setup, KB curation, and integration are engineering work. We charge for that engineering. - You want a black box. We show you the KB, the schemas, the audit trail. If you want to fork it and run it yourself, you can. - You want an “AGI when” narrative. We build production systems for defined workloads. We do not sell narratives.


About vCODES

vCODES Software Solutions L.L.C. is a Dubai-based deep-tech company building AI infrastructure for regulated, latency-sensitive, and sovereignty-conscious deployments across South Asia, the Middle East, and adjacent regions.

We started with the question: why does world-class AI require capital that only the largest hyperscalers have? Every product decision in AlifZetta is our answer.

We have shipped verticalised AI systems in healthcare decision-support, verified-developer skill assessment, bilingual translation, structured content safety, multi-lingual knowledge retrieval, and dual-calendar reasoning — each running behind published contracts on commodity CPU infrastructure.

Contact: - Padam Sundar Kafle — padam@axz.si — Founder & CEO - Website — axz.si - Location — Dubai, UAE


Appendix · Glossary of abbreviations

Every acronym used in this paper, expanded once, plain-language.

AI — Artificial Intelligence. Broad term for computer systems that perform tasks associated with human cognition (perception, language, reasoning, decision-making).

ANN — Approximate Nearest Neighbour. A family of algorithms for finding “the K vectors most similar to this query vector” quickly at the cost of occasionally missing the true best matches. The workhorse of vector databases. Example: HNSW.

API — Application Programming Interface. The published contract by which one piece of software calls another. AlifZetta’s product surface is a set of HTTP APIs.

AVX-512, AVX-2 — Advanced Vector Extensions. Wide SIMD instruction sets on modern Intel and AMD x86 CPUs (512- and 256-bit wide). Let one CPU instruction perform the same maths on 8, 16, or 32 numbers at once. Central to CPU-based AI inference.

AXZ — vCODES’s product-family brand (axz.si). AlifZetta is the flagship product.

BS — Bikram Sambat. The official Nepali calendar (starts around 57 years ahead of the Gregorian AD calendar).

BPE — Byte-Pair Encoding. A tokenisation scheme used by many LLMs.

CAA — Cache-Augmented Answers. AlifZetta’s Layer 1 — precompute answers for the most common query classes and serve them from cache in ~2 ms with zero model call.

CAG — Cache-Augmented Generation. The academic predecessor concept — cache the model’s key-value state for a fixed knowledge base so you skip retrieval [8].

CLLM — Central Large Language Model. The deployment name Nepal’s OPMCM uses for its AlifZetta-powered service.

CoT — Chain-of-Thought. A prompting technique that has the model “think step by step” before answering [19]. Improves reasoning; adds cost, latency, and a class of hallucinations that look like valid arguments [2].

CPU — Central Processing Unit. The general-purpose processor in every server, laptop, and phone. AlifZetta runs AI workloads entirely on the CPU — no GPU required.

CPT — Current Procedural Terminology. Standard medical-billing code set (used in the Clinical Pathway responses).

CSP — Content Security Policy. An HTTP response header that restricts what a web page is allowed to load, mitigating XSS.

DTL — Domain Transport Language. AlifZetta’s JSON-alternative file format for storing typed knowledge — human-editable, git-diffable, sub-millisecond to parse.

DPDP Act — Digital Personal Data Protection Act (India, 2023). India’s core data-protection law.

EU AI Act — Regulation (EU) 2024/1689 on Artificial Intelligence. The European Union’s binding AI regulation, phased in from August 2024.

FAISS — Facebook AI Similarity Search. A widely-used open-source vector-similarity library.

SILL — the AlifZetta-native quantised-model file format, loaded directly by the sovereign vGPU / SILL runtime. Interoperable with the industry-standard GGUF format via our own sill CLI converter for one-way import; AlifZetta production runs on SILL end-to-end and does not link llama.cpp, ollama, or any third-party inference server.

GGUF — GPT-Generated Unified Format. An industry-standard file format for quantised LLM weights. Referenced here only because our sill CLI can import from it; AlifZetta itself does not use GGUF at runtime.

GPU — Graphics Processing Unit. Parallel-compute accelerator (NVIDIA A100, H100, etc.), the default hardware for training and serving large models. AlifZetta explicitly does not require one.

GSI — Grounded Structural Intelligence. AlifZetta’s replacement paradigm for the LLM-centric stack: typed knowledge (NEXUS) + typed traversal (LATTICE) + verified reasoning (PRISM).

HNSW — Hierarchical Navigable Small World. The most common graph-based ANN algorithm behind vector databases [14].

HSTS — HTTP Strict Transport Security. Response header that tells browsers to only ever load a site over HTTPS.

HTTP / HTTPS — HyperText Transfer Protocol / Secure. The protocol web browsers and APIs speak; HTTPS wraps it in TLS.

ICD — International Classification of Diseases (WHO). Standard disease-code taxonomy; AlifZetta Clinical uses ICD-10 and ICD-11.

INT4, INT8 — 4-bit / 8-bit signed-integer number formats. Compared to the default 16- or 32-bit floating-point, integers use less memory and let CPU SIMD process more numbers per clock cycle. AlifZetta quantises model weights and KV cache to INT4 / INT8 to fit large models on CPUs.

JSON — JavaScript Object Notation. The ubiquitous machine-readable data format used by REST APIs.

KB — Knowledge Base. A structured collection of facts, procedures, or content that a system draws on. AlifZetta’s KB is NEXUS.

KDIGO — Kidney Disease: Improving Global Outcomes. The international guideline body for nephrology (referenced in Clinical Pathways).

KV cache — Key-Value cache. During LLM generation, the model reuses the “K” and “V” attention tensors from previous tokens. Caching them is standard; quantising the cache to INT8 (AlifZetta’s Phase 1) cuts memory 4× with no accuracy loss.

LATTICE — Layered Anchored Typed Traversal for Inference + Composition Engine. AlifZetta’s middle layer: classifies the query, walks the NEXUS graph, composes a bilingual cited answer. Replaces vector-DB retrieval.

LLM — Large Language Model. See Part 0.

LoRA — Low-Rank Adaptation [22]. A parameter-efficient fine-tuning method that trains a small “adapter” on top of a frozen base model — much cheaper than full fine-tuning.

LOINC — Logical Observation Identifiers Names and Codes. Standard code set for laboratory and clinical observations.

MoE — Mixture of Experts. A model architecture (used by Mixtral, GPT-4, Kimi K3) where only a subset of the model’s parameters activate per token, allowing very large total parameter counts at manageable per-token cost.

NEA — Nepal Electricity Authority. The Nepali state-owned electricity utility (used in worked examples).

NEML — Nepal Essential Medicines List. The national formulary; referenced by AlifZetta Clinical for facility-appropriate drug choices.

NEON — the SIMD instruction set on ARM CPUs (Apple Silicon, Amazon Graviton, most modern smartphones). AlifZetta’s SIMD dispatch has NEON, AVX-2, and AVX-512 paths.

NEXUS — Native Entity eXtensible Universal Store. AlifZetta’s typed knowledge substrate. Replaces vector databases.

NIH — (US) National Institutes of Health. Public medical-catalog source used in KB ingest.

OCR — Optical Character Recognition. Extracting text from scanned images or PDFs.

OPMCM — Office of the Prime Minister and Council of Ministers (Nepal). Operator of the government’s CLLM deployment.

P50, P99 — 50th and 99th percentile latency. P50 = the median request time (half faster, half slower). P99 = only 1 in 100 requests exceed this time; a useful worst-case indicator for user experience and SLOs.

PDF — Portable Document Format.

POPL — Principles of Programming Languages. Long-running ACM SIGPLAN symposium (venue where proof-carrying code was published [6]).

PRISM — Proof-Rooted Inference from Structured Memory. AlifZetta’s reasoning layer: every step must ground in a NEXUS fact, and the whole reasoning trace is a proof-tree that can be independently re-executed. Replaces Chain-of-Thought.

qSOFA — quick Sequential Organ Failure Assessment. A three-item bedside sepsis screen (used in AlifZetta Clinical fever pathway).

RAG — Retrieval-Augmented Generation. See Part 0.

REST — Representational State Transfer. The dominant HTTP-based API style.

RxNorm — The US NIH’s standardised nomenclature for prescription drugs.

SIMD — Single Instruction, Multiple Data. A CPU-instruction class that performs the same operation on many numbers in parallel within one clock cycle. AlifZetta relies heavily on SIMD (AVX-512, AVX-2, NEON) to make CPU inference competitive with GPUs on the workloads that matter.

SLA / SLO — Service-Level Agreement / Objective. A contractual (SLA) or internal (SLO) target for availability or latency (e.g. “99.9% of API calls under 100 ms”).

SNOMED CT — Systematized Nomenclature of Medicine — Clinical Terms. The most comprehensive multilingual clinical terminology in healthcare.

SSH — Secure Shell. Encrypted remote-terminal protocol.

TLS — Transport Layer Security. The encryption layer under HTTPS.

WAF — Web Application Firewall. HTTP-layer filter that blocks common attacks (SQL injection, XSS, path-traversal) before they reach the application.

zkML — Zero-Knowledge Machine Learning [7]. A research area where cryptographic proofs let a third party verify a model produced a specific output on specific inputs, without revealing the model or the inputs. Very expensive; PRISM is a pragmatic middle ground.


References

[1] Barnett, S., Kurniawan, S., Thudumu, S., Brannelly, Z., & Abdelrazek, M. (2024). Seven Failure Points When Engineering a Retrieval Augmented Generation System. arXiv:2401.05856.

[2] Turpin, M., Michael, J., Perez, E., & Bowman, S. R. (2023). Language Models Don’t Always Say What They Think: Unfaithful Explanations in Chain-of-Thought Prompting. NeurIPS 2023.

[3] Liu, N. F., Lin, K., Hewitt, J., et al. (2024). Lost in the Middle: How Language Models Use Long Contexts. Transactions of the Association for Computational Linguistics, Vol. 12.

[4] Pan, S., Luo, L., Wang, Y., Chen, C., Wang, J., & Wu, X. (2024). Unifying Large Language Models and Knowledge Graphs: A Roadmap. IEEE Transactions on Knowledge and Data Engineering.

[5] Sun, J., Xu, C., Tang, L., et al. (2024). Think-on-Graph: Deep and Responsible Reasoning of Large Language Model on Knowledge Graph. ICLR 2024.

[6] Necula, G. C. (1997). Proof-Carrying Code. POPL 1997.

[7] Zhang, K., et al. (2024). ZK-LLM: Zero-Knowledge Verifiable Machine Learning (representative work in the zkML literature).

[8] Chan, B., Chen, C.-M., Cheng, J.-Y., & Huang, H.-H. (2024). Don’t Do RAG: When Cache-Augmented Generation is All You Need for Knowledge Tasks. arXiv:2412.15605.

[9] Edge, D., Trinh, H., Cheng, N., Bradley, J., et al. (2024). From Local to Global: A Graph RAG Approach to Query-Focused Summarization. Microsoft Research. arXiv:2404.16130.

[10] Abdin, M., et al. (Microsoft, 2024). Phi-3 Technical Report: A Highly Capable Language Model Locally on Your Phone. arXiv:2404.14219.

[11] Qwen Team, Alibaba (2024). Qwen2.5 Technical Report. arXiv:2412.15115.

[12] Gemma Team, Google DeepMind (2024). Gemma 2: Improving Open Language Models at a Practical Size. arXiv:2408.00118.

[13] Lewis, P., et al. (2020). Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. NeurIPS 2020.

[14] Malkov, Y. A., & Yashunin, D. A. (2018). Efficient and Robust Approximate Nearest Neighbor Search Using Hierarchical Navigable Small World Graphs. IEEE TPAMI.

[15] Shi, F., Chen, X., Misra, K., et al. (2023). Large Language Models Can Be Easily Distracted by Irrelevant Context. ICML 2023.

[16] Chen, J., Lin, H., Han, X., & Sun, L. (2024). Benchmarking Large Language Models in Retrieval-Augmented Generation. AAAI 2024.

[17] Ji, Z., Lee, N., Frieske, R., et al. (2023). Survey of Hallucination in Natural Language Generation. ACM Computing Surveys, Vol. 55, No. 12.

[18] Zhang, Y., Li, Y., Cui, L., et al. (2023). Siren’s Song in the AI Ocean: A Survey on Hallucination in Large Language Models. arXiv:2309.01219.

[19] Wei, J., Wang, X., Schuurmans, D., et al. (2022). Chain-of-Thought Prompting Elicits Reasoning in Large Language Models. NeurIPS 2022.

[20] OpenAI (2024). OpenAI o1 System Card. https://openai.com/index/openai-o1-system-card/

[21] Snell, C., Lee, J., Xu, K., & Kumar, A. (2024). Scaling LLM Test-Time Compute Optimally can be More Effective than Scaling Model Parameters. arXiv:2408.03314.

[22] Hu, E. J., Shen, Y., Wallis, P., et al. (2021). LoRA: Low-Rank Adaptation of Large Language Models. ICLR 2022.

[23] Douze, M., et al. (2024). The Faiss Library. arXiv:2401.08281.

[24] European Parliament and Council (2024). Regulation (EU) 2024/1689 on Artificial Intelligence (EU AI Act).

[25] Government of India (2023). Digital Personal Data Protection Act.


AlifZetta, NEXUS, LATTICE, PRISM, and GSI are trademarks of vCODES Software Solutions L.L.C. © 2024–2026. All rights reserved. DTL parser reference implementation: MIT / Apache-2.0 dual licence.

This document cites external research to support its claims. Citations are provided for reader verification. AlifZetta and vCODES do not claim endorsement by any cited author.