useanyhow::Result;usearrow::array::{ArrayRef, Float32Array};/// Generic model interface for Skardi ML modules.
pubtraitModel{/// Run prediction on a slice of Arrow arrays. Returns a Float32Array of length equal to row count.
fnpredict(&self, args:&[ArrayRef])->Result<Float32Array>;}