Spaces:
Paused
Paused
rb125 commited on
Commit Β·
dc9dd70
1
Parent(s): 3f2f227
updated README
Browse files
README.md
CHANGED
|
@@ -67,20 +67,25 @@ Agent registers β initial audit (CDCT + DDFT + EECT)
|
|
| 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
|
|
|
|
|
|
|
| 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
|
|
|
|
| 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 |
+
- β
LLM agent with Azure OpenAI, Bedrock Converse, and Gemma support (14 models)
|
| 71 |
+
- β
CDCT/DDFT/EECT framework clients + audit orchestrator
|
| 72 |
+
- β
Autonomous agent v2 with EV/RAEV planning
|
| 73 |
+
- β
Live simulation runner β real LLM calls, jury verification, cost accounting
|
| 74 |
+
- β
Synthetic simulation runner (no API keys needed)
|
| 75 |
- β
33 tests passing
|
| 76 |
|
| 77 |
```bash
|
| 78 |
pip install -r requirements.txt
|
| 79 |
+
python3 -m pytest tests/ -q # run tests
|
| 80 |
+
python3 -m server.runner --steps 50 # synthetic simulation
|
| 81 |
+
python3 -m server.live_runner # live simulation (requires .env)
|
| 82 |
```
|
| 83 |
|
| 84 |
## Roadmap
|
| 85 |
|
|
|
|
|
|
|
|
|
|
| 86 |
- [ ] ENS agent identity (Sepolia subnames + text records + ENS-gated access)
|
| 87 |
- [ ] 0G Chain smart contracts (CGAERegistry + CGAEEscrow)
|
| 88 |
- [ ] 0G Storage for audit certificates (Merkle root hash verification)
|
| 89 |
- [ ] ETH wallet manager (per-agent keypairs, treasury disbursements)
|
| 90 |
+
- [ ] On-chain bridge (write certifications to CGAERegistry)
|
| 91 |
- [ ] Next.js dashboard
|