From b6d93c110c8a14f738d897c0012a2a7d61044f67 Mon Sep 17 00:00:00 2001 From: Oxbian Date: Mon, 17 Feb 2025 22:14:48 -0500 Subject: feat: basic working interface + LLM API call --- Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3d4c780 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "nai" +version = "0.1.0" +edition = "2021" + +[dependencies] +color-eyre = "0.6.3" +ratatui = "0.29.0" +reqwest = { version = "0.12.12", features = ["blocking", "json"] } +serde = { version = "1.0.217", features = ["derive"] } +serde_json = "1.0.138" -- cgit v1.2.3