cherenkov/lib.rs
1//! Standalone qwen4-exp text inference on Apple Silicon.
2
3pub mod config;
4pub mod control;
5pub mod download;
6mod kernels;
7mod metal;
8pub mod model;
9mod nn;
10pub mod options;
11mod prefix_cache;
12mod prompt;
13mod quant;
14pub mod qwen4_exp;
15pub mod runner;
16pub mod sampling;
17pub mod server;
18pub mod storage;
19mod tensors;
20mod tok;
21mod units;
22
23#[cfg(test)]
24#[path = "../tests/support/mod.rs"]
25mod test_support;