{"id":21033,"library":"chatterbox-tts","title":"Chatterbox TTS","description":"Chatterbox (formerly Resemble Enhance) is an open-source text-to-speech and voice conversion library by Resemble AI. Version 0.1.7 supports Python >= 3.10. The library is actively developed on GitHub with regular releases.","status":"active","version":"0.1.7","language":"python","source_language":"en","source_url":"https://github.com/resemble-ai/chatterbox","tags":["tts","voice-conversion","audio","resemble-ai"],"install":[{"cmd":"pip install chatterbox-tts","lang":"bash","label":"PyPI install"}],"dependencies":[{"reason":"Required for model inference","package":"torch","optional":false},{"reason":"Audio processing","package":"librosa","optional":false},{"reason":"Audio file I/O","package":"soundfile","optional":false}],"imports":[{"note":"Package name uses underscore but import path is 'chatterbox'.","wrong":"from chatterbox_tts import TTS","symbol":"TTS","correct":"from chatterbox import TTS"},{"note":"","wrong":"","symbol":"VoiceConverter","correct":"from chatterbox import VoiceConverter"}],"quickstart":{"code":"from chatterbox import TTS\ntts = TTS(model_name='chatterbox-tts/en_US/chatterbox-medium')\ntts.tts_to_file(text='Hello world.', file_path='output.wav')","lang":"python","description":"Basic TTS synthesis using the medium English model."},"warnings":[{"fix":"Use 'from chatterbox import TTS'","message":"The import path uses 'chatterbox' not 'chatterbox_tts'. Installing from PyPI as 'chatterbox-tts' but importing as 'chatterbox' is a common mistake.","severity":"gotcha","affected_versions":"all"},{"fix":"Include the full model ID from the list of available models.","message":"model_name expects full model ID (e.g., 'chatterbox-tts/en_US/chatterbox-medium'). Omitting prefix may cause download errors.","severity":"gotcha","affected_versions":"all"},{"fix":"Replace 'from resemble_enhance import TTS' with 'from chatterbox import TTS'","message":"The older 'Resemble Enhance' API is deprecated. Use 'chatterbox' TTS class instead.","severity":"deprecated","affected_versions":">=0.1.0"}],"env_vars":null,"last_verified":"2026-04-27T00:00:00.000Z","next_check":"2026-07-26T00:00:00.000Z","problems":[{"fix":"Use 'import chatterbox' or 'from chatterbox import TTS'.","cause":"Trying to import the package name with underscore or dash.","error":"ModuleNotFoundError: No module named 'chatterbox_tts'"},{"fix":"Upgrade to latest: pip install chatterbox-tts --upgrade, then use 'from chatterbox import TTS'.","cause":"Installed an older version (pre-0.1) or misnamed import.","error":"AttributeError: module 'chatterbox' has no attribute 'TTS'"},{"fix":"Use complete model ID: 'chatterbox-tts/en_US/chatterbox-medium'.","cause":"Using short model name without full prefix.","error":"RuntimeError: Model 'chatterbox-medium' not found"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}