The open framework for
governed AI development
Install once, get governed AI. The open framework for building AI applications that are governed by design. SDK, OpenAI-compatible gateway, proxy, plugins, CLI, and dashboard, with governance on streamed responses. Apache 2.0.
Every interaction governed, bidirectionally
Admina works as both an SDK (in-process) and a transparent proxy (network). Every AI interaction is automatically governed.
Drop-in gateway, governed streaming
Point an OpenAI-compatible client at the proxy, or stream deltas from the SDK. Both surfaces run the same governance pipeline.
Drop-in for OpenAI-compatible clients
Change base_url and the API key. Admina governs the request, then
forwards it to its configured upstream โ by default a local Ollama.
import os from openai import OpenAI client = OpenAI( base_url="http://localhost:8080/v1", # gateway (:3000 in local mode) api_key=os.environ["ADMINA_API_KEY"], ) resp = client.chat.completions.create( model="llama3.1:8b", messages=[{"role": "user", "content": "Summarise this clause"}], )
Governance on streamed responses
Deltas are PII-redacted across chunk boundaries; the outcome lands in
last_stream_result.
import asyncio from admina.plugins.builtin.adapters.ollama import OllamaAdapter from admina.sdk import GovernedModel model = GovernedModel(model_name="llama3.1:8b", adapter=OllamaAdapter()) async def main(): async for delta in model.stream("Summarise this clause"): print(delta, end="", flush=True) print(model.last_stream_result["action"]) # ALLOW | REDACT | BLOCK asyncio.run(main())
Four domains of protection
Applied bidirectionally to every request and response. Configurable. Extensible. Built for production.
Data Sovereignty
PII redaction, data residency enforcement, data classification. Rust-accelerated 0.62ยตs per scan.
Documentation โAI Infrastructure
LLM engine (Ollama/vLLM), RAG pipeline (ChromaDB), Web UI, hot model switching. Opt-in.
Documentation โAgent Security
Anti-injection firewall (33 patterns across 9 categories, 7.79ยตs โ 2.08ยตs on the Rust engine), loop breaker (TF-IDF cosine similarity, 2.38ยตs). Bidirectional.
Documentation โCompliance
EU AI Act classification (Art. 6-15), forensic black box (SHA-256 hash chain, S3-compatible), OpenTelemetry native.
Documentation โGovernance in 5 minutes
Install Admina, scaffold a project, and start governing your AI agents with a single command. No configuration needed to get started.
admina init # Install from PyPI pip install admina-framework admina init my-project cd my-project admina dev # local mode, no Docker required # API + dashboard โ http://localhost:3000 # Verify curl http://localhost:3000/health # {"status":"healthy","service":"admina-proxy","version":"0.11.1", # "engine":{"active":"python","rust_available":false, ...}, ...}
OISG adequate on the full stack
Admina is built around OISG โ Open,
Intelligent, Secure, Governed.
The adequacy score is computed from the live runtime state โ not a checklist โ
and the full Docker Compose stack reaches the adequate band out of the
box. A bare pip install scores 75, in the Good coverage band.
/api/dashboard/oisg Admina is Apache 2.0 and always will be. No paid tiers, no feature gating on the core.
Apache 2.0 License โBuilt in the open, for the community
Star the repo, open an issue, contribute a domain. Every interaction counts. We respond to all issues as soon as possible.