From 774a39906844806a168e0eb0518fafaa3b78b2be Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sun, 24 Aug 2025 16:07:58 +0800 Subject: [PATCH] updated colab --- colab.ipynb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/colab.ipynb b/colab.ipynb index 2a6d73591..391a56dde 100644 --- a/colab.ipynb +++ b/colab.ipynb @@ -70,8 +70,8 @@ "WCommand = \"\"\n", "#@markdown
\n", "LoadTTSModel = False #@param {type:\"boolean\"}\n", - "TTSModel = \"https://huggingface.co/koboldcpp/tts/resolve/main/OuteTTS-0.2-500M-Q4_0.gguf\" #@param [\"https://huggingface.co/koboldcpp/tts/resolve/main/OuteTTS-0.2-500M-Q4_0.gguf\"]{allow-input: true}\n", - "WavTokModel = \"https://huggingface.co/koboldcpp/tts/resolve/main/WavTokenizer-Large-75-Q4_0.gguf\" #@param [\"https://huggingface.co/koboldcpp/tts/resolve/main/WavTokenizer-Large-75-Q4_0.gguf\"]{allow-input: true}\n", + "TTSModel = \"https://huggingface.co/koboldcpp/tts/resolve/main/Kokoro_no_espeak_Q4.gguf\" #@param [\"https://huggingface.co/koboldcpp/tts/resolve/main/Kokoro_no_espeak_Q4.gguf\",\"https://huggingface.co/koboldcpp/tts/resolve/main/OuteTTS-0.2-500M-Q4_0.gguf\"]{allow-input: true}\n", + "WavTokModel = \"\" #@param [\"https://huggingface.co/koboldcpp/tts/resolve/main/WavTokenizer-Large-75-Q4_0.gguf\"]{allow-input: true}\n", "TTSCommand = \"\"\n", "#@markdown
\n", "LoadEmbeddingsModel = False #@param {type:\"boolean\"}\n", @@ -127,6 +127,8 @@ " WCommand = \"\"\n", "if TTSModel and WavTokModel and LoadTTSModel:\n", " TTSCommand = f\"--ttsmodel {TTSModel} --ttswavtokenizer {WavTokModel} --ttsgpu\"\n", + "elif TTSModel and LoadTTSModel:\n", + " TTSCommand = f\"--ttsmodel {TTSModel} --ttsgpu\"\n", "else:\n", " TTSCommand = \"\"\n", "if EmbeddingsModel and LoadEmbeddingsModel:\n",