How a request travels from the public internet to a model and back — and the four independent gates it must pass through on the way in, the line it will never cross, and the curated set of providers it can reach on the way out.
Aetherkeep serves two very different clients: people in a browser headed for Open WebUI, and Hephaestus coding agents calling the API. Both traverse the same Cloudflare Zero Trust fortress — they just present different credentials at each gate.
Cf-Authenticated-User-Email.
CF-Access-Client-Id + -Secret headers. One token per agent, revocable independently.
cloudflared · outbound-onlycloudflared daemon dials out to Cloudflare and carries encrypted traffic in over that outbound connection. The home router never forwards a public port.
A single mini PC, on your LAN, holds everything you create. Nothing in this panel is stored in anyone else's cloud — if you unplug it, the data goes with it.
openwebui database. Not in ChatGPT's servers, not in Anthropic's. You can docker exec in and read the rows yourself.pgvector on Apollo. Your document index lives on your hardware; retrieval happens locally before anything crosses the public internet.pg_dump file.Hermes fans model calls out to a hand-picked set of providers. Every one holds a documented privacy posture — and every one that doesn't is banned by policy, not by oversight.
text-embedding-3-small (the RAG embedding model) reach OpenAI's API directly. OpenAI does not train on API data. 30-day abuse-monitoring retention.
data_collection: "deny", and the provider order is pinned to an explicit allowlist of US-hosted operators with ZDR or equivalent terms: DeepInfra, Parasail, Together, Fireworks, Novita, Google Vertex. allow_fallbacks: false means if no allowlisted provider has capacity, the request fails rather than silently rerouting through a non-vetted provider.
docs/privacy-disclosure.md — full per-provider data flow and retention terms.docs/threat-model.md — STRIDE analysis and residual risk.hermes/provider_playbook.md — ZDR classifications and OpenRouter allowlist.docs/aetherkeep-network-runbook.md — VLAN, firewall, tunnel topology.