ryjiang

Results 241 comments of ryjiang

I think you can search with mulitple vectors. ```javascript client.search({ collection_name: 'my_collection', data: [vector1, vector2], limit: 5 }) ; ```

Well, the current Node SDK allows you to search multiple vectors across an entire collection. However, the feature you're referring to, where a single collection can have two or more...

> I'm not an expert on both nodejs and python but what about another wrapper? > > @SimFG @aacitelli @shanghaikid (https://www.npmjs.com/package/node-calls-python) From performance perspective, calling python from nodejs is not...

> > does it really matters for a 100ms responses? > > Agree that performance shouldn't be a primary concern, more just a bonus. Seems to me like, seeing as...

2.4 version has been released. ``` javascript import { RRFRanker, WeightedRanker } from '@zilliz/milvus2-sdk-node'; // single-vector search on a collection with multiple vector fields const search = await milvusClient.search({ collection_name:...

Do you really need this feature? if so, I will add it later.

> @shanghaikid well, if there is a workaround where I can return more than `16384` items ( if a collection contains so ) with the `milvusClient.search`, do let me know....

> @shanghaikid Awesome - thanks. If you could republish @zilliz/milvus2-sdk-node via npm then as well, please. That'd be great. I am using package managers to install it. Of course, but...

> Hi, What is the status of the issue? It would be nice to has the iterator for search and query sorry, it's on hold,I've finished the query iterator, but...

can you give me your case, I can do some extra testing specifically for your case, like what's your schema, which metric do you like to use?