Skip to main content

atomr_agents_tts_runtime_xtts/
lib.rs

1//! Coqui XTTS v2 backend.
2//!
3//! XTTS v2 is a Coqui-released zero-shot voice-cloning TTS model
4//! supporting 17 languages and ~6-second reference clips. Like
5//! MOSS-TTS this crate hosts the model out-of-process via Python
6//! and talks to it over HTTP. The trait surface + [`CAPS`] ship
7//! today; the HTTP client is gated behind `xtts-http`.
8
9mod caps;
10mod config;
11mod runner;
12
13pub use caps::CAPS;
14pub use config::XttsConfig;
15pub use runner::XttsRunner;