aiir-python 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aiir_python/__init__.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""
|
|
2
|
+
aiir-python — this package has been renamed to `aiir`.
|
|
3
|
+
|
|
4
|
+
Install the real package:
|
|
5
|
+
pip install aiir
|
|
6
|
+
|
|
7
|
+
Usage:
|
|
8
|
+
import aiir
|
|
9
|
+
# or: from aiir import ReceiptEmitter, verify_receipt, verify_chain
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
import warnings as _w
|
|
13
|
+
|
|
14
|
+
_w.warn(
|
|
15
|
+
"aiir-python has been renamed to 'aiir'. "
|
|
16
|
+
"Please run: pip install aiir && pip uninstall aiir-python",
|
|
17
|
+
DeprecationWarning,
|
|
18
|
+
stacklevel=2,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
try:
|
|
22
|
+
from aiir import * # noqa: F401, F403
|
|
23
|
+
from aiir import __version__
|
|
24
|
+
except ImportError:
|
|
25
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aiir-python
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AIIR Python → This package is now `aiir`. Install: pip install aiir
|
|
5
|
+
Project-URL: Homepage, https://github.com/invariant-systems-ai/receipt-action
|
|
6
|
+
Author-email: "Invariant Systems, Inc." <hello@invariantsystems.io>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Keywords: ai,attestation,audit,compliance,inference,integrity,llm,receipts
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Security :: Cryptography
|
|
14
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Requires-Dist: aiir
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# aiir-python
|
|
20
|
+
|
|
21
|
+
> **This package has been consolidated into [`aiir`](https://pypi.org/project/aiir/).**
|
|
22
|
+
|
|
23
|
+
## Install the real package
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install aiir
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## What is AIIR?
|
|
30
|
+
|
|
31
|
+
**AI Integrity Receipts** — lightweight cryptographic commitment records
|
|
32
|
+
generated during AI inference that bind model identity, sampling configuration,
|
|
33
|
+
and output tokens into a tamper-evident hash chain.
|
|
34
|
+
|
|
35
|
+
- Zero external dependencies (Python stdlib only)
|
|
36
|
+
- Receipt generation in < 100 µs
|
|
37
|
+
- SHA-256 hash chains with O(1) amortized cost
|
|
38
|
+
- Works with any model format (GGUF, ONNX, cloud APIs)
|
|
39
|
+
- MCP server for Claude / Copilot / ChatGPT integration
|
|
40
|
+
|
|
41
|
+
## Links
|
|
42
|
+
|
|
43
|
+
- **PyPI**: [aiir](https://pypi.org/project/aiir/)
|
|
44
|
+
- **GitHub**: [invariant-systems-ai/receipt-action](https://github.com/invariant-systems-ai/receipt-action)
|
|
45
|
+
- **Paper**: [Attestable AI: Cryptographic Receipt-Binding for Local Generative Model Inference](https://arxiv.org/abs/XXXX.XXXXX)
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
*This package (`aiir-python`) exists to redirect users to the canonical `aiir` package.
|
|
50
|
+
Installing it will automatically install `aiir` as a dependency.*
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
aiir_python/__init__.py,sha256=Maxhy94PVb0WnLXcfWJxsJsnZMM0HHo9kUsKSTFoAPA,526
|
|
2
|
+
aiir_python-0.0.1.dist-info/METADATA,sha256=qLMgT3yj4VB8K3sHqg_V_LA1_LRR2dDZr1pWv-_G0Z8,1873
|
|
3
|
+
aiir_python-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
4
|
+
aiir_python-0.0.1.dist-info/RECORD,,
|