From 91a4d120cb19a8f5fe9bc587aa3bfae2702380d8 Mon Sep 17 00:00:00 2001 From: laurent Date: Mon, 7 Jul 2025 08:12:16 +0200 Subject: [PATCH] Use moshi 0.2.8. --- scripts/tts_pytorch.py | 2 +- tts_pytorch.ipynb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/tts_pytorch.py b/scripts/tts_pytorch.py index 9230319..568b9c8 100644 --- a/scripts/tts_pytorch.py +++ b/scripts/tts_pytorch.py @@ -1,7 +1,7 @@ # /// script # requires-python = ">=3.12" # dependencies = [ -# "moshi==0.2.7", +# "moshi==0.2.8", # "torch", # "sphn", # "sounddevice", diff --git a/tts_pytorch.ipynb b/tts_pytorch.ipynb index 1a206c0..e2702e6 100644 --- a/tts_pytorch.ipynb +++ b/tts_pytorch.ipynb @@ -9,9 +9,9 @@ "source": [ "# Fast install, might break in the future.\n", "!pip install 'sphn<0.2'\n", - "!pip install --no-deps \"moshi==0.2.7\"\n", + "!pip install --no-deps \"moshi==0.2.8\"\n", "# Slow install (will download torch and cuda), but future proof.\n", - "# !pip install \"moshi==0.2.7\"" + "# !pip install \"moshi==0.2.8\"" ] }, {