embeddenator-core 0.22.0

Sparse ternary VSA implementation for holographic data encoding - umbrella crate re-exporting all embeddenator components
1
2
3
4
5
6
7
8
use std::process;

fn main() {
    if let Err(e) = embeddenator_cli::run() {
        eprintln!("Error: {}", e);
        process::exit(1);
    }
}