Metadata-Version: 2.4
Name: kontinuum-core
Version: 0.2.0
Summary: Neuro-inspired learning engine for anomaly detection
Author-email: Chance-Konstruktion <introareback@gmail.com>
License: AGPL-3.0
Project-URL: Homepage, https://github.com/Chance-Konstruktion/kontinuum-core
Project-URL: Issues, https://github.com/Chance-Konstruktion/kontinuum-core/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7; extra == "dev"
Dynamic: license-file

# KONTINUUM Core

Pure Python learning engine extracted from [KONTINUUM](https://github.com/Chance-Konstruktion/ha-kontinuum). No Home Assistant dependency — usable from any Python project.

> **Part of the 3-repo family:**
> **kontinuum-core** (this repo, HA-free Python package on PyPI) ·
> [`ha-kontinuum`](https://github.com/Chance-Konstruktion/ha-kontinuum) (full HA Pro integration with UI) ·
> [`ha-kontinuum-lite`](https://github.com/Chance-Konstruktion/ha-kontinuum-lite) (slim HA integration, no UI)

## Installation

```bash
pip install kontinuum-core
```

## Usage

```python
from kontinuum_core import KontinuumEngine

engine = KontinuumEngine()
snapshot = engine.observe({"token": "bedroom.light.on", "room": "bedroom"})
print(snapshot.surprise)
```

## License

AGPL-3.0 – see LICENSE file.
