wavekat-tts 0.0.3

Unified text-to-speech for voice pipelines with multiple backend support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Backend implementations for various TTS engines.
//!
//! Each backend is gated behind a feature flag. Enable the corresponding
//! feature in your `Cargo.toml` to use it:
//!
//! ```toml
//! wavekat-tts = { version = "0.0.1", features = ["qwen3-tts"] }
//! ```

#[cfg(feature = "qwen3-tts")]
pub mod qwen3_tts;

#[cfg(feature = "cosyvoice")]
pub mod cosyvoice;