Privacy by Architecture.

We don't ask for your trust. We built a system where data surveillance is technically impossible.

The Lifecycle of a Secret

From download to destruction, here is how your data flows (and doesn't flow).

1

One-Time Setup

Download the ~22GB Gemini Nano model. It lives permanently on your device, managed by Chrome.

2

Local Processing

Chat with AI entirely offline. Your prompts go from UI → RAM → GPU. No network calls.

3

Burn Ritual

Click "Burn" to cryptographically shred the session state. RAM is cleared, data vanishes.

Powered by Gemini Nano

Your Browser Has a Brain.

The Chrome Prompt API is a groundbreaking web standard that gives your browser built-in AI capabilities. It allows websites to access a high-performance AI model that runs directly on your device.

Instead of sending your text to a supercomputer in a data center (like ChatGPT or Claude), Chrome downloads a compact, efficient AI model called Gemini Nano directly to your computer.

Once downloaded, this "brain" lives inside your Chrome browser. It thinks, writes, and answers questions using your own computer's power—completely offline and privately.

AI

How does the Air Gap protect my data?

The core innovation is the Chrome Prompt API. It allows us to run Google's Gemini Nano model directly inside your browser.

  • Zero Network Calls

    Your prompts never leave your device. No API keys, no cloud processing.

  • RAM-Only Storage

    Conversation history lives in volatile memory. Closing the tab wipes it instantly.

  • Zero Backend

    We have no database to breach. We couldn't see your chats even if we wanted to.

Your Device (Safe Zone)
Chrome BrowserLocal Environment
App Logic (React)
Session State (RAM)
Gemini Nano Model
No Network Access
The Internet (Blocked)
Cloud Servers
Databases
Your data never reaches here.

Technical Deep Dive

Static Export Architecture

The application is a static site built with Next.js and deployed to Cloudflare Pages. This means there is no API server, no database, and no logging infrastructure. The code you see on GitHub is exactly what is served to your browser.

RAM-Only State Management

We strictly forbid any form of persistent storage. Conversation history exists only in React component state (RAM).

// ❌ Forbidden
localStorage.setItem(...)
// ✅ Allowed (RAM only)
const [messages, setMessages] = useState([])

The Burn Ritual

The "Burn" feature isn't just a UI animation—it's a cryptographic shredding of the conversation state. When triggered, we explicitly nullify all state references, allowing the JavaScript engine's garbage collector to reclaim the memory immediately.

Open Source Transparency

Trust requires transparency. The entire codebase is open source under the MIT License. You can audit every line of code yourself.

View Source Code

Frequently Asked Questions

What is Chrome Built-in AI?

It is a revolutionary technology that lets your browser run powerful AI models (like Gemini Nano) directly on your computer. This means you get smart features without needing to send your private data to a cloud server.

What are the benefits of local processing?

Privacy: Your data never leaves your device.

Reliability: Works offline without server downtime.

Cost: Free service, no expensive GPU servers.

Speed: Instant responses, no network latency.

Is this really free?

Yes. Because the AI runs on your hardware (client-side), we don't have to pay for massive server farms. You provide the compute power, so we don't have to charge you a subscription.

Can Google or anyone else see my chats?

No. Since the AI runs entirely on your computer, your messages never travel over the internet. It is technically impossible for us, Google, or anyone else to intercept or read your conversation.

Where is my conversation history saved?

Nowhere permanent. Your chat history lives only in your computer's temporary RAM. As soon as you close the tab or refresh the page, it is instantly and permanently erased.

Why is this safer than ChatGPT or Claude?

Traditional AI chatbots send your messages to central servers where they can be stored, analyzed, or leaked. ThisChatNeverExisted keeps everything on your own machine, eliminating the risk of server-side data breaches.

Ready to chat off the record ?