Views
No views yet
config.json and selected automatically.
Sampling options should be omitted.1from dots_tts.runtime import DotsTtsRuntime
2import soundfile as sf
3
4runtime = DotsTtsRuntime.from_pretrained(
5 "dots-studio/dots.tts-mf-1step",
6 precision="bfloat16",
7)
8
9result = runtime.generate(
10 text="Hello, this is a one-step synthesis test.",
11 prompt_audio_path="reference.wav",
12 prompt_text="The exact transcript of the reference audio.",
13)
14sf.write("output.wav", result["audio"].float().cpu().squeeze().numpy(), result["sample_rate"])1@article{dotstts2026,
2 title = {dots.tts Technical Report},
3 author = {dots.tts Team},
4 year = {2026},
5 eprint = {2606.07080},
6 archivePrefix = {arXiv},
7 primaryClass = {cs.SD},
8}