vex-runtime

Crates.iovex-runtime
lib.rsvex-runtime
version0.1.2
created_at2025-12-14 22:22:59.437958+00
updated_at2025-12-18 01:44:48.445812+00
descriptionTokio-based agent orchestration for VEX
homepage
repositoryhttps://github.com/provnai/vex
max_upload_size
id1985198
size110,027
0xQ (bulltickr)

documentation

README

vex-runtime

Tokio-based agent orchestration for the VEX Protocol.

Features

  • Agent Orchestration - Run multiple agents concurrently
  • Task Scheduling - Prioritized agent task execution
  • Resource Management - Efficient resource allocation

Installation

[dependencies]
vex-runtime = "0.1"

Quick Start

use vex_runtime::Runtime;
use vex_core::Agent;

#[tokio::main]
async fn main() {
    let runtime = Runtime::new();
    
    let agent = Agent::new("worker");
    runtime.spawn(agent).await;
}

License

MIT License - see LICENSE for details.

Commit count: 0

cargo fmt