diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cb8a07..3a68115 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,7 @@ jobs: # Test model inference print('Running inference...') - audio = model.inference(text, speaker_id=0, speed=1.0) + output_path = 'en-us.wav' + model.tts_to_file(text, speaker_ids['EN-US'], output_path, speed=1.0) print('Inference successful!') "