mirror of
https://github.com/mudler/LocalAI.git
synced 2026-07-30 18:09:05 -04:00
* feat(config): add model artifact source contract Assisted-by: Codex:GPT-5 [Codex] * feat(downloader): add authenticated raw-byte progress Assisted-by: Codex:GPT-5 [Codex] * feat(huggingface): resolve immutable snapshot manifests Assisted-by: Codex:GPT-5 [Codex] * feat(models): add artifact storage primitives Assisted-by: Codex:GPT-5 [Codex] * feat(models): materialize pinned Hugging Face snapshots Assisted-by: Codex:GPT-5 [Codex] * feat(models): bind managed snapshots at runtime Assisted-by: Codex:GPT-5 [Codex] * feat(gallery): materialize model artifacts during install Assisted-by: Codex:GPT-5 [Codex] * feat(gallery): declare managed Hugging Face artifacts Assisted-by: Codex:GPT-5 [Codex] * feat(models): preload managed model artifacts Assisted-by: Codex:GPT-5 [Codex] * fix(gallery): retain shared artifact caches on delete Assisted-by: Codex:GPT-5 [Codex] * feat(models): report artifact acquisition progress Assisted-by: Codex:GPT-5 [Codex] * refactor(backends): load managed models from ModelFile Assisted-by: Codex:GPT-5 [Codex] * refactor(backends): load staged speech model snapshots Assisted-by: Codex:GPT-5 [Codex] * refactor(backends): use staged snapshots in engine backends Assisted-by: Codex:GPT-5 [Codex] * test(distributed): cover staged artifact snapshots Assisted-by: Codex:GPT-5 [Codex] * docs: explain managed model artifacts Assisted-by: Codex:GPT-5 [Codex] * docs: add product design context Assisted-by: Codex:GPT-5 [Codex] * feat(ui): show model artifact download progress Assisted-by: Codex:GPT-5 [Codex] * Eagerly materialize Hugging Face artifacts Materialize HF-backed model references as managed GGUF artifacts during load, with lazy download retained only as fallback. Assisted-by: Codex:GPT-5 [shell] * Refactor HF downloads through a shared executor Assisted-by: Codex:GPT-5 [shell] * drop Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
112 lines
4.2 KiB
Go
112 lines
4.2 KiB
Go
package startup
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/mudler/LocalAI/core/config"
|
|
"github.com/mudler/LocalAI/core/gallery"
|
|
"github.com/mudler/LocalAI/core/gallery/importers"
|
|
"github.com/mudler/LocalAI/core/services/galleryop"
|
|
"github.com/mudler/LocalAI/pkg/model"
|
|
"github.com/mudler/LocalAI/pkg/system"
|
|
"github.com/mudler/LocalAI/pkg/utils"
|
|
"github.com/mudler/xlog"
|
|
)
|
|
|
|
// InstallModels will preload models from the given list of URLs and galleries
|
|
// It will download the model if it is not already present in the model path
|
|
// It will also try to resolve if the model is an embedded model YAML configuration
|
|
func InstallModels(ctx context.Context, galleryService *galleryop.GalleryService, galleries, backendGalleries []config.Gallery, systemState *system.SystemState, modelLoader *model.ModelLoader, enforceScan, autoloadBackendGalleries, requireBackendIntegrity bool, downloadStatus func(string, string, string, float64), models ...string) error {
|
|
// create an error that groups all errors
|
|
var err error
|
|
var installOptions []gallery.InstallOption
|
|
if galleryService != nil {
|
|
installOptions = append(installOptions, gallery.WithArtifactMaterializer(galleryService.ModelArtifactMaterializer()))
|
|
}
|
|
for _, url := range models {
|
|
// Check if it's a model gallery, or print a warning
|
|
e, found := installModel(ctx, galleries, backendGalleries, url, systemState, modelLoader, downloadStatus, enforceScan, autoloadBackendGalleries, requireBackendIntegrity, installOptions...)
|
|
if e != nil && found {
|
|
xlog.Error("[startup] failed installing model", "error", err, "model", url)
|
|
err = errors.Join(err, e)
|
|
} else if !found {
|
|
xlog.Debug("[startup] model not found in the gallery", "model", url)
|
|
|
|
if galleryService == nil {
|
|
return fmt.Errorf("cannot start autoimporter, not sure how to handle this uri")
|
|
}
|
|
|
|
// TODO: we should just use the discoverModelConfig here and default to this.
|
|
modelConfig, discoverErr := importers.DiscoverModelConfig(url, json.RawMessage{})
|
|
if discoverErr != nil {
|
|
xlog.Error("[startup] failed to discover model config", "error", discoverErr, "model", url)
|
|
err = errors.Join(discoverErr, fmt.Errorf("failed to discover model config: %w", err))
|
|
continue
|
|
}
|
|
|
|
uuid, uuidErr := uuid.NewUUID()
|
|
if uuidErr != nil {
|
|
err = errors.Join(uuidErr, fmt.Errorf("failed to generate UUID: %w", uuidErr))
|
|
continue
|
|
}
|
|
|
|
galleryService.ModelGalleryChannel <- galleryop.ManagementOp[gallery.GalleryModel, gallery.ModelConfig]{
|
|
Req: gallery.GalleryModel{
|
|
Overrides: map[string]any{},
|
|
},
|
|
ID: uuid.String(),
|
|
GalleryElementName: modelConfig.Name,
|
|
GalleryElement: &modelConfig,
|
|
BackendGalleries: backendGalleries,
|
|
}
|
|
|
|
var status *galleryop.OpStatus
|
|
// wait for op to finish
|
|
for {
|
|
status = galleryService.GetStatus(uuid.String())
|
|
if status != nil && status.Processed {
|
|
break
|
|
}
|
|
time.Sleep(1 * time.Second)
|
|
}
|
|
|
|
if status.Error != nil {
|
|
xlog.Error("[startup] failed to import model", "error", status.Error, "model", modelConfig.Name, "url", url)
|
|
return status.Error
|
|
}
|
|
|
|
xlog.Info("[startup] imported model", "model", modelConfig.Name, "url", url)
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func installModel(ctx context.Context, galleries, backendGalleries []config.Gallery, modelName string, systemState *system.SystemState, modelLoader *model.ModelLoader, downloadStatus func(string, string, string, float64), enforceScan, autoloadBackendGalleries, requireBackendIntegrity bool, options ...gallery.InstallOption) (error, bool) {
|
|
models, err := gallery.AvailableGalleryModels(galleries, systemState)
|
|
if err != nil {
|
|
return err, false
|
|
}
|
|
|
|
model := gallery.FindGalleryElement(models, modelName)
|
|
if model == nil {
|
|
return err, false
|
|
}
|
|
|
|
if downloadStatus == nil {
|
|
downloadStatus = utils.DisplayDownloadFunction
|
|
}
|
|
|
|
xlog.Info("installing model", "model", modelName, "license", model.License)
|
|
err = gallery.InstallModelFromGallery(ctx, galleries, backendGalleries, systemState, modelLoader, modelName, gallery.GalleryModel{}, downloadStatus, enforceScan, autoloadBackendGalleries, requireBackendIntegrity, options...)
|
|
if err != nil {
|
|
return err, true
|
|
}
|
|
|
|
return nil, true
|
|
}
|