Fix: Add model parameter to neutts-air gallery definition#8793
Open
localai-bot wants to merge 1 commit intomudler:masterfrom
Open
Fix: Add model parameter to neutts-air gallery definition#8793localai-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. |
0295bf3 to
634c5f5
Compare
Contributor
Author
|
Fixed the DCO check failure by removing the merge commit and force-pushing a clean commit history. The branch now has a proper single commit with correct author email. DCO check should pass on the next CI run. |
Repository owner
deleted a comment from
localai-bot
Mar 5, 2026
Contributor
Author
|
PR is up-to-date. The fix has been committed and pushed. Currently waiting for CI to complete. DCO check is still failing - may need to verify author signature. |
The neutts-air model entry was missing the 'model' parameter in its configuration, which caused LocalAI to fail with an 'Unrecognized model' error when trying to use it. This change adds the required model parameter pointing to the HuggingFace repository (neuphonic/neutts-air) so the backend can properly load the model. Fixes mudler#8792 Signed-off-by: localai-bot <localai-bot@example.com>
634c5f5 to
7f1bfb3
Compare
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 #8792 by adding the missing 'model' parameter to the neutts-air gallery definition.
Problem
When attempting to download and use the neutts-air model, LocalAI failed with:
Root Cause
The neutts-air entry in gallery/index.yaml was missing the required 'model' parameter under the 'parameters' section.
Solution
Added the 'model' parameter pointing to 'neuphonic/neutts-air' HuggingFace repository:
This allows the neutts backend to properly identify and load the model.