mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-09 23:59:40 +00:00
Add windows embeddings as well.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
//go:build windows
|
||||
|
||||
package embedding
|
||||
|
||||
// Windows doesn't need the providers shared library
|
||||
var onnxRuntimeProvidersLib []byte
|
||||
|
||||
const onnxRuntimeProvidersLibName = ""
|
||||
@@ -0,0 +1,12 @@
|
||||
//go:build windows && amd64
|
||||
|
||||
package embedding
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed assets/lib/windows-amd64/onnxruntime.dll
|
||||
var onnxRuntimeLib []byte
|
||||
|
||||
const onnxRuntimeLibName = "onnxruntime.dll"
|
||||
Reference in New Issue
Block a user