rb125 commited on
Commit
dc9dd70
Β·
1 Parent(s): 3f2f227

updated README

Browse files
Files changed (1) hide show
  1. README.md +9 -4
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 # 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
 
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