cargo-ai 0.0.11

Build lightweight AI agents with Cargo. Powered by Rust. Declared in JSON.
1
2
3
4
5
6
7
8
9
mod app;
mod config;
mod runtime;
mod state;
mod ui;

pub fn launch() -> Result<(), String> {
    app::launch()
}