Governance-first AI gateway for teams that aren't ready for enterprise tooling A developer has released Synapse AI Gateway, an open-source governance-first AI gateway designed for regulated teams that need audit trails and policy enforcement without waiting for enterprise procurement. The gateway enforces governance at the infrastructure level by binding API keys to system prompts, model allowlists, team identities, and rate limits, and includes DLP, hybrid routing, and immutable audit logging. It can be deployed in under five minutes using Docker Compose. If you work in a regulated organisation, you have probably seen this play out: leadership wants AI in production, security wants an audit trail, and the team in the middle has two options. Either ship something fast with no governance — shadow tools, no DLP, no audit log — or wait twelve to eighteen months for an enterprise platform to get procured and approved. Neither is good. Most of the tools available to bridge that gap fall into one of three camps: I have been working on a small Apache-2.0 project called Synapse AI Gateway that aims at the space between those options. docker compose up brings the whole stack — postgres, backend, admin console — and you have it running in under five minutes. Governance controls run on every inference request before they ever reach a model. GitHub: synapse-ai-gateway/synapse-ai-gateway https://github.com/synapse-ai-gateway/synapse-ai-gateway The design hinges on one decision: every API key is bound at creation to a system prompt, a model allowlist, a team identity, and rate limits. The team that gets a key for an approved HR-assistant use case cannot quietly repurpose that key for something else. They need a new key, which means a new approval. That is the difference between governance-as-policy a wiki page nobody reads and governance-as-infrastructure the gateway refuses the request . Policies do not enforce themselves. Controls in the request path do. client app │ ▼ ┌─────────────────────────────────────────┐ │ 1. auth + use-case scoping │ → inject system prompt, check model allowlist ├─────────────────────────────────────────┤ │ 2. prompt DLP │ → block / redact / alert ├─────────────────────────────────────────┤ │ 3. hybrid routing on-prem vs cloud │ → classification decides backend ├─────────────────────────────────────────┤ │ 4. immutable audit log │ → PostgreSQL append-only, SHA-256 hashes ├─────────────────────────────────────────┤ │ 5. response DLP + anomaly detection │ → webhook alerts └─────────────────────────────────────────┘ │ ▼ LLM backend Ollama, vLLM, OpenAI, Anthropic, Azure, Google Layer 1 validates the key, injects the bound system prompt, checks the model allowlist. Invalid key or unapproved model returns 403 immediately. Layer 2 is a built-in regex DLP engine. Three outcomes per category: block HTTP 400 , redact sanitise and forward , alert log and forward . Patterns live in a config file you can hot-reload. No external service required — this matters if your data sovereignty rules say PII cannot leave your perimeter even for a scan. Layer 3 routes by data classification. A key tagged sensitive is allowed only to on-premises backends Ollama, vLLM . A key tagged non sensitive can go to a cloud provider for higher capability. Consuming applications do not change — they always speak the OpenAI API. Layer 4 writes one row per request to PostgreSQL: timestamp, team, model, token count, latency, DLP outcome, HTTP status. Prompt and response are stored as SHA-256 hashes, never plaintext. That preserves forensic hash-matching while protecting staff privacy. Layer 5 scans responses on the way back out and surfaces anomalies usage spikes, repeated DLP blocks, off-hours bursts via webhook. git clone https://github.com/synapse-ai-gateway/synapse-ai-gateway cd synapse-ai-gateway docker compose up -d Every setting has a working default, so that genuinely is the whole quick start for a local trial. Before exposing the stack beyond localhost, copy .env.example to .env and set real values for JWT SECRET , ADMIN PASSWORD , and POSTGRES PASSWORD . Admin console at http://localhost:5173 . Log in, create a team in the UI, copy the API key shown once , and you're ready: curl -X POST http://localhost:8080/v1/chat/completions \ -H "Authorization: Bearer