enki-local 0.1.3

Local mesh implementation for the Enki agent framework
Documentation

Enki Local

Local mesh implementation for the Enki agent framework.

Provides [LocalMesh] for managing agents in a single-process environment.

Example

use enki_local::LocalMesh;
use enki_core::Mesh;

# async fn example() -> anyhow::Result<()> {
let mesh = LocalMesh::new("my-mesh");
mesh.start().await?;
# Ok(())
# }