Views
No views yet
1from transformers import pipeline
2
3# Use the model
4synthesizer = pipeline(
5 "text-to-speech",
6 model="stano03/jambogpt-swahili-tts-v1"
7)
8
9# Generate speech
10speech = synthesizer("Habari, karibu!")
11
12# Save audio
13import scipy.io.wavfile as wavfile
14wavfile.write("output.wav", speech["sampling_rate"], speech["audio"][0])1@article{jambogpt2026,
2 title={JamboGPT: African Language AI},
3 author={stano03},
4 year={2026}
5}