ruchat 0.1.2

ollama/chroma command-line AI chat tool
Documentation
1
2
3
4
5
6
7
8
/// main function for RuChat
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    if let Err(e) = ruchat::run().await {
        eprintln!("Error: {}", e);
    }
    Ok(())
}