cgpt 0.1.4

A command-line ChatGPT client
1
2
3
4
5
6
7
8
9
10
use crate::cgpt::Repl;
pub mod cgpt;

fn main() {
    let mut repl = Repl::new();
    if let Err(e) = repl.start() {
        println!("Could not start repl: {e}");
        std::process::exit(1);
    };
}