pocket-tts 0.6.2

High-performance CPU-based Text-to-Speech library using Candle
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod audio;
pub mod conditioners;
pub mod config;
pub mod models;
pub mod modules;
pub mod pause;
pub mod quantize;
pub mod tts_model;
pub mod voice_state;
pub mod weights;

#[cfg(target_arch = "wasm32")]
pub mod wasm;

pub use pause::{ParsedText, PauseMarker, parse_text_with_pauses};
pub use quantize::{QuantizeConfig, QuantizedTensor};
pub use tts_model::TTSModel;
pub use voice_state::ModelState;