Skip to content

Commit

Permalink
fix wrong metadata assignment in MilvusProvider (#2870)
Browse files Browse the repository at this point in the history
fixed wrong metadata assignment
  • Loading branch information
wolfganghuse authored Dec 18, 2024
1 parent d54b5df commit af70342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils/vectorDbProviders/milvus/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ const Milvus = {
data: chunk.map((item) => ({
id: item.id,
vector: item.values,
metadata: chunk.metadata,
metadata: item.metadata,
})),
});

Expand Down

0 comments on commit af70342

Please sign in to comment.