Documentation

Build with LogionOS.

Everything you need to integrate AI compliance into your application.

API Reference

Interactive Swagger documentation for all 15+ endpoints. Try requests directly in your browser.

Python SDK

pip install logionos. Full-featured client with type hints, dataclass models, and async support.

JavaScript / TypeScript SDK

npm install logionos. Native fetch, full TypeScript types, helper functions, and tree-shakeable ESM.

Live Demo

Interactive Streamlit app. Test compliance checks with real regulations. No setup required.

Enterprise Dashboard

Compliance visibility, live analytics, audit trails, and policy management in one interface.

Chrome Extension

Real-time compliance monitoring for ChatGPT, Claude, and Gemini. Risk badges on every message.

OpenAI-Compatible Proxy

Transparent compliance proxy for any OpenAI-compatible LLM. Works with Azure OpenAI, Ollama, vLLM. Zero code changes.

On-Premise Deployment

Docker Compose stack for private networks. Zero external calls. Data residency, security hardening, and backup guide.

GitHub Organization

All source code. API, SDKs, and website. Open source under MIT license.

Support

Questions about integration? Need help with enterprise setup? Get in touch.

Get running in 60 seconds.

terminal
# Install the SDK
$ pip install logionos

# Or for JavaScript/TypeScript
$ npm install logionos

# Run a compliance check
from logionos import LogionOS

client = LogionOS(
    api_key="your-key",
    base_url="https://logionos-api.onrender.com"
)

result = client.check("Process customer payment data")
print(result.action)       # PASS / FLAG / BLOCK
print(result.risk_score)   # 0.0 - 1.0
print(result.matched_rules) # which regulations triggered