rustchain-community 1.0.0

Open-source AI agent framework with core functionality and plugin system
Documentation
1
2
3
4
5
6
7
use rustchain::cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Delegate to CLI (it will handle tracing initialization)
    cli::run().await.map_err(|e| anyhow::anyhow!("{}", e))
}