mirror of
https://github.com/LukeHagar/LocalAI.git
synced 2025-12-07 12:37:48 +00:00
feat: allow to specify default backend for model (#156)
Signed-off-by: mudler <mudler@c3os.io>
This commit is contained in:
committed by
GitHub
parent
70caf9bf8c
commit
1ae7150810
@@ -119,7 +119,9 @@ func updateConfig(config *Config, input *OpenAIRequest) {
|
||||
|
||||
switch stop := input.Stop.(type) {
|
||||
case string:
|
||||
config.StopWords = append(config.StopWords, stop)
|
||||
if stop != "" {
|
||||
config.StopWords = append(config.StopWords, stop)
|
||||
}
|
||||
case []string:
|
||||
config.StopWords = append(config.StopWords, stop...)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user