hypersteeldb 0.5.5

A database that compiles questions instead of guessing answers: typed vocabulary discovered from your documents, queries type-checked before they run, roaring-bitmap set algebra over reified hyperedges, and Dempster-Shafer evidence with an explicit conflict guard.
Documentation
//! Native text projection primitives (multilingual, CPU-only), ported from the TS ingest pipeline.
//!   • `model2vec` — the EN/JA/KO static span embedder (reuses the shipped `potion.f32` artifact).
//!   • `ot`        — Sinkhorn optimal transport + k-means codebook for auto ontology sensing.
//! The SPLADE / SPO-tagger ONNX stages plug in next via the `ort` crate (ONNX Runtime), running the
//! same exported `.onnx` graphs unchanged.

pub mod gazetteer;
#[cfg(feature = "embed")]
pub mod model2vec;
pub mod ot;

pub use gazetteer::{GazHit, Gazetteer};
#[cfg(feature = "embed")]
pub use model2vec::{cosine, Model2Vec};

#[cfg(feature = "onnx")]
pub mod splade;
#[cfg(feature = "onnx")]
pub mod tagger;

#[cfg(feature = "onnx")]
pub use splade::{FacetTerm, SpladeProjector};
#[cfg(feature = "onnx")]
pub use tagger::{Span, SpoTagger};