gradatum-engine 0.0.2

On-device inference adapter: provides Chat, Embedder and Reranker trait implementations backed by a shared local compute stack (candle / llama.cpp); optional via feature gate engine-local
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! On-device inference adapter: provides Chat, Embedder and Reranker trait implementations backed by a shared local compute stack (candle / llama.cpp); optional via feature gate engine-local
//!
//! ## Status
//!
//! Placeholder v0.0.2. Source code private until v1.0 public release.
//! See <https://gradatum.org> for project context and roadmap.
//!
//! ## Stability
//!
//! `0.x` — no API stability guarantee.
//! See the [versioning policy](https://github.com/gradatum/gradatum/blob/main/RELEASE-POLICY.md).

#![forbid(unsafe_code)]

/// Crate version.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");