Metadata-Version: 2.4
Name: regulayer
Version: 2.0.0
Summary: Record provable AI decisions with tamper-detectable audit trails
Author-email: Regulayer <support@regulayer.tech>
License: MIT
Project-URL: Homepage, https://regulayer.tech
Project-URL: Documentation, https://docs.regulayer.tech/python
Project-URL: Repository, https://github.com/regulayer/regulayer-python
Project-URL: Bug Tracker, https://github.com/regulayer/regulayer-python/issues
Keywords: ai,governance,audit,compliance,decisions,provable
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Logging
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: httpx<1.0.0,>=0.24.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-httpx>=0.21; extra == "dev"

# Regulayer SDK

Record provable AI decisions with tamper-detectable audit trails.

## Installation

```bash
pip install regulayer
```

## Quick Start

### 1. Configure the SDK
```python
from regulayer import configure, trace

configure(api_key="rl_live_your_api_key")
```

### 2. Record a Decision
```python
with trace(
    system="loan_approval",
    risk_level="high",
    model_name="credit-model-v2"
) as t:
    t.set_input({"income": 50000, "credit_score": 720})
    t.set_output({"approved": True, "limit": 10000})
```

## Documentation

For full documentation, visit [docs.regulayer.tech](https://docs.regulayer.tech/python).
