fromsupertonicimportTTStts=TTS(auto_download=True)# Initialize TTS enginestyle=tts.get_voice_style(voice_name="M1")# Get a voice style: M1, M2, F1, F2wav,duration=tts.synthesize(text="Your text here.",# Text to synthesizevoice_style=style,# Voice style objecttotal_steps=5,# Quality: 2 (low quality) to 15 (high quality)speed=1.05,# Speed: 0.7 (slow) to 2.0 (fast)max_chunk_length=300,# Max characters per chunksilence_duration=0.3,# Silence between chunks (seconds)verbose=False# Show detailed progress (default: False))