-
Notifications
You must be signed in to change notification settings - Fork 55
Description
Is your feature request related to a problem? Please describe.
We are building the serving solution for DL logic using Pytriton at work. We ourselves would like to separate the client stubs from the server logic as separate packages. The idea is that the users of our models use the client package, which does not have all the heavy dependencies our server code has.
Unfortunately, if we implement our client code using pytriton
, the entire pytriton
becomes a dependency, which includes Triton inference server itself and cuda-python
package. Installing those dependencies would be a major inconvenience for the client package users and an entirely unnecessary one since neither of those heavy dependencies is actually used in the pytriton.client
code implementation.
Describe the solution you'd like
It would be great and elegant if pytriton.client
submodule was in a separate package, e.g. nvidia-pytriton-client
, which nvidia-pytriton
could depend upon. nvidia-pytriton-client
itself would not require inclusion of Triton server in the wheel; the tritonclient
dependency could also be reduced for it from tritonclient[all]
to tritonclient[grpc, http]
(removing cuda
dependency group). This will allow our derived client package for our service to be very light in dependencies. I am quite sure that this will be very useful for other projects facing similar problems.
Describe alternatives you've considered
Alternatively, nvidia-pytriton
package itself can by default go without Triton server and tritonclient[cuda]
dependencies, which would only be included if the optional dependency group is provided (e.g. nvidia-pytriton[all]
).
Additional context
If the core maintainers have no time to do so, I could prepare a pull request myself, since it seems to be a straightforward refactoring; however, such PR should be synchronized with your workflow with great care, since it alters the packaging structure and hence any CI you might have.