Skip to main content

inferential/
lib.rs

1pub mod async_client;
2pub mod client;
3pub mod proto;
4pub mod tensor;
5
6pub use async_client::{AsyncConnection, AsyncModel, AsyncObservationBuilder};
7pub use client::{Connection, Model, ObservationBuilder};
8pub use tensor::TensorData;