DE:LIGHT Overview DENSE DEMIX Services Play API HATP Attestation Compliance Pricing
Decent Edge DE:LIGHT

DE:LIGHT The lightweight application server.

DE:LIGHT is the Decent Edge application server for small, message-driven workloads. Programs are written in Borz — a separate language project — and execute in one of two modes: DENSE (KVM-direct nanoservices, ~200 µs warm dispatch on the reference voting workload) or DEMIX (Firecracker microVM clusters). Every invocation produces a signed receipt. Run it on your own hardware, or use one of our managed services.

200µs
DENSE warm dispatch p50 · voting workload
~2KB
Per actor binary
Self-host
or fully managed
Ed25519
Per-invocation receipt
The source language

DE:LIGHT runs Borz.

Borz is the actor-based language whose programs DE:LIGHT executes. It is a separate project under its own brand — borz.ai — and compiles to several targets including DENSE and DEMIX. Its distributed state framework is part of the same project. Decent Edge operates the server, not the language.

classifier.borz DENSE
actor Classifier:
    @persistent var label: str = "unknown"

    on msg Classify(text: str):
        infer:
            system: "Classify in one word."
            user:   text
            target: label
        response(label=label)

// borz build --target dense
// → 1,847 B ELF; boots in microseconds
//   returns HATP receipt per call
HATP · Hardware Attestation Trust Protocol

Every invocation gets a signed receipt.

Every DE:LIGHT dispatch and every LLM call routed through the EU AI Gateway produces an Ed25519-signed receipt with payload hashes, host identity, and timestamps. EU AI Act Article 12 and GDPR Article 22 become a side-effect of normal operation. The full chain is documented on the attestation page.

See the full attestation chain →
hatp-receipt.json verified ✓
{
  "v": "1",
  "type": "dispatch.complete",
  "receipt_id": "rcpt_8f3a2c1b…",
  "dispatch": { "actor": "Classifier", "msg": "Classify" },
  "model":    { "name": "claude-opus-4-7" },
  "ts":       "2026-05-23T11:42:09.187Z",
  "sig":      "ed25519:9bvk3rqx…"
}