فهرست منبع

fix windows build

Jeffrey Morgan 1 سال پیش
والد
کامیت
18ddf6d57d
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      llm/ext_server_windows.go

+ 2 - 2
llm/ext_server_windows.go

@@ -4,9 +4,9 @@ import (
 	"github.com/jmorganca/ollama/api"
 	"github.com/jmorganca/ollama/api"
 )
 )
 
 
-func newDefaultExtServer(model string, adapters, projectors []string, numLayers int64, opts api.Options) (extServer, error) {
+func newDefaultExtServer(model string, adapters, projectors []string, opts api.Options) (extServer, error) {
 	// On windows we always load the llama.cpp libraries dynamically to avoid startup DLL dependencies
 	// 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
 	// This ensures we can update the PATH at runtime to get everything loaded
 
 
-	return newDynamicShimExtServer(AvailableShims["cpu"], model, adapters, projectors, numLayers, opts)
+	return newDynamicShimExtServer(AvailableShims["cpu"], model, adapters, projectors, opts)
 }
 }