gradatum_engine/lib.rs
1//! 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
2//!
3//! ## Status
4//!
5//! Placeholder v0.0.2. Source code private until v1.0 public release.
6//! See <https://gradatum.org> for project context and roadmap.
7//!
8//! ## Stability
9//!
10//! `0.x` — no API stability guarantee.
11//! See the [versioning policy](https://github.com/gradatum/gradatum/blob/main/RELEASE-POLICY.md).
12
13#![forbid(unsafe_code)]
14
15/// Crate version.
16pub const VERSION: &str = env!("CARGO_PKG_VERSION");