voxcpm-rs 0.5.0

Pure-Rust inference for VoxCPM2 on top of the Burn framework (Vulkan + CPU).
Documentation
1
2
3
4
5
6
7
8
9
10
//! Top-level VoxCPM2 model and the high-level [`VoxCPM`] convenience wrapper.

pub mod model;
pub mod wrapper;

pub use model::{DitStep, InferenceState, VoxCpm2Model};
pub use wrapper::{
    BatchBuilder, CancelToken, GenerateOptions, GenerateOptionsBuilder, GenerateStream, Prompt,
    PromptAudio, VoxCPM, split_sentences,
};