Metadata-Version: 2.4
Name: pyxon-governance
Version: 0.1.0
Summary: Country-aware AI governance scoring for LLMs and RAG (Ollama probes + policy evidence)
Author: Pyxon AI
License: MIT
Project-URL: Homepage, https://github.com/pyxon-ai/pyxon-governance
Project-URL: Documentation, https://github.com/pyxon-ai/pyxon-governance#readme
Keywords: ai-governance,ollama,llm,compliance,oecd,saudi,uae,eu-ai-act
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: PyYAML>=6.0
Requires-Dist: requests>=2.28
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"

# pyxon-governance (Python)

Library + CLI for country-aware AI governance scoring (Ollama probes, no Flask).

## Install

```bash
pip install pyxon-governance
# local editable:
pip install -e .
```

## Usage

```python
from pyxon_governance import assess, compare

r = assess("llama3.2:latest", country="SAU", system_prompt=True)
print(r.to_dict())

print(compare(["llama3.2:latest", "qwen2.5-coder:7b"], country="ARE"))
```

```bash
pyxon-gov assess llama3.2:latest --country SAU --governance-prompt
python -m pyxon_governance assess llama3.2:latest --country EU --no-probes
```

## Publish

```bash
python -m build && twine upload dist/*
```

See the [parent README](../../README.md) for full publish and npm instructions.
