Everything you need to integrate AI compliance into your application.
Interactive Swagger documentation for all 15+ endpoints. Try requests directly in your browser.
pip install logionos. Full-featured client with type hints, dataclass models, and async support.
npm install logionos. Native fetch, full TypeScript types, helper functions, and tree-shakeable ESM.
Interactive Streamlit app. Test compliance checks with real regulations. No setup required.
All source code. API, SDKs, and website. Open source under MIT license.
Questions about integration? Need help with enterprise setup? Get in touch.
# 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