Deterministic AI Gateway
Project description
AI Gateway
This repository provides a controlled execution boundary for LLM calls.
It separates request, decision, and execution into an explicit, inspectable flow and records every interaction as an append-only event stream.
The goal is not autonomy or orchestration, but traceability, control, and replayability.
This is not:
- an agent framework
- a RAG system
- a UI product
It is infrastructure for running LLM calls in a way that remains observable and explainable over time.
Repository Landscape
The gateway is part of a small toolchain:
deterministic-ai-gateway (this repository)
Authoritative execution boundary and event log.
- Accepts explicit intents.
- Applies policy.
- Executes provider calls.
- Emits canonical events (
INTENT,DECISION,EXECUTION). - Persists an append-only event trail.
- Exposes read-only observation surfaces (
/snapshot,/tail).
dbl-operator
Observer and intervention client. Used for rendering timelines, audits, and decision views. Does not evaluate policy or store authoritative state.
dbl-chat-cli
Minimal interactive CLI client for smoke testing and quick interaction via terminal.
dbl-chat-client
Pure event-projection UI. Real-time visualization of the gateway event stream and identity anchor management.
Interaction Model
Every interaction follows the same sequence:
- INTENT – explicit request with identity anchors (
thread_id,turn_id). - DECISION – policy outcome (ALLOW/DENY).
- EXECUTION – provider call and result.
- OBSERVATION – read-only access via snapshot or tail.
No step is implicit; every event is linked via a stable correlation_id.
Design Principles
- Explicit boundaries: Strict separation between core logic, policy, and execution.
- Append-only records: Immutable event trail for audit and replay.
- No hidden state: No heuristics or internal memory beyond the event stream.
- Observer-safe: Clients observe and project state; the gateway makes normative decisions.
Installation
Local Install
Create a virtual environment and install the gateway:
pip install .
Docker
Run the gateway via Docker:
docker build -t dbl-gateway .
docker run -p 8010:8010 \
-e OPENAI_API_KEY="sk-..." \
-e DBL_GATEWAY_POLICY_MODULE="dbl_policy.allow_all" \
dbl-gateway
Running the Gateway
Required Environment Variables
| Variable | Description |
|---|---|
OPENAI_API_KEY |
Provider API key. |
DBL_GATEWAY_POLICY_MODULE |
Policy module (e.g., dbl_policy.allow_all). |
DBL_GATEWAY_POLICY_OBJECT |
Policy object inside the module (default: policy). |
Start Command
dbl-gateway serve --host 127.0.0.1 --port 8010
Observation Surfaces
Snapshot (/snapshot)
Returns a point-in-time state of the event log. Suitable for audits and offline inspection.
Tail (/tail)
A live SSE stream of events.
since: Start streaming from a specific event index.backlog: Number of recent events to emit on connect (default: 20).
Integration Examples
Using the Operator
$env:DBL_GATEWAY_BASE_URL = "http://127.0.0.1:8010"
dbl-operator thread-view --thread-id t-1
Using the Chat CLI
dbl-chat-cli --base-url http://127.0.0.1:8010 --principal-id user-1
Using the Chat Client
# In the dbl-chat-client repository:
npm install && npm run dev
Status
Early but functional. Core execution, policy gating, and auditing are operational. Current focus: surface stabilization and contract clarity.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file deterministic_ai_gateway-0.3.1.tar.gz.
File metadata
- Download URL: deterministic_ai_gateway-0.3.1.tar.gz
- Upload date:
- Size: 43.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7730cf28513279df998ee8ae2407d624c8edc5a2600ab9823192bf49bdf19a6
|
|
| MD5 |
7d2d2db0c20e0fa4d99ca8c7dff67494
|
|
| BLAKE2b-256 |
fc908042e78614573d51f28b96113da74b0d5a9ce9f59cdb93416f22de4e29b5
|
File details
Details for the file deterministic_ai_gateway-0.3.1-py3-none-any.whl.
File metadata
- Download URL: deterministic_ai_gateway-0.3.1-py3-none-any.whl
- Upload date:
- Size: 43.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2188cd166ffcbd880f648577a0c4d21a4344560a43eaf80bf33e244c23283ea
|
|
| MD5 |
f48496cbd447f6727a3f32075ad96c2a
|
|
| BLAKE2b-256 |
28e33fbfcd6064101be56a4741adc6f2cb69684ae32e21474640fd79b7fab691
|