0.7.6
0.7.6
- A new endpoint has been added that allows you to get streaming audio.
- Streaming integration in SillyTavern SillyTavern/SillyTavern#1623.
Thanks to @Cohee1207 for all the changes in this update
0.7.5
- Simplified loading custom models, now you need to create a models folder in the root and put your model in this folder, in the models folder there should be 3 files
model.pth, vocab.json, config.json
Specify with a flag the name of the folder with your model, for example -v warcraft3
- Removed an unnecessary warning
0.7.4
- Connect Pypi and github https://pypi.org/project/xtts-api-server/
0.7.3
- Added a
--listen
flag, this makes it easier to understand and use outside the local pc - Now you don't have to use -t , the script will try to automatically detect your local ip address and use it for the preview
0.7.2
- Fixed the error that occurred if you specify the path to the speaker file
0.7.1
- Added check for old format of model records, e.g. 2.0.2, they will be automatically brought to the correct form, e.g. from 2.0.2 to v2.0.2
0.7.0
- You can load a custom model, for this you just need to create a folder in the models folder and put there 3 files
vocab.json
config.json
model.pth
after that you need to specify the name of this folder using the-v "Model Name"
flag. - You can specify the path to a text file as an input, to do this, pass the path to the file with the .txt ending to the text field
- Now you can cache the results so that you don't have to wait for a new generation when you make another request, use the new
--use-cache
flag to do this