Skip to main content

steeldb/projectors/
mod.rs

1//! Concrete projectors. Each lowers one file format to the common Situation stream.
2
3mod csv_proj;
4mod json_proj;
5mod jsonl_proj;
6
7pub use csv_proj::CsvProjector;
8pub use json_proj::JsonProjector;
9pub use jsonl_proj::JsonlProjector;
10
11#[cfg(feature = "onnx")]
12mod text_proj;
13#[cfg(feature = "onnx")]
14pub use text_proj::{TextEngine, TextProjector};