gnes-ai/gnes

How to access gRPCFrontend??

anshoomehra opened this issue · 1 comments

Team: Great work!

I am able to run Docker Swarm Stack with all the mentioned services running successfully. However, I am not familiar with gPRC, how do I make use of this frontend to pass the documents for ingestion and further query ??

I am familiar with Python, fyi. Also, I see that you have HTTP end-to-end in works, if there is a beta ready, I would love to try and provide early feedback for you!!

Thank you!

Hi @anshoomehra

CMIIW

as the author answer in
#355 (comment)

this project is created for not only python client. It is possible to use it with Java, javascript, or go, client.
So to make this project universal, they need to use it with bytes, not a python data type.
we can not pass byte via HTTP. So this project use HTTP/2 which is gRPC to passing bytes.

Thanks