llm_interface 0.0.2

The Backend for the llm_client Crate
[[bin]]
name = "server_runner"
path = "src/llms/local/llama_cpp/bin/server_runner.rs"
required-features = ["llama_cpp_backend"]

[build-dependencies.cargo_metadata]
version = "0.18.1"

[build-dependencies.llm_devices]
version = "0.0.2"

[dependencies.anyhow]
version = "1.0.89"

[dependencies.backoff]
features = ["tokio"]
version = "0.4.0"

[dependencies.bytes]
version = "1.7.2"

[dependencies.clap]
optional = true
version = "4.5.17"

[dependencies.colorful]
version = "0.3.2"

[dependencies.dotenvy]
version = "0.15.7"

[dependencies.indenter]
version = "0.3.3"

[dependencies.llm_devices]
version = "0.0.2"

[dependencies.llm_models]
version = "0.0.1"

[dependencies.llm_prompt]
version = "0.0.1"

[dependencies.reqwest]
version = "0.12.7"

[dependencies.secrecy]
version = "0.8.0"

[dependencies.serde]
version = "1.0.210"

[dependencies.serde_json]
version = "1.0.128"

[dependencies.sysinfo]
default-features = false
features = ["system"]
optional = true
version = "0.31.4"

[dependencies.thiserror]
version = "1.0.64"

[dependencies.tokio]
version = "1.40.0"

[dependencies.tracing]
version = "0.1.40"

[dependencies.url]
version = "2.5.2"

[dev-dependencies.serial_test]
version = "3.1.1"

[dev-dependencies.tokio]
features = ["macros", "test-util"]
version = "1.40.0"

[features]
all = ["llama_cpp_backend", "mistral_rs_backend"]
default = ["llama_cpp_backend"]
llama_cpp_backend = ["clap", "sysinfo"]
mistral_rs_backend = ["sysinfo"]

[lib]
name = "llm_interface"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
description = "The Backend for the llm_client Crate"
edition = "2021"
homepage = "https://github.com/shelbyJenkins/llm_client"
license = "MIT"
name = "llm_interface"
readme = "README.md"
repository = "https://github.com/shelbyJenkins/llm_client"
version = "0.0.2"

[package.metadata.llama_cpp_backend]
repo = "https://github.com/ggerganov/llama.cpp"
tag = "b3848"

[[test]]
name = "it"
path = "tests/it/main.rs"