swt3-ai 0.4.1 → 0.5.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/swt3_ai/types.rb +4 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91d5ca9a917067963c5ab81b0a3cf7a90b092122e278342d8615df04f577778e
|
|
4
|
+
data.tar.gz: 7f4cfc6fa1073306cb6467893aa79004bcddd04c26ef9cf3da4238eaded93404
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e627e85595287b88a118ca68fa7ff794728527fdeec26243632fd8fd17aada1c3e8e2a6f6372ae782bc3e7c7a3f004d195c8346da5f11201b7227da177c0d82
|
|
7
|
+
data.tar.gz: 551f2f3bc32b4bb5d80a620e44bc6d163296d148e9c029402ac21cfd4fcc4a12f7141563209a3db6feb6efeee664c840ad68e2ff66d5e62a83cfc37e7e697675
|
data/README.md
CHANGED
|
@@ -13,7 +13,7 @@ The EU AI Act takes effect **August 2, 2026**. When regulators ask "prove your A
|
|
|
13
13
|
|
|
14
14
|
This package reserves the `swt3-ai` namespace on RubyGems. The full Ruby SDK is under development.
|
|
15
15
|
|
|
16
|
-
Production SDKs are available today for Python and
|
|
16
|
+
Production SDKs are available today for Python, TypeScript, Rust, C#, and Ruby:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
# Python
|
data/lib/swt3_ai/types.rb
CHANGED
|
@@ -6,7 +6,8 @@ module Swt3Ai
|
|
|
6
6
|
:fingerprint_timestamp_ms, :ai_model_id, :ai_prompt_hash,
|
|
7
7
|
:ai_response_hash, :ai_latency_ms, :ai_input_tokens,
|
|
8
8
|
:ai_output_tokens, :agent_id, :cycle_id,
|
|
9
|
-
:payload_signature, :
|
|
9
|
+
:payload_signature, :signing_key_id, :signing_key_version,
|
|
10
|
+
:policy_version_hash,
|
|
10
11
|
keyword_init: true
|
|
11
12
|
)
|
|
12
13
|
|
|
@@ -21,7 +22,8 @@ module Swt3Ai
|
|
|
21
22
|
WitnessConfig = Struct.new(
|
|
22
23
|
:endpoint, :api_key, :tenant_id, :clearing_level,
|
|
23
24
|
:buffer_size, :flush_interval, :timeout, :max_retries,
|
|
24
|
-
:agent_id, :signing_key, :
|
|
25
|
+
:agent_id, :signing_key, :signing_key_id, :signing_key_version,
|
|
26
|
+
:cycle_id, :policy_version,
|
|
25
27
|
keyword_init: true
|
|
26
28
|
)
|
|
27
29
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swt3-ai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TeNova Labs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Mint, verify, and sign SWT3 witness anchors for AI compliance. Cross-language
|
|
14
14
|
parity with Python and TypeScript SDKs. Zero external dependencies.
|
|
@@ -29,6 +29,7 @@ licenses:
|
|
|
29
29
|
metadata:
|
|
30
30
|
source_code_uri: https://github.com/tenova-labs/swt3-ai
|
|
31
31
|
homepage_uri: https://tenova.io
|
|
32
|
+
keywords: ai,compliance,witness,swt3,eu-ai-act,nist-ai-rmf,ai-governance,ai-audit,ai-safety,agentic-ai,guardrails,model-governance,cryptographic-attestation
|
|
32
33
|
post_install_message:
|
|
33
34
|
rdoc_options: []
|
|
34
35
|
require_paths:
|