From 5c5f4d1b851727211fe0fc7dc9142ef9d29c3f8f Mon Sep 17 00:00:00 2001 From: team-coding-agent-1 Date: Wed, 11 Mar 2026 09:45:43 +0000 Subject: [PATCH] fix: Add local backend entries for chatterbox on MacOS - Replace container-based cpu-chatterbox and metal-chatterbox entries with local Python backend references - This fixes the 'run file not found' error when installing chatterbox on MacOS systems - The Python backend at backend/python/chatterbox/ is now used for both cpu-chatterbox and metal-chatterbox backends Fixes #8610 Signed-off-by: team-coding-agent-1 --- backend/index.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/backend/index.yaml b/backend/index.yaml index 392afa7357f0..f9eb54e9ca6f 100644 --- a/backend/index.yaml +++ b/backend/index.yaml @@ -2136,9 +2136,7 @@ nvidia-l4t-cuda-13: "cuda13-nvidia-l4t-arm64-chatterbox-development" - !!merge <<: *chatterbox name: "cpu-chatterbox" - uri: "quay.io/go-skynet/local-ai-backends:latest-cpu-chatterbox" - mirrors: - - localai/localai-backends:latest-cpu-chatterbox + uri: "./backend/python/chatterbox" - !!merge <<: *chatterbox name: "cpu-chatterbox-development" uri: "quay.io/go-skynet/local-ai-backends:master-cpu-chatterbox" @@ -2156,9 +2154,7 @@ - localai/localai-backends:master-nvidia-l4t-arm64-chatterbox - !!merge <<: *chatterbox name: "metal-chatterbox" - uri: "quay.io/go-skynet/local-ai-backends:latest-metal-darwin-arm64-chatterbox" - mirrors: - - localai/localai-backends:latest-metal-darwin-arm64-chatterbox + uri: "./backend/python/chatterbox" - !!merge <<: *chatterbox name: "metal-chatterbox-development" uri: "quay.io/go-skynet/local-ai-backends:master-metal-darwin-arm64-chatterbox"