glacis 0.1.1__tar.gz → 0.1.3__tar.gz
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.
- {glacis-0.1.1 → glacis-0.1.3}/PKG-INFO +3 -3
- {glacis-0.1.1 → glacis-0.1.3}/README.md +2 -2
- {glacis-0.1.1 → glacis-0.1.3}/glacis/wasm_runtime.py +11 -0
- {glacis-0.1.1 → glacis-0.1.3}/pyproject.toml +1 -1
- {glacis-0.1.1 → glacis-0.1.3}/.gitignore +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/LICENSE +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/__init__.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/__main__.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/client.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/crypto.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/integrations/__init__.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/integrations/anthropic.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/integrations/openai.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/models.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/storage.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/streaming.py +0 -0
- {glacis-0.1.1 → glacis-0.1.3}/glacis/wasm/s3p_core_wasi.wasm +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: glacis
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: GLACIS SDK for Python - AI Compliance Attestation
|
|
5
5
|
Project-URL: Homepage, https://glacis.io
|
|
6
6
|
Project-URL: Documentation, https://docs.glacis.io/sdk/python
|
|
@@ -309,10 +309,10 @@ print(result.proof_valid) # Merkle proof check (online only)
|
|
|
309
309
|
| Tier | Price | Includes |
|
|
310
310
|
|------|-------|----------|
|
|
311
311
|
| Offline | Free | Local signing, "UNVERIFIED" status |
|
|
312
|
-
|
|
|
312
|
+
| Witnessed | Free, then usage-based | Independent witness, Merkle proofs, verification URLs |
|
|
313
313
|
| Enterprise | Custom | SLA, compliance exports, dedicated support |
|
|
314
314
|
|
|
315
|
-
Get started at [glacis.io](https://glacis.io)
|
|
315
|
+
Get started at [docs.glacis.io](https://docs.glacis.io/sdk/python/quickstart)
|
|
316
316
|
|
|
317
317
|
## License
|
|
318
318
|
|
|
@@ -260,10 +260,10 @@ print(result.proof_valid) # Merkle proof check (online only)
|
|
|
260
260
|
| Tier | Price | Includes |
|
|
261
261
|
|------|-------|----------|
|
|
262
262
|
| Offline | Free | Local signing, "UNVERIFIED" status |
|
|
263
|
-
|
|
|
263
|
+
| Witnessed | Free, then usage-based | Independent witness, Merkle proofs, verification URLs |
|
|
264
264
|
| Enterprise | Custom | SLA, compliance exports, dedicated support |
|
|
265
265
|
|
|
266
|
-
Get started at [glacis.io](https://glacis.io)
|
|
266
|
+
Get started at [docs.glacis.io](https://docs.glacis.io/sdk/python/quickstart)
|
|
267
267
|
|
|
268
268
|
## License
|
|
269
269
|
|
|
@@ -520,3 +520,14 @@ def sign_offline_attestation(
|
|
|
520
520
|
|
|
521
521
|
result: dict[str, Any] = json.loads(signed_json)
|
|
522
522
|
return result
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
def get_runtime() -> str:
|
|
526
|
+
"""
|
|
527
|
+
Get the current runtime type name.
|
|
528
|
+
|
|
529
|
+
Returns:
|
|
530
|
+
String identifying the runtime: "WasmRuntime" or "PyNaClRuntime"
|
|
531
|
+
"""
|
|
532
|
+
runtime = WasmRuntime.get_instance()
|
|
533
|
+
return type(runtime).__name__
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|