You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would like to create collection, store vectors, search, query and delete embeddings on Milvus-Lite (Embedded Vector Store like pymilvus).
For Example using Python:
frompymilvusimportMilvusClientimportnumpyasnpclient=MilvusClient("./milvus_demo.db")
client.create_collection(
collection_name="demo_collection",
dimension=384# The vectors we will use in this demo has 384 dimensions
)
Here I don't need a Milvus Standalone server. Would like to do same in TypeScript as well using @zilliz/milvus2-sdk-node or some other way.
Thus, wondering Milvus-Lite is not support for TypeScript/JavaScript.
Describe a specific use case for the feature:
I'm working on VSCode Plugin which is written in TypeScript. Have to build RAG functionality for which I need "embedding vector store" for Local Context (No remote).
Alternative solution were FaissStore or LanceDB but want to confirm of Milvus-Lite is supported for TS/JS
The text was updated successfully, but these errors were encountered:
Is Milvus team going to support this feature for milvus-sdk-node in near future? or Is this something which can be contributed from outside if it adds value?
I am looking at the source code, https://github.com/milvus-io/milvus-lite/tree/main/src. It looks like a completely new project, and I am not sure it is portable from cpp to typescript. I will ask the milvus team later.
Describe the feature:
For Example using Python:
Here I don't need a Milvus Standalone server. Would like to do same in TypeScript as well using
@zilliz/milvus2-sdk-node
or some other way.Here address field is required
milvus-sdk-node/milvus/types/Client.ts
Line 17 in 3448094
Thus, wondering Milvus-Lite is not support for TypeScript/JavaScript.
Describe a specific use case for the feature:
The text was updated successfully, but these errors were encountered: