1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2024-2026 Reflective Labs
// SPDX-License-Identifier: MIT
//! # prism
//!
//! Closed-form analytics and inference Suggestors for the Converge Engine.
//!
//! Prism owns hand-authored, deterministic inference: feature extraction,
//! inference packs, and fuzzy inference (Mamdani / Sugeno / Tsukamoto).
//! Training-pipeline concerns — dataset loading, train/val split,
//! hyperparameter search, model fitting, registry, and deployment —
//! live in `crucible-models`. The boundary is: prism never fits, crucible
//! never owns expert rules.
//!
//! ## Usage
//!
//! ```rust,ignore
//! use prism::FeatureAgent;
//!
//! engine.register_suggestor(FeatureAgent::new(config));
//! ```
//!
//! ## Available Suggestors
//!
//! - [`FeatureAgent`] — Polars-based feature extraction
//! - [`InferenceAgent`] — Burn-based inference over feature vectors
//! - [`FuzzyInferencePack`] — fuzzy membership and rule inference
pub use FeatureAgent;
pub use InferenceAgent;
pub use ;
pub use ;