CroviaTrust commited on
Commit
f482149
·
verified ·
1 Parent(s): ffc4b30

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -6
README.md CHANGED
@@ -1,17 +1,88 @@
1
- # CROVIA CEP Capsules
2
 
3
- Each file in this dataset is a `crovia_cep_capsule.v1` evidence block.
 
 
4
 
5
- Current capsules:
6
 
7
- - `CEP-2511-K4I7X2` demo run for period 2025-11
 
 
 
 
 
8
 
9
- Verify it locally with:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  ```bash
12
- pip install crovia-cep # (dev: pip install -e . from /opt/crovia-cep)
 
 
13
  cep CEP-2511-K4I7X2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
 
 
15
  ---
16
  license: apache-2.0
17
  ---
 
1
+ # CROVIA CEP Capsules (`crovia_cep_capsule.v1`)
2
 
3
+ This dataset contains **CROVIA CEP Capsules**: compact, hash-addressable
4
+ evidence blocks produced by the **C-Line** (Crovia Core Line) for each
5
+ training/attribution period.
6
 
7
+ A CEP capsule links together:
8
 
9
+ - royalty receipts (`royalty_receipt.v1`)
10
+ - payouts (`payouts.v1`)
11
+ - hash-chain proofs
12
+ - C-Line configuration
13
+ - trust & concentration metrics
14
+ - AI Act Annex IV evidence pointers
15
 
16
+ Each capsule is **independent**, **offline-verifiable**, and uniquely identified
17
+ by a fingerprint such as:
18
+
19
+ CEP-YYYYMM-XXXXXX
20
+
21
+ yaml
22
+ Copia codice
23
+
24
+ ---
25
+
26
+ ## 📦 Current capsules
27
+
28
+ - **`CEP-2511-K4I7X2`** – demo run for period **2025-11**
29
+ (4 providers, 200 receipts, €1M budget, Gini ≈ 0.16, data health = A)
30
+
31
+ ---
32
+
33
+ ## 🔍 Verify locally with `cep`
34
+
35
+ You can verify any capsule with the Crovia CEP CLI:
36
 
37
  ```bash
38
+ # local dev mode (inside crovia-cep repo)
39
+ pip install -e .
40
+
41
  cep CEP-2511-K4I7X2
42
+ Expected output:
43
+ ```
44
+ ```bash
45
+ arduino
46
+ Copia codice
47
+ cep crovia CEP-2511-K4I7X2 VERIFIED
48
+ model crovia-llm-demo
49
+ period 2025-11
50
+ providers 4 receipts 200 gini 0.16
51
+ health A AI Act Annex IV ready
52
+ This confirms:
53
+ ```
54
+
55
+ the capsule file was successfully fetched
56
+
57
+ its structure matches crovia_cep_capsule.v1
58
+
59
+ all referenced hashes and metrics are consistent
60
+
61
+ 🧬 How to publish a new capsule (for future periods)
62
+ For any period YYYY-MM, generate:
63
+
64
+ Receipts NDJSON (royalty_receipt.v1)
65
+
66
+ Payout NDJSON (payouts.v1)
67
+
68
+ Hash-chain proof file
69
+
70
+ C-Line summary metrics
71
+
72
+ A capsule file in this dataset:
73
+
74
+ pgsql
75
+ Copia codice
76
+ CEP-YYYYMM-XXXXXX.json
77
+ After pushing it here, verification becomes universal:
78
+
79
+ ```bash
80
+ Copia codice
81
+ cep CEP-YYYYMM-XXXXXX
82
+ ```
83
 
84
+ 📄 License
85
+ Apache-2.0
86
  ---
87
  license: apache-2.0
88
  ---