You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.
When a model or dataset registers itself to the server currently, it only sends its name and the localhost port it is connecting to currently. The request data is received in the form of a MicroserviceConnection Pydantic object, which can be found in server/dependency.py. When making the changes, you can modify the MicroserviceConnection object and its fields, which will then change what the endpoint can accept.
When these changes are made server-side, equivalent changes should be made in the microservice templates Here and Here
Enhancements that should be made:
Instead of sending port, send connection URL. (for example: 'http://localhost:5000' instead of '5000')
Add a new description field to describe the microservice that is connected
Modify existing usages of the connections to now work with the enhanced data that is being sent.
The text was updated successfully, but these errors were encountered:
When a model or dataset registers itself to the server currently, it only sends its name and the localhost port it is connecting to currently. The request data is received in the form of a
MicroserviceConnection
Pydantic object, which can be found inserver/dependency.py
. When making the changes, you can modify theMicroserviceConnection
object and its fields, which will then change what the endpoint can accept.When these changes are made server-side, equivalent changes should be made in the microservice templates Here and Here
Enhancements that should be made:
The text was updated successfully, but these errors were encountered: