kernex-runtime 0.2.0

The Rust runtime for AI agents — composable engine with sandbox, providers, learning, and pipelines
Documentation

kernex-runtime: The facade crate that composes all Kernex components.

Provides Runtime for configuring and running an AI agent runtime with sandboxed execution, multi-provider support, persistent memory, skills, and multi-agent pipeline orchestration.

Quick Start

use kernex_runtime::RuntimeBuilder;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let runtime = RuntimeBuilder::new()
        .data_dir("~/.kernex")
        .build()
        .await?;
    Ok(())
}