mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-16 02:51:45 +00:00
Move from chroma to sqlitevec with local embedding
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
//go:build linux && arm64
|
||||
|
||||
package embedding
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed assets/lib/linux-arm64/libonnxruntime.so
|
||||
var onnxRuntimeLib []byte
|
||||
|
||||
//go:embed assets/lib/linux-arm64/libonnxruntime_providers_shared.so
|
||||
var onnxRuntimeProvidersLib []byte
|
||||
|
||||
const onnxRuntimeLibName = "libonnxruntime.so"
|
||||
const onnxRuntimeProvidersLibName = "libonnxruntime_providers_shared.so"
|
||||
Reference in New Issue
Block a user