rill-runtime 0.6.0

Signed-model local runtime and IPC server for RillML.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Independently distributable runtime for RillML.

pub mod package;
pub mod server;

pub use package::{
    LoadedModelPack, ModelPackError, ModelPackInspection, ReleaseIndexError, TrustStore,
    build_signed_model_pack, load_model_pack, sign_release_index, verify_release_index,
};
pub use server::{
    InvokeHandler, LINEAR_REGRESSION_CAPABILITY, LinearRegressionInvokeHandler, RuntimeEngine,
};