Spaces:
Paused
Paused
rb125 commited on
Commit Β·
1c858dd
1
Parent(s): 42b28ae
updated README
Browse files
README.md
CHANGED
|
@@ -56,6 +56,31 @@ Agent registers β initial audit (CDCT + DDFT + EECT)
|
|
| 56 |
| GLM-5 | AWS Bedrock | Zhipu |
|
| 57 |
| Nemotron-Super-3-120B | AWS Bedrock | NVIDIA |
|
| 58 |
|
| 59 |
-
##
|
| 60 |
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
| GLM-5 | AWS Bedrock | Zhipu |
|
| 57 |
| Nemotron-Super-3-120B | AWS Bedrock | NVIDIA |
|
| 58 |
|
| 59 |
+
## What's built so far
|
| 60 |
|
| 61 |
+
- β
Weakest-link gate function with configurable per-dimension thresholds
|
| 62 |
+
- β
Agent registry β register, certify, demote, deregister
|
| 63 |
+
- β
Contract system β create, assign, verify, settle with escrow + budget ceilings
|
| 64 |
+
- β
Tier-distributed task marketplace
|
| 65 |
+
- β
Economy coordinator β full lifecycle with temporal decay and stochastic re-auditing
|
| 66 |
+
- β
Economy step() β snapshots, ETH top-ups, insolvency detection
|
| 67 |
+
- β
5 agent strategy archetypes (conservative, aggressive, balanced, adaptive, cheater)
|
| 68 |
+
- β
16 machine-verifiable tasks with constraint checking
|
| 69 |
+
- β
Two-layer verifier (algorithmic + jury)
|
| 70 |
+
- β
33 tests passing
|
| 71 |
+
|
| 72 |
+
```bash
|
| 73 |
+
pip install -r requirements.txt
|
| 74 |
+
python3 -m pytest tests/ -q # run tests
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
## Roadmap
|
| 78 |
+
|
| 79 |
+
- [ ] LLM integration (Azure OpenAI, Bedrock, Gemma)
|
| 80 |
+
- [ ] Synthetic simulation runner
|
| 81 |
+
- [ ] Live simulation with real LLM calls + jury verification
|
| 82 |
+
- [ ] ENS agent identity (Sepolia subnames + text records + ENS-gated access)
|
| 83 |
+
- [ ] 0G Chain smart contracts (CGAERegistry + CGAEEscrow)
|
| 84 |
+
- [ ] 0G Storage for audit certificates (Merkle root hash verification)
|
| 85 |
+
- [ ] ETH wallet manager (per-agent keypairs, treasury disbursements)
|
| 86 |
+
- [ ] Next.js dashboard
|