Metadata-Version: 2.4
Name: sae-governor-sdk
Version: 0.1.0
Summary: Governor SDK for the Sovereign Autonomy Engine.
Author: Kevin Price
License: Proprietary
Project-URL: Homepage, https://example.com/sae-governor-sdk
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# SAE Governor SDK

Governor SDK for the Sovereign Autonomy Engine.

## Install

pip install sae-governor-sdk

## Usage

from sae.governor.interface import Governor

gov = Governor()
result = gov.regulate({"move": "forward", "speed": 1.0})
print(result)

## Notes

This SDK exposes the governor interface surface only.
Internal decision-governing logic remains private.
