Standalone Desktop (Fully Offline)
Zero network. Zero cloud. Everything on your machine.
The simplest and most private deployment option. Piixie Desktop ships with a bundled local LLM that handles all PII detection and anonymization directly on the user's machine. No internet connection is required at any point in the pipeline -- not for installation, not for model downloads after initial setup, and not for processing documents.
This topology is ideal for air-gapped environments, classified document handling, individual practitioners working with sensitive client data, and any situation where data must never leave the device. The bundled LLM is optimized for PII detection and runs efficiently on consumer hardware, including laptops without dedicated GPUs.
How it works
- Load document -- Drag a PDF, DOCX, spreadsheet, image, or any supported file into Piixie Desktop.
- Local LLM analysis -- The bundled model scans extracted text for names, addresses, phone numbers, emails, account numbers, medical record numbers, and dozens of other PII categories.
- Choose anonymization mode -- Redact (black out), replace (placeholder tokens), or synthesize (realistic fake data via local Faker engine).
- Export safe copy -- The anonymized document is saved locally. The original is never modified.
Best for
- Government and defense agencies operating on air-gapped networks
- Solo practitioners (lawyers, doctors, accountants) handling client files
- Compliance officers who need to guarantee zero external data transmission
- Field workers in locations with no reliable internet access
sequenceDiagram
actor User
participant PD as Piixie Desktop
participant LLM as Local LLM (Bundled)
participant Out as Anonymized Output
User->>PD: Load sensitive document
PD->>PD: Extract text and structure
PD->>LLM: Analyze for PII entities
LLM-->>PD: PII locations and categories
PD->>PD: Apply anonymization mode (Redact / Replace / Synthesize)
PD->>Out: Generate safe copy
Out-->>User: Download anonymized document
Note over User,Out: No network traffic at any point