mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-24 04:25:00 +00:00
Small fixup to template loading
This commit is contained in:
parent
b710147b95
commit
4a932483e1
1 changed files with 2 additions and 1 deletions
|
@ -62,6 +62,7 @@ func (ml *ModelLoader) LoadModel(modelName string, opts ...llama.ModelOption) (*
|
||||||
if _, err := os.Stat(modelBin); os.IsNotExist(err) {
|
if _, err := os.Stat(modelBin); os.IsNotExist(err) {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else {
|
} else {
|
||||||
|
modelName = fmt.Sprintf("%s.bin", modelName)
|
||||||
modelFile = modelBin
|
modelFile = modelBin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,7 +88,7 @@ func (ml *ModelLoader) LoadModel(modelName string, opts ...llama.ModelOption) (*
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
ml.promptsTemplates[modelFile] = tmpl
|
ml.promptsTemplates[modelName] = tmpl
|
||||||
}
|
}
|
||||||
|
|
||||||
ml.models[modelFile] = model
|
ml.models[modelFile] = model
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue