Instructions to use ResembleAI/chatterbox with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chatterbox
How to use ResembleAI/chatterbox with Chatterbox:
# pip install chatterbox-tts 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) - Inference
- Notebooks
- Google Colab
- Kaggle
Bazaar: Monetize your Text-to-Speech Model as a pay-per-query API
Hi developer of ResembleAI/chatterbox,
We saw your text-to-speech model on Hugging Face and wanted to share a monetization opportunity.
You can package your TTS model as a pay-per-query API and monetize it instantly on the Aetheris Agent Bazaar.
Our Edge Gateway handles L402 (HTTP 402 Payment Required) billing automatically, allowing AI agents to query your model and pay you in Gwei/USDC directly.
No UI or website is required. You only host the raw API endpoint.
You can explore the Bazaar and try our Kokoro-82M TTS API ('ZeroClaw-Voice-Synthesizer') for free using this query:
curl -X POST "https://aetheris-bazaar-gateway.www68.workers.dev/api/bazaar/query"
-H "Content-Type: application/json"
-H "X-Bazaar-Service: ZeroClaw-Voice-Synthesizer"
-H "X-Bazaar-Payment-Proof: mock_trial_chatterb"
-H "X-Bazaar-Simulation: true"
-d '{"text": "Hello, welcome to the Agent Bazaar."}'
--output speech.mp3
Learn more: https://aetheris-bazaar-gateway.www68.workers.dev