| Crates.io | vex-adversarial |
| lib.rs | vex-adversarial |
| version | 0.1.4 |
| created_at | 2025-12-14 21:53:41.489029+00 |
| updated_at | 2025-12-20 03:47:15.658848+00 |
| description | Adversarial (Red/Blue) agent pairing for VEX |
| homepage | |
| repository | https://github.com/provnai/vex |
| max_upload_size | |
| id | 1985159 |
| size | 106,046 |
Adversarial (Red/Blue) agent pairing for the VEX Protocol.
[dependencies]
vex-adversarial = "0.1"
use vex_adversarial::{ShadowAgent, Debate};
use vex_core::Agent;
#[tokio::main]
async fn main() {
let primary = Agent::new("primary");
let shadow = ShadowAgent::new("shadow", &primary);
// Shadow agent monitors and challenges primary decisions
}
MIT License - see LICENSE for details.