hypersteeldb 0.5.3

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Concrete projectors. Each lowers one file format to the common Situation stream.

mod csv_proj;
mod json_proj;
mod jsonl_proj;

pub use csv_proj::CsvProjector;
pub use json_proj::JsonProjector;
pub use jsonl_proj::JsonlProjector;

#[cfg(feature = "onnx")]
mod text_proj;
#[cfg(feature = "onnx")]
pub use text_proj::{TextEngine, TextProjector};