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.

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