the-algorithm/navi/navi/proto/tensorflow_serving/apis/model_service.proto
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

25 lines
961 B
Protocol Buffer

syntax = "proto3";
option cc_enable_arenas = true;
import "tensorflow_serving/apis/get_model_status.proto";
import "tensorflow_serving/apis/model_management.proto";
package tensorflow.serving;
// ModelService provides methods to query and update the state of the server,
// e.g. which models/versions are being served.
service ModelService {
// Gets status of model. If the ModelSpec in the request does not specify
// version, information about all versions of the model will be returned. If
// the ModelSpec in the request does specify a version, the status of only
// that version will be returned.
rpc GetModelStatus(GetModelStatusRequest) returns (GetModelStatusResponse);
// Reloads the set of served models. The new config supersedes the old one,
// so if a model is omitted from the new config it will be unloaded and no
// longer served.
rpc HandleReloadConfigRequest(ReloadConfigRequest)
returns (ReloadConfigResponse);
}