From f2f387e1dd432fd6216341bd4bd99bb6a00120f9 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 19 Dec 2024 21:30:43 +0100 Subject: [PATCH 1/2] fix(openvoice): do not pin numpy (#4438) Signed-off-by: Ettore Di Giacinto --- backend/python/openvoice/requirements-cpu.txt | 2 +- backend/python/openvoice/requirements-cublas11.txt | 2 +- backend/python/openvoice/requirements-cublas12.txt | 2 +- backend/python/openvoice/requirements-intel.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/python/openvoice/requirements-cpu.txt b/backend/python/openvoice/requirements-cpu.txt index c47e22b55cb3..ad679f24a814 100644 --- a/backend/python/openvoice/requirements-cpu.txt +++ b/backend/python/openvoice/requirements-cpu.txt @@ -2,7 +2,7 @@ torch==2.4.1 git+https://github.com/myshell-ai/MeloTTS.git git+https://github.com/myshell-ai/OpenVoice.git whisper-timestamped -numpy==1.22.0 +numpy pydub==0.25.1 wavmark==0.0.3 eng_to_ipa==0.0.2 \ No newline at end of file diff --git a/backend/python/openvoice/requirements-cublas11.txt b/backend/python/openvoice/requirements-cublas11.txt index 02b8b0506dbb..4edd72babd1a 100644 --- a/backend/python/openvoice/requirements-cublas11.txt +++ b/backend/python/openvoice/requirements-cublas11.txt @@ -3,7 +3,7 @@ torch==2.4.1+cu118 git+https://github.com/myshell-ai/MeloTTS.git git+https://github.com/myshell-ai/OpenVoice.git whisper-timestamped -numpy==1.22.0 +numpy pydub==0.25.1 wavmark==0.0.3 eng_to_ipa==0.0.2 \ No newline at end of file diff --git a/backend/python/openvoice/requirements-cublas12.txt b/backend/python/openvoice/requirements-cublas12.txt index c47e22b55cb3..ad679f24a814 100644 --- a/backend/python/openvoice/requirements-cublas12.txt +++ b/backend/python/openvoice/requirements-cublas12.txt @@ -2,7 +2,7 @@ torch==2.4.1 git+https://github.com/myshell-ai/MeloTTS.git git+https://github.com/myshell-ai/OpenVoice.git whisper-timestamped -numpy==1.22.0 +numpy pydub==0.25.1 wavmark==0.0.3 eng_to_ipa==0.0.2 \ No newline at end of file diff --git a/backend/python/openvoice/requirements-intel.txt b/backend/python/openvoice/requirements-intel.txt index 2b9cce827929..e8d07008b90e 100644 --- a/backend/python/openvoice/requirements-intel.txt +++ b/backend/python/openvoice/requirements-intel.txt @@ -10,7 +10,7 @@ librosa==0.9.1 faster-whisper==0.9.0 pydub==0.25.1 wavmark==0.0.3 -numpy==1.22.0 +numpy eng_to_ipa==0.0.2 inflect==7.0.0 unidecode==1.3.7 From 61e486dbf591b9e0dd6a294a0a134de543da9364 Mon Sep 17 00:00:00 2001 From: "LocalAI [bot]" <139863280+localai-bot@users.noreply.github.com> Date: Fri, 20 Dec 2024 00:03:47 +0100 Subject: [PATCH 2/2] chore: :arrow_up: Update ggerganov/llama.cpp to `d408bb9268a988c5a60a5746d3a6430386e7604d` (#4437) :arrow_up: Update ggerganov/llama.cpp Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eca69917dea7..a054c5759a68 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DETECT_LIBS?=true # llama.cpp versions GOLLAMA_REPO?=https://github.com/go-skynet/go-llama.cpp GOLLAMA_VERSION?=2b57a8ae43e4699d3dc5d1496a1ccd42922993be -CPPLLAMA_VERSION?=cd920d0ac38ec243605a5a57c50941140a193f9e +CPPLLAMA_VERSION?=d408bb9268a988c5a60a5746d3a6430386e7604d # whisper.cpp version WHISPER_REPO?=https://github.com/ggerganov/whisper.cpp