[package]
edition = "2024"
name = "kjarni-cli"
version = "0.1.9"
authors = ["Ólafur Aron Jóhannsson <olafurjohannss@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the Kjarni inference engine: embeddings, classification, reranking, generation and search"
homepage = "https://kjarni.ai"
documentation = "https://docs.rs/kjarni"
readme = "README.md"
keywords = [
"inference",
"llm",
"embeddings",
"machine-learning",
"transformers",
]
categories = [
"science",
"text-processing",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/olafurjohannsson/kjarni"
resolver = "2"
[lib]
name = "kjarni_cli"
path = "src/lib.rs"
[[bin]]
name = "kjarni"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bincode]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.env_logger]
version = "0.11"
[dependencies.futures]
version = "0.3.31"
[dependencies.kjarni]
version = "0.1.9"
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.23.0"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"full",
]
[dependencies.walkdir]
version = "2.5.0"
[lints.clippy]
excessive_precision = "allow"
module_inception = "allow"
too_many_arguments = "allow"
type_complexity = "allow"