ext_server_windows.go 540 Bytes
Newer Older
1
2
3
package llm

import (
4
5
	"fmt"

6
7
8
	"github.com/jmorganca/ollama/api"
)

Jeffrey Morgan's avatar
Jeffrey Morgan committed
9
func newDefaultExtServer(model string, adapters, projectors []string, opts api.Options) (extServer, error) {
10
11
12
	// On windows we always load the llama.cpp libraries dynamically to avoid startup DLL dependencies
	// This ensures we can update the PATH at runtime to get everything loaded

13
14
	// This should never happen as we'll always try to load one or more cpu dynamic libaries before hitting default
	return nil, fmt.Errorf("no available default llm library on windows")
15
}