add ability to use guide tokens for TTS, ref: https://github.com/ggerganov/llama.cpp/pull/11186

This commit is contained in:
Concedo 2025-01-11 17:18:21 +08:00
parent bd38665e1f
commit 07173e84a0
4 changed files with 53 additions and 3 deletions

View file

@ -174,6 +174,8 @@ struct common_params_vocoder {
std::string model = ""; // model path // NOLINT
std::string model_url = ""; // model url to download // NOLINT
bool use_guide_tokens = false; // enable guide tokens to improve TTS accuracy // NOLINT
};
struct common_params {