Move from chroma to sqlitevec with local embedding

This commit is contained in:
2025-12-16 11:28:26 +00:00
parent 6c28ecb22a
commit 7fe679f83b
25 changed files with 31649 additions and 1161 deletions
+16
View File
@@ -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"