Member Junction
    Preparing search index...

    POST /predict request body. Supplies the model artifact (inline or by ref), the frozen fitted preprocessing, the feature schema, and 1..N rows to score. The sidecar only applies the frozen params — it never re-fits (plan §6.2).

    interface PredictRequest {
        artifact_b64?: string;
        artifact_ref?: string;
        feature_schema: FeatureSchemaEntry[];
        fitted_preprocessing: FittedPreprocessing;
        rows: Record<string, string | number | boolean>[];
    }
    Index

    Properties

    artifact_b64?: string

    Base64-encoded serialized model artifact (mutually exclusive with artifact_ref).

    artifact_ref?: string

    Shared-storage handle to the model artifact.

    feature_schema: FeatureSchemaEntry[]

    Ordered feature schema describing each input column.

    fitted_preprocessing: FittedPreprocessing

    Frozen fitted preprocessing parameters that travel with the model.

    rows: Record<string, string | number | boolean>[]

    1..N records to score, each a feature-name → value map.