AI SeedbankHelp preserve open and free AI for humanity's future

← All models

ResembleAI_chatterbox

ResembleAI · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: mit language:

  • ar
  • da
  • de
  • el
  • en
  • es
  • fi
  • fr
  • he
  • hi
  • it
  • ja
  • ko
  • ms
  • nl
  • no
  • pl
  • pt
  • ru
  • sv
  • sw
  • tr
  • zh pipeline_tag: text-to-speech tags:
  • text-to-speech
  • speech
  • speech-generation
  • voice-cloning
  • multilingual-tts library_name: chatterbox

Chatterbox TTS

Made with ❤️ by

Latest Release: Chatterbox Multilingual V3

Chatterbox Multilingual V3 is the latest general-purpose multilingual TTS model in the Chatterbox family. It keeps the same 0.5B model size while improving speaker similarity, reducing hallucinations, and producing more natural, conversational speech across languages.

V3 is designed for broad language coverage like V2, but with stronger stability and more expressive generation. It is the recommended multilingual model for users who want one voice cloning model that works across many languages. Try it in the Chatterbox Multilingual TTS V3 Space.

Alongside V3, we are releasing the Single Language Pack: dedicated finetunes for priority languages where tighter quality control, stronger language-specific behavior, and more specialized speech generation are valuable.

  • Broad Multilingual Coverage: Designed as the main general-purpose multilingual Chatterbox model, supporting wide language coverage similar to V2.
  • Single Language Pack: Dedicated single-language models provide stronger specialization and quality control where language- and regional-dialect-specific performance matters most.
  • More Consistent Speaker Similarity: Improves voice identity and accent preservation across languages, making cross-language voice cloning more stable and reliable.
  • Reduced Hallucination: V3 is optimized to reduce unwanted continuation, repetition, and off-prompt speech, especially in cases where earlier multilingual models were less stable.

Model Zoo

Choose the right Chatterbox model for your application.

Model Size Languages Key Features Best For Demo
Chatterbox Multilingual V3 500M 23+ Improved speaker similarity, reduced hallucinations, more natural multilingual speech Global applications, localization, cross-language voice cloning Demo
Single Language Pack 500M each 6 dedicated finetunes Language- and region-specific quality control Priority languages and dialect-sensitive applications Demos
Chatterbox 500M English CFG and exaggeration tuning General zero-shot TTS with creative controls Demo

09/04 🔥 Introducing Chatterbox Multilingual in 23 Languages!

We're excited to introduce Chatterbox and Chatterbox Multilingual, Resemble AI's production-grade open source TTS models. Chatterbox Multilingual supports Arabic, Danish, German, Greek, English, Spanish, Finnish, French, Hebrew, Hindi, Italian, Japanese, Korean, Malay, Dutch, Norwegian, Polish, Portuguese, Russian, Swedish, Swahili, Turkish, Chinese out of the box. Licensed under MIT, Chatterbox has been benchmarked against leading closed-source systems like ElevenLabs, and is consistently preferred in side-by-side evaluations.

Whether you're working on memes, videos, games, or AI agents, Chatterbox brings your content to life. It's also the first open source TTS model to support emotion exaggeration control, a powerful feature that makes your voices stand out. Try it now on our Hugging Face Gradio app.

If you like the model but need to scale or tune it for higher accuracy, check out our competitively priced TTS service (link). It delivers reliable performance with ultra-low latency of sub 200ms—ideal for production use in agents, applications, or interactive media.

Key Details

  • Chatterbox Multilingual V3, a 0.5B general-purpose multilingual TTS model supporting 23 languages
  • Dedicated single-language finetunes for Chinese, LatAm Spanish, Brazilian Portuguese, Spain Spanish, Portugal Portuguese, and Hindi
  • SoTA zeroshot English TTS
  • 0.5B Llama backbone
  • Unique exaggeration/intensity control
  • Ultra-stable with alignment-informed inference
  • Trained on 0.5M hours of cleaned data
  • Watermarked outputs
  • Easy voice conversion script
  • Outperforms ElevenLabs

Tips

  • General Use (TTS and Voice Agents):

    • The default settings (exaggeration=0.5, cfg=0.5) work well for most prompts.
    • If the reference speaker has a fast speaking style, lowering cfg to around 0.3 can improve pacing.
  • Expressive or Dramatic Speech:

    • Try lower cfg values (e.g. ~0.3) and increase exaggeration to around 0.7 or higher.
    • Higher exaggeration tends to speed up speech; reducing cfg helps compensate with slower, more deliberate pacing.

Note: Ensure that the reference clip matches the specified language tag. Otherwise, language transfer outputs may inherit the accent of the reference clip’s language.
To mitigate this, set the CFG weight to 0.

Installation

pip install chatterbox-tts

Usage

import torchaudio as ta
from chatterbox.tts import ChatterboxTTS

model = ChatterboxTTS.from_pretrained(device="cuda")

text = "Ezreal and Jinx teamed up with Ahri, Yasuo, and Teemo to take down the enemy's Nexus in an epic late-game pentakill."
wav = model.generate(text)
ta.save("test-1.wav", wav, model.sr)

# If you want to synthesize with a different voice, specify the audio prompt
AUDIO_PROMPT_PATH="YOUR_FILE.wav"
wav = model.generate(text, audio_prompt_path=AUDIO_PROMPT_PATH)
ta.save("test-2.wav", wav, model.sr)

Multilingual Quickstart

import torchaudio as ta
from chatterbox.mtl_tts import ChatterboxMultilingualTTS

multilingual_model = ChatterboxMultilingualTTS.from_pretrained(
    device="cuda",
    t3_model="v3",
)
# To use the legacy V2 multilingual checkpoint, omit t3_model or pass t3_model="v2".

french_text = "Bonjour, comment ça va? Ceci est le modèle de synthèse vocale multilingue Chatterbox, il prend en charge 23 langues."
wav_french = multilingual_model.generate(french_text, language_id="fr")
ta.save("test-french.wav", wav_french, multilingual_model.sr)

chinese_text = "你好,今天天气真不错,希望你有一个愉快的周末。"
wav_chinese = multilingual_model.generate(chinese_text, language_id="zh")
ta.save("test-chinese.wav", wav_chinese, multilingual_model.sr)

See example_tts.py for more examples.

Single Language Pack

The Single Language Pack provides dedicated finetunes for priority languages and regional variants. Use these when you want stronger language-specific behavior, tighter quality control, or dialect-aware generation beyond the general multilingual model.

Language Model Card Demo Space
Chinese ResembleAI/Chatterbox-Multilingual-zh-cmn Demo
LatAm Spanish ResembleAI/Chatterbox-Multilingual-es-mx-latam Demo
Brazilian Portuguese ResembleAI/Chatterbox-Multilingual-pt-br Demo
Spain Spanish ResembleAI/Chatterbox-Multilingual-es-es Demo
Portugal Portuguese ResembleAI/Chatterbox-Multilingual-pt-pt Demo
Hindi ResembleAI/Chatterbox-Multilingual-hi Demo

Acknowledgements

  • Cosyvoice
  • HiFT-GAN
  • Llama 3

Built-in PerTh Watermarking for Responsible AI

Every audio file generated by Chatterbox includes Resemble AI's Perth (Perceptual Threshold) Watermarker - imperceptible neural watermarks that survive MP3 compression, audio editing, and common manipulations while maintaining nearly 100% detection accuracy.

Disclaimer

Don't use this model to do bad things. Prompts are sourced from freely available data on the internet.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:d385257703b76358d01b7f6dce4eb4679310ca20&dn=ResembleAI_chatterbox

Open magnet in torrent client · infohash d385257703b76358d01b7f6dce4eb4679310ca20

Files & hashes

PathSizesha1sha256
Cangjie5_TC.json1.8 MB (1,920,163 B)d77891f84ca1db0d6f7058a4ee081d4bb0bfe88e7073fd9de919443ae88e0bd2449917a65fe54898a4413ed1edcc4b67f28bce8c
README.md9.8 KB (10,081 B)8e0091740326a09c226c43cc9294993c68cbd9d56ac86d5ec7e85a9cf6566a34c6aae60ac1d50a6fceccade4c2aa57cfa6f590b4
conds.pt104.9 KB (107,374 B)128c9c9cd447c92d05304859947e3ed37460e3016552d70568833628ba019c6b03459e77fe71ca197d5c560cef9411bee9d87f4e
grapheme_mtl_merged_expanded_v1.json68.3 KB (69,989 B)d27fb3f2fd38ca39b7bbfbf83a13b3c617e551df69632f47220a788a52ce2661d096453c5655e9bf25289d89a8d832c46ee07dbf
mtl_tokenizer.json66.5 KB (68,125 B)54c8910a05341d2131a30256705f4fdb703f8ffae7f9364e2c279b2de19f417a83624d9887532a56daec2ddddac470cc71693253
s3gen.pt1008.2 MB (1,057,165,844 B)ced5db6185453af9d9d9b4bc5466220fc6820fa99b9ff07e60b20c136e2b1b3d7563a24604e8d2c4c267888d1ee929dd0151d2a3
s3gen.safetensors1007.5 MB (1,056,484,620 B)972a6da50a9f3e3410f36632dc58f4aea73c8c1c2b78103c654207393955e4900aac14a12de8ef25f4b09424f1ef91941f161d4e
s3gen_v3.pt1007.9 MB (1,056,903,694 B)364df38d35db9faa31913acc89db0f49f741ef0ff7abce4b196dae2d08d9296cbebc6521b046079577643b42a19a03499d08721e
s3gen_v3.safetensors1007.4 MB (1,056,381,804 B)1d5a3851b9625dda537d640be4bc4dfa1ed48fb34a46190f3dccc2230fbb3488a930bccc925862ee68f2662433dfcfe93ce6c2cb
t3_23lang.safetensors2.00 GB (2,143,154,168 B)118299a7b151e190209ebdc37d15d734b2c002e35b2194350053f9fc01544e614d923f1e5c8cd785ba596acc142d3d1d8614908c
t3_cfg.pt1015.6 MB (1,064,892,246 B)98673736cb262aae5d110802b3327c50914adeb40b2dd5439fe7e94f379561419847a45bf2c79d0e8ea751c6bbe947ce337789cc
t3_cfg.safetensors1.98 GB (2,129,653,744 B)5393944678b9e468d5b0ab710a81e952d00fadaf914cb1696f47527fe8852ca8f1fe1fa63cb34f76f9c715e84e067b744dd0da81
t3_mtl23ls_v2.safetensors2.00 GB (2,143,989,752 B)fca6c1c413c49b22c242985ebf9a7a04b55789aeb1237586127ce98e7800a68e49938eb5092846862aabcb6e17b2fda7889a6c75
t3_mtl23ls_v3.safetensors2.00 GB (2,143,989,928 B)b500c459f4c60e4f81855320df243e7b8b56da235abca8321ede76f8e61f1cc0d19aea6c946b28871017ce8726f8a69203f05953
tokenizer.json24.9 KB (25,470 B)abd07c710243ba89bf1b21780e7c37ddde92334ed71e3a44eabb1784df9a68e9f95b251ecbf1a7af6a9f50835856b2ca9d8c14a5
ve.pt5.4 MB (5,698,626 B)8b91b1172b833d29ea1166759da713956d2acfc54b16d836bc598509860f6fa068165a8bb5e9ac84f05582dfcf278a5a372879f1
ve.safetensors5.4 MB (5,695,784 B)cf554c3c3ab64211a8da2d0422b7d8a731763b3ff0921cab452fa278bc25cd23ffd59d36f816d7dc5181dd1bef9751a7fb61f63c

Cite this release

Canonical URL
https://aiseedbank.org/models/ResembleAI_chatterbox/
Slug
ResembleAI_chatterbox
Infohash
d385257703b76358d01b7f6dce4eb4679310ca20
License
mit
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: ResembleAI_chatterbox.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryResembleAI/chatterbox
Revision (pinned)5bb1f6ee58e50c3b8d408bc82a6d3740c2db6e18
Fetched at2026-09-03T20:08:47Z
License at fetchmit
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T20:11:04Z

mit12.91 GB (13,866,211,412 bytes)chatterboxtext-to-speechspeechspeech-generationvoice-cloningmultilingual-tts23 languages (ar, da, de …)