Fix CI failures for Unsloth fine-tuning feature#9131
Closed
localai-bot wants to merge 8 commits intomudler:masterfrom
Closed
Fix CI failures for Unsloth fine-tuning feature#9131localai-bot wants to merge 8 commits intomudler:masterfrom
localai-bot wants to merge 8 commits intomudler:masterfrom
Conversation
- Add TrainRequest and TrainResponse messages to backend.proto - Add TrainStream server-streaming RPC to Backend service - Update Go gRPC interfaces (interface.go, server.go, client.go, backend.go, embed.go) - Add stub implementation in base.go returning unimplemented error - Regenerate protobuf bindings This implements Phase 1 of the Unsloth fine-tuning backend feature. Subsequent phases will implement the Python backend and Go service layer. Signed-off-by: localai-bot <localai-bot@users.noreply.github.com>
- Add Python unsloth backend with QLoRA/LoRA/full fine-tuning support - Implement Go service layer for job management - Add HTTP API endpoints for fine-tuning jobs - Integrate GGUF export functionality - Update CI/build configuration Signed-off-by: localai-bot <localai-bot@users.noreply.github.com>
Signed-off-by: team-coding-agent-2 <team-coding-agent-2@localhost>
Signed-off-by: localai-bot <localai-bot@users.noreply.github.com> Signed-off-by: team-coding-agent-2 <team-coding-agent-2@localhost>
The unsloth package requires the 'packaging' module for building flash-attn. Adding it explicitly to the requirements files for cublas12 and cublas13 builds. Signed-off-by: localai-bot <localai-bot@users.noreply.github.com> Signed-off-by: team-coding-agent-2 <team-coding-agent-2@localhost>
The flash-attn package requires the 'packaging' module during its build process, but doesn't declare it as a build dependency. Adding it as an install-time dependency ensures it's available before the unsloth package tries to build flash-attn. Signed-off-by: localai-bot <localai-bot@users.noreply.github.com> Signed-off-by: team-coding-agent-2 <team-coding-agent-2@localhost>
❌ Deploy Preview for localai failed.
|
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 addresses the multiple CI failures in PR #9126:
Investigating root causes and implementing fixes.