-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add/websocket #143
Add/websocket #143
Conversation
…testcases updated accordingly
…tion as input + minor refactorings to be more generalized
…ing` module in order to make it more accessbile
I will update |
@sepandhaghighi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AHReccese
Everything looks good to me for now 💯
But remember that we need to manage the versions of pydantic
and scipy
in the future. If we cannot control their latest versions in the dev-requirements.txt
, we should remove them from PyMilo requirement files.
Reference Issues/PRs
#41
In this PR, the ability to use websocket as the communication medium for both client and server side is implemented. but as you know, websocket brings asynchronous context to the board and we do have the ability to let user define for example 3 ml models and push the fit function to the server and wait till get them done. but we need to design a proper mechanism for this purpose. right now it the underlying medium is using websocket and the point is for example that there is one connection instead of connection creation per request to server (like REST protocol).
What does this implement/fix? Explain your changes.
Any other comments?