Revert "Enable Ollama engine by default" (#13481)

This reverts commit 56f754f46b87749581f73ef3625314bb0e51bfed.
This commit is contained in:
Daniel Hiltgen
2025-12-15 09:55:45 -08:00
committed by GitHub
parent 4ff8a691bc
commit abe67acf8a
2 changed files with 3 additions and 3 deletions

View File

@@ -143,7 +143,7 @@ func NewLlamaServer(systemInfo ml.SystemInfo, gpus []ml.DeviceInfo, modelPath st
var llamaModel *llama.Model
var textProcessor model.TextProcessor
var err error
if envconfig.NewEngine(true) || f.KV().OllamaEngineRequired() {
if envconfig.NewEngine() || f.KV().OllamaEngineRequired() {
if len(projectors) == 0 {
textProcessor, err = model.NewTextProcessor(modelPath)
} else {