惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
B
Blog
P
Proofpoint News Feed
美团技术团队
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
有赞技术团队
有赞技术团队
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
罗磊的独立博客
L
LangChain Blog
GbyAI
GbyAI
腾讯CDC
T
The Blog of Author Tim Ferriss
Microsoft Security Blog
Microsoft Security Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - umbecanessa/neural-ledger-system: An inference a...
wasnaga · 2026-04-29 · via Hacker News: Show HN

An inference architecture that makes LLMs stateful.

No chat history reprocessing. No RAG. No prompt replay. The model sends only the current message, yet remembers everything.


The Problem

Every time you send a message to an LLM, the entire conversation history is re-transmitted and re-processed through every layer of the model. Turn 1 costs X. Turn 10 costs 10X. Turn 50 costs 50X.

This means:

  • Cost scales linearly with conversation length
  • Latency grows as context accumulates
  • Long-term memory is economically impossible — providers either truncate context, summarize (losing information), or charge per-token for the privilege of the model re-reading what it already processed

The entire industry accepts this as a fundamental constraint of the transformer architecture. It isn't.

What NLS Does

When a message is processed by an LLM, it passes through dozens of attention and recurrent layers, producing intermediate numerical representations (key-value tensors, state-space model states) that encode the model's understanding of that message.

NLS captures those representations, stores them on disk, and re-injects them directly into the model's cache on the next request.

From the model's perspective, the injected states are indistinguishable from having just processed the original text. The model "remembers" without recomputing.

The result:

  • Each request sends only the new user message — no history, no prior context
  • Prior understanding is loaded from cheap storage (NVMe SSD at $0.10/GB) instead of recomputed on expensive HBM ($30-40/GB)
  • Token savings compound with conversation length: 90%+ savings at 50 turns
  • The model produces functionally equivalent output to full-context processing

What NLS Is NOT

Approach What it does Why it's different from NLS
RAG Retrieves text, re-processes it through the model Still pays full compute for every retrieved passage
KV Session Caching Caches KV for one session with TTL expiry Not persistent, not cross-session, no intelligent selection
Prompt Compression Shortens text before sending Loses information, no behavioral equivalence guarantee
Fine-Tuning / LoRA Modifies model weights Cannot store per-user episodic memories, requires training compute
NLS Captures and re-injects computed internal states Zero recomputation, persistent, cross-session, model-native scoring

Architecture

NLS operates as a cycle with five phases:

 User Message
      │
      ▼
 ┌─────────────┐     ┌──────────────┐
 │  Retrieval   │────▶│   Injection   │──── Phantom tokens written
 │  BM25+Embed  │     │  RoPE-correct │     to paged KV cache
 └─────────────┘     └──────┬───────┘
                            │
                            ▼
                    ┌───────────────┐
                    │   Scoring     │──── Model's own attention
                    │   Q @ K       │     ranks memory relevance
                    └──────┬────────┘
                           │
                           ▼
                    ┌───────────────┐
                    │  Monitoring   │──── Hidden-state probes
                    │  Live Swap    │     hot-swap during decode
                    └──────┬────────┘
                           │
                           ▼
                    ┌───────────────┐
                    │   Capture     │──── New states saved
                    │   Quantize    │     to persistent storage
                    └───────────────┘

For the full architecture breakdown, see ARCHITECTURE.md.

Key Technical Contributions

1. Phantom Token Injection The inference engine allocates KV cache positions for "phantom tokens" — positions that receive stored K/V values without any text being processed. The model's attention operates over both injected and real tokens seamlessly.

2. Attention-Based Neural Scoring During prefill, the model's own Q@K attention patterns score each injected memory for relevance. Low-relevance memories have their value vectors zeroed in the cache (V-suppression), preventing them from degrading output quality.

3. Real-Time Memory Hot-Swapping During token generation, the system monitors the model's hidden states and can swap memory contents in reserved "register slots" mid-generation — no restart needed. If the model's response drifts to a topic not covered by the initial memory selection, relevant memories are loaded and injected in real-time.

4. Hybrid Architecture Support NLS handles both standard attention layers (K/V tensors) and recurrent layers (DeltaNet/Mamba state-space models). A two-pass capture method ensures clean attention states while preserving compounded recurrent narrative context.

5. Cross-Session Persistence Memories persist on disk across sessions, server restarts, and model reloads. The filesystem is the single source of truth, with boot-time reconciliation rebuilding indices from stored file manifests.

6. Multi-Signal Quality Filtering Memory quality is assessed using both language-aware signals and model-native signals derived from internal state geometry. The signals are combined for robustness — neither alone can hide a low-quality memory. This filtering operates at capture time (junk never enters the pool) and at retrieval time (low-quality memories never out-rank facts).

7. Agent-Mode Tool Memory Auto-detection of OpenAI-compatible function-calling requests. Tool result messages (from API calls, deployments, file reads) are captured with chain metadata. When an agent returns to a project after context compaction, retrieval surfaces the user's prior memory and chain-walk pulls back the operational details (IPs, configs, deploy commands) — solving the agent context-loss failure mode.

Results

Metric Value
Token savings at 10 turns ~70%
Token savings at 50 turns ~93%
Token savings at 19k phantom tokens (real agent) 99.3% (124 prompt vs 18,751 injected)
Messages sent per request 1 (current user message only)
Memory storage per turn ~1.6–2.8 MB (int8 quantized, zstd compressed, 40-layer hybrid model)
Injection latency (warm) <2 ms
Text-vs-KV parity (LongMemEval 18-Q) 8/18 = 8/18 on Qwen 3.5; 9/18 = 9/18 on Qwen 3.6 (best ever)
Real agentic-loop cross-session recall (OpenCode) 4/4 correct, including disambiguating answers
Behavioral equivalence Verified word-for-word at small scale; verified by parity at LongMemEval scale

Try It

Conversational demo

Punk Records Demo — A personal AI assistant powered by NLS.

Chat with it, build up a conversation, close the tab, come back. It remembers. Open the API Log drawer at the bottom to see proof: every request sends only the current message.

Agentic demo (validated April 27, 2026)

NLS has been validated end-to-end behind a real coding agent (OpenCode TUI driving a multi-phase scaffold task). After Phase 1 was complete, fully restarting the TUI and asking "what frontend port did we pick?" in a fresh chat — with zero chat history — returned the correct answer (3000) by injecting 18,751 tokens of stored context from a 124-token prompt. 99.3% prompt-token savings on the recall path, with disambiguation between close facts (frontend 3000 vs backend 3001) ruling out lexical-prior hallucination. See BENCHMARKS for full methodology.

Read More

  • ARCHITECTURE.md — Technical architecture with diagrams
  • JOURNEY.md — The story: from LoRA adapters to MoE routing to KV injection
  • RESEARCH_LOG.md — Curated log of 4 months of experimentation
  • benchmarks/BENCHMARKS.md — Token savings, text-vs-KV parity, retrieval quality, 67-Q and 18-Q sweep results
  • benchmarks/ECONOMICS.md — Unit economics, energy impact, GPU market implications, subscription model viability
  • diagrams/ — Architecture and economics diagrams (Mermaid source, render to PNG)

About

NLS was built by Umberto Canessa Cerchi over ~3 months of after-hours research (650+ research log entries). Two months of exploration (LoRA, MoE routing) led to the key insight; the final architecture went from proof-of-concept to production demo in 8 days, then through subsequent refinement leading to the first end-to-end agentic-loop validation on April 27, 2026.

It runs on a single NVIDIA Grace Blackwell desktop GPU.

The core plugin is proprietary. This repository contains the architecture documentation, research narrative, benchmarks, and a live demo.

Patent pending — U.S. Provisional Patent Application No. 64/050,345 filed April 27, 2026.


"The best way to predict the future is to invent it." — Alan Kay