Cargo Features
[dependencies]
llm_client = { version = "0.0.6", default-features = false, features = ["all", "llama_cpp_backend", "mistral_rs_backend"] }
- default = llama_cpp_backend
-
The
llama_cpp_backend
feature is set by default wheneverllm_client
is added without
somewhere in the dependency tree.default-features = false - all = llama_cpp_backend, mistral_rs_backend
- llama_cpp_backend default all?
-
Enables llama_cpp_backend of llm_interface
Affects
backend_builders::llama_cpp
… - mistral_rs_backend all?
-
Enables mistral_rs_backend of llm_interface
Affects
backend_builders::mistral_rs
…