To the best of my knowledge, the pinecone text client is only available for python. Would it be possible to make it available as a node package?
hi @lele
Roy from the team behind this package
May I ask what parts you intend to use? does it have to be a package or maybe running those capabilities as-a-service and calling them from the node application is also good?
Best
Hi @roy,
Thanks for your quick reply. I would like to use the package to dynamically create sparse vectors in the backend of an application, so I only need the BM25Encoder method. In this case, I would have to use BM25Encoder.default() because it would not be feasible to fit the encoder on my own documents during runtime. So actually, posting the text that needs to be encoded to an endpoint would probably be the better solution, especially if this would allow me to fit the encoder on the data in my index.
All the best