Disclosure: Every other language developer, new to python
In looking at the ray serve examples and some of the blogs, it seems “everything” is globbed into one file (the fastapi, the ray init, the ray served “model” that wraps some other ML model like Resnet or whatever. As I’m building out a proof of concept app to show ray’s capabilities, I’m trying to build it in a organized, separation of responsibility way, but in the python “way”. To that end, I have an “api” package, “classify” package, and then a ray package, where the main app uses the api module, which uses the classify module which uses the ray module. Well that’s the plan. Just wondering if anyone has built or an example of a “modularized” ray serve app and or has any recommendations? If that is too vague of a question or if a sample of how I’m layout the code (conceptually right now) , I can put up a repo