- Create a conda environment and activate it
conda create -n tts python=3.11; conda activate tts
- Install requirements with
pip install -r requirements.txt --use-deprecated=legacy-resolver
- Run the server
$ cd tts-server
$ uvicorn main:app --host 0.0.0.0 --port 8000
- Run the client
$ cd client
$ python tts.py --ref_file reference_audio_file_for_cloning.wav --text "text to dictate"
- add utterance timing detection to speech recognition server
- modify speech synthesis server to support main async client
- connect and test chat_completions endpoint with LMStudio API