shai 0.3.1

A shell AI assistant
Documentation
1
2
3
4
5
6
7
8
use shai::cli;

#[tokio::main]
async fn main() {
    if let Err(err) = cli::run().await {
        eprintln!("\n{err}");
    }
}