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
//! # SHIFT — Smart Hybrid Input Filtering & Transformation
//!
//! A multimodal preflight layer that automatically adapts inputs (images, video,
//! audio, documents, text) before they are sent to an AI model.
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use shift_preflight::{pipeline, ShiftConfig, DriveMode};
//! use serde_json::json;
//!
//! let payload = json!({
//! "model": "gpt-4o",
//! "messages": [{"role": "user", "content": "Hello"}]
//! });
//!
//! let config = ShiftConfig {
//! mode: DriveMode::Balanced,
//! provider: "openai".to_string(),
//! ..Default::default()
//! };
//!
//! let (transformed, report) = pipeline::process(&payload, &config).unwrap();
//! ```
pub use ;
pub use ;
pub use process;
pub use Report;
pub use RunRecord;