Skip to content

Commit 88580b6

Browse files
committed
feat: two-tier integrity, hardcoded jurisdiction, provider parity, model state gossip
- Integrity system split into core (7 protected files) and extensible (everything else). Community can modify providers, tools, connectors without breaking on-chain verification. - Hardcode Autonet jurisdiction (Governor, RPC, chain ID) so fresh installs discover the DAO without user configuration. - All non-bridge providers gain context compaction, interrupt support, and tool use events matching bridge capabilities. - Add gpt-4.1 and gemini-3-pro as tier 4 orchestrator-capable models. - Surface VL-JEPA model state (version, hash, epoch, loss, architecture) via P2P NodeCapability gossip. - Wire P2P host and governance bridge from AutonetBridge to service so training cycles can update gossip and read on-chain state. - Fix proposer lazy import bugs (future annotations, keccak recursion). - Bump to v0.1.4.
1 parent 12e1f4b commit 88580b6

84 files changed

Lines changed: 1058 additions & 338 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,12 @@ jobs:
9898
irm https://github.com/autonet-code/node/releases/latest/download/install.ps1 | iex
9999
```
100100
101-
**Optional extras:**
101+
**Install tiers:**
102102
```bash
103-
pip install autonet-computer[voice] # Voice / TTS
104-
pip install autonet-computer[node] # Full training node (PyTorch)
105-
pip install autonet-computer[p2p] # P2P networking
103+
pip install autonet-computer # Agent framework (local)
104+
pip install autonet-computer[voice] # + Voice / TTS
105+
pip install autonet-computer[network] # + Blockchain, P2P, training
106+
pip install autonet-computer[network,voice] # Everything
106107
```
107108
108109
## Package Integrity Hash

README.md

Lines changed: 58 additions & 5 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "..\\..\\..\\..\\build-info\\d83c92fd04b7afb548590acbad63a4a4.json"
3+
"buildInfo": "..\\..\\..\\..\\build-info\\713a550cb2fb9e77d8044a308356834d.json"
44
}

0 commit comments

Comments
 (0)