mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-20 10:35:01 +00:00

* fix list model service and welcome Signed-off-by: Dave Lee <dave@gray101.com> * comment Signed-off-by: Dave Lee <dave@gray101.com> --------- Signed-off-by: Dave Lee <dave@gray101.com>
51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
package services
|
|
|
|
import (
|
|
"github.com/mudler/LocalAI/core/config"
|
|
"github.com/mudler/LocalAI/pkg/model"
|
|
)
|
|
|
|
type LooseFilePolicy int
|
|
|
|
const (
|
|
LOOSE_ONLY LooseFilePolicy = iota
|
|
SKIP_IF_CONFIGURED
|
|
SKIP_ALWAYS
|
|
ALWAYS_INCLUDE
|
|
)
|
|
|
|
func ListModels(bcl *config.BackendConfigLoader, ml *model.ModelLoader, filter config.BackendConfigFilterFn, looseFilePolicy LooseFilePolicy) ([]string, error) {
|
|
|
|
var skipMap map[string]interface{} = map[string]interface{}{}
|
|
|
|
dataModels := []string{}
|
|
|
|
// Start with known configurations
|
|
|
|
for _, c := range bcl.GetBackendConfigsByFilter(filter) {
|
|
// Is this better than looseFilePolicy <= SKIP_IF_CONFIGURED ? less performant but more readable?
|
|
if (looseFilePolicy == SKIP_IF_CONFIGURED) || (looseFilePolicy == LOOSE_ONLY) {
|
|
skipMap[c.Model] = nil
|
|
}
|
|
if looseFilePolicy != LOOSE_ONLY {
|
|
dataModels = append(dataModels, c.Name)
|
|
}
|
|
}
|
|
|
|
// Then iterate through the loose files if requested.
|
|
if looseFilePolicy != SKIP_ALWAYS {
|
|
|
|
models, err := ml.ListFilesInModelPath()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, m := range models {
|
|
// And only adds them if they shouldn't be skipped.
|
|
if _, exists := skipMap[m]; !exists && filter(m, nil) {
|
|
dataModels = append(dataModels, m)
|
|
}
|
|
}
|
|
}
|
|
|
|
return dataModels, nil
|
|
}
|