LMStudio 0 value embeddings patch (#4084)

patch lmstudio encoding_format to fix all embeddings as 0 value
This commit is contained in:
Sean Hatfield
2025-07-01 18:05:58 -07:00
committed by GitHub
parent 07129e81f8
commit fc55baf69a

View File

@@ -63,6 +63,7 @@ class LMStudioEmbedder {
.create({
model: this.model,
input: chunk,
encoding_format: "base64",
})
.then((result) => {
const embedding = result.data?.[0]?.embedding;