vex-adversarial

Crates.iovex-adversarial
lib.rsvex-adversarial
version0.1.4
created_at2025-12-14 21:53:41.489029+00
updated_at2025-12-20 03:47:15.658848+00
descriptionAdversarial (Red/Blue) agent pairing for VEX
homepage
repositoryhttps://github.com/provnai/vex
max_upload_size
id1985159
size106,046
0xQ (bulltickr)

documentation

README

vex-adversarial

Adversarial (Red/Blue) agent pairing for the VEX Protocol.

Features

  • Shadow Agents - Monitor and challenge primary agent decisions
  • Debate System - Structured adversarial dialogues between agents
  • Consensus - Multi-agent agreement protocols

Installation

[dependencies]
vex-adversarial = "0.1"

Quick Start

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
}

License

MIT License - see LICENSE for details.

Commit count: 0

cargo fmt