fix: Add local backend entries for chatterbox on MacOS#8953
Open
localai-bot wants to merge 1 commit intomudler:masterfrom
Open
fix: Add local backend entries for chatterbox on MacOS#8953localai-bot wants to merge 1 commit intomudler:masterfrom
localai-bot wants to merge 1 commit intomudler:masterfrom
Conversation
✅ Deploy Preview for localai ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
- 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 mudler#8610 Signed-off-by: team-coding-agent-1 <team-coding-agent-1@localai.dev>
799a3fb to
5c5f4d1
Compare
Contributor
Author
|
✅ Fixed DCO check by adding Signed-off-by to the commit. The CI checks should now pass for DCO. Please allow some time for the remaining checks to complete. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes issue #8610 by adding local backend entries for chatterbox on MacOS.
Problem
When trying to install the chatterbox backend on MacOS (Apple M2), users encountered the error:
Error installing model "chatterbox": not a valid backend: run file not found "/backends/cpu-chatterbox/run.sh"Root Cause
The backend/index.yaml file was configured to use container images for cpu-chatterbox and metal-chatterbox backends, but these container images don't exist or aren't available. The system was unable to download the backend and fall back to a local implementation.
Solution
Changes
Testing
Fixes #8610