mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 15:00:57 +03:00
fix: Fix [object Object] sent to milvus on search (#3336)
This commit is contained in:
@@ -364,7 +364,7 @@ const similaritySearchVectorWithScore = async (query: number[], k: number, vecto
|
||||
anns_field: vectorStore.vectorField,
|
||||
topk: k.toString(),
|
||||
metric_type: vectorStore.indexCreateParams.metric_type,
|
||||
params: vectorStore.indexSearchParams
|
||||
params: vectorStore.indexSearchParams.toString()
|
||||
}
|
||||
const searchResp = await vectorStore.client.search({
|
||||
collection_name: vectorStore.collectionName,
|
||||
|
||||
Reference in New Issue
Block a user