prediction_service.proto 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.aiplatform.v1beta1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/httpbody.proto";
  20. import "google/api/resource.proto";
  21. import "google/cloud/aiplatform/v1beta1/explanation.proto";
  22. import "google/protobuf/struct.proto";
  23. option csharp_namespace = "Google.Cloud.AIPlatform.V1Beta1";
  24. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1beta1;aiplatform";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "PredictionServiceProto";
  27. option java_package = "com.google.cloud.aiplatform.v1beta1";
  28. option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1";
  29. option ruby_package = "Google::Cloud::AIPlatform::V1beta1";
  30. // A service for online predictions and explanations.
  31. service PredictionService {
  32. option (google.api.default_host) = "aiplatform.googleapis.com";
  33. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  34. // Perform an online prediction.
  35. rpc Predict(PredictRequest) returns (PredictResponse) {
  36. option (google.api.http) = {
  37. post: "/v1beta1/{endpoint=projects/*/locations/*/endpoints/*}:predict"
  38. body: "*"
  39. };
  40. option (google.api.method_signature) = "endpoint,instances,parameters";
  41. }
  42. // Perform an online prediction with an arbitrary HTTP payload.
  43. //
  44. // The response includes the following HTTP headers:
  45. //
  46. // * `X-Vertex-AI-Endpoint-Id`: ID of the [Endpoint][google.cloud.aiplatform.v1beta1.Endpoint] that served this
  47. // prediction.
  48. //
  49. // * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's [DeployedModel][google.cloud.aiplatform.v1beta1.DeployedModel]
  50. // that served this prediction.
  51. rpc RawPredict(RawPredictRequest) returns (google.api.HttpBody) {
  52. option (google.api.http) = {
  53. post: "/v1beta1/{endpoint=projects/*/locations/*/endpoints/*}:rawPredict"
  54. body: "*"
  55. };
  56. option (google.api.method_signature) = "endpoint,http_body";
  57. }
  58. // Perform an online explanation.
  59. //
  60. // If [deployed_model_id][google.cloud.aiplatform.v1beta1.ExplainRequest.deployed_model_id] is specified,
  61. // the corresponding DeployModel must have
  62. // [explanation_spec][google.cloud.aiplatform.v1beta1.DeployedModel.explanation_spec]
  63. // populated. If [deployed_model_id][google.cloud.aiplatform.v1beta1.ExplainRequest.deployed_model_id]
  64. // is not specified, all DeployedModels must have
  65. // [explanation_spec][google.cloud.aiplatform.v1beta1.DeployedModel.explanation_spec]
  66. // populated. Only deployed AutoML tabular Models have
  67. // explanation_spec.
  68. rpc Explain(ExplainRequest) returns (ExplainResponse) {
  69. option (google.api.http) = {
  70. post: "/v1beta1/{endpoint=projects/*/locations/*/endpoints/*}:explain"
  71. body: "*"
  72. };
  73. option (google.api.method_signature) = "endpoint,instances,parameters,deployed_model_id";
  74. }
  75. }
  76. // Request message for [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict].
  77. message PredictRequest {
  78. // Required. The name of the Endpoint requested to serve the prediction.
  79. // Format:
  80. // `projects/{project}/locations/{location}/endpoints/{endpoint}`
  81. string endpoint = 1 [
  82. (google.api.field_behavior) = REQUIRED,
  83. (google.api.resource_reference) = {
  84. type: "aiplatform.googleapis.com/Endpoint"
  85. }
  86. ];
  87. // Required. The instances that are the input to the prediction call.
  88. // A DeployedModel may have an upper limit on the number of instances it
  89. // supports per request, and when it is exceeded the prediction call errors
  90. // in case of AutoML Models, or, in case of customer created Models, the
  91. // behaviour is as documented by that Model.
  92. // The schema of any single instance may be specified via Endpoint's
  93. // DeployedModels' [Model's][google.cloud.aiplatform.v1beta1.DeployedModel.model]
  94. // [PredictSchemata's][google.cloud.aiplatform.v1beta1.Model.predict_schemata]
  95. // [instance_schema_uri][google.cloud.aiplatform.v1beta1.PredictSchemata.instance_schema_uri].
  96. repeated google.protobuf.Value instances = 2 [(google.api.field_behavior) = REQUIRED];
  97. // The parameters that govern the prediction. The schema of the parameters may
  98. // be specified via Endpoint's DeployedModels' [Model's ][google.cloud.aiplatform.v1beta1.DeployedModel.model]
  99. // [PredictSchemata's][google.cloud.aiplatform.v1beta1.Model.predict_schemata]
  100. // [parameters_schema_uri][google.cloud.aiplatform.v1beta1.PredictSchemata.parameters_schema_uri].
  101. google.protobuf.Value parameters = 3;
  102. }
  103. // Response message for [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict].
  104. message PredictResponse {
  105. // The predictions that are the output of the predictions call.
  106. // The schema of any single prediction may be specified via Endpoint's
  107. // DeployedModels' [Model's ][google.cloud.aiplatform.v1beta1.DeployedModel.model]
  108. // [PredictSchemata's][google.cloud.aiplatform.v1beta1.Model.predict_schemata]
  109. // [prediction_schema_uri][google.cloud.aiplatform.v1beta1.PredictSchemata.prediction_schema_uri].
  110. repeated google.protobuf.Value predictions = 1;
  111. // ID of the Endpoint's DeployedModel that served this prediction.
  112. string deployed_model_id = 2;
  113. // Output only. The resource name of the Model which is deployed as the DeployedModel that
  114. // this prediction hits.
  115. string model = 3 [
  116. (google.api.field_behavior) = OUTPUT_ONLY,
  117. (google.api.resource_reference) = {
  118. type: "aiplatform.googleapis.com/Model"
  119. }
  120. ];
  121. // Output only. The version ID of the Model which is deployed as the DeployedModel that
  122. // this prediction hits.
  123. string model_version_id = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  124. // Output only. The [display name][google.cloud.aiplatform.v1beta1.Model.display_name] of the Model which is deployed as
  125. // the DeployedModel that this prediction hits.
  126. string model_display_name = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  127. }
  128. // Request message for [PredictionService.RawPredict][google.cloud.aiplatform.v1beta1.PredictionService.RawPredict].
  129. message RawPredictRequest {
  130. // Required. The name of the Endpoint requested to serve the prediction.
  131. // Format:
  132. // `projects/{project}/locations/{location}/endpoints/{endpoint}`
  133. string endpoint = 1 [
  134. (google.api.field_behavior) = REQUIRED,
  135. (google.api.resource_reference) = {
  136. type: "aiplatform.googleapis.com/Endpoint"
  137. }
  138. ];
  139. // The prediction input. Supports HTTP headers and arbitrary data payload.
  140. //
  141. // A [DeployedModel][google.cloud.aiplatform.v1beta1.DeployedModel] may have an upper limit on the number of instances it
  142. // supports per request. When this limit it is exceeded for an AutoML model,
  143. // the [RawPredict][google.cloud.aiplatform.v1beta1.PredictionService.RawPredict] method returns an error.
  144. // When this limit is exceeded for a custom-trained model, the behavior varies
  145. // depending on the model.
  146. //
  147. // You can specify the schema for each instance in the
  148. // [predict_schemata.instance_schema_uri][google.cloud.aiplatform.v1beta1.PredictSchemata.instance_schema_uri]
  149. // field when you create a [Model][google.cloud.aiplatform.v1beta1.Model]. This schema applies when you deploy the
  150. // `Model` as a `DeployedModel` to an [Endpoint][google.cloud.aiplatform.v1beta1.Endpoint] and use the `RawPredict`
  151. // method.
  152. google.api.HttpBody http_body = 2;
  153. }
  154. // Request message for [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain].
  155. message ExplainRequest {
  156. // Required. The name of the Endpoint requested to serve the explanation.
  157. // Format:
  158. // `projects/{project}/locations/{location}/endpoints/{endpoint}`
  159. string endpoint = 1 [
  160. (google.api.field_behavior) = REQUIRED,
  161. (google.api.resource_reference) = {
  162. type: "aiplatform.googleapis.com/Endpoint"
  163. }
  164. ];
  165. // Required. The instances that are the input to the explanation call.
  166. // A DeployedModel may have an upper limit on the number of instances it
  167. // supports per request, and when it is exceeded the explanation call errors
  168. // in case of AutoML Models, or, in case of customer created Models, the
  169. // behaviour is as documented by that Model.
  170. // The schema of any single instance may be specified via Endpoint's
  171. // DeployedModels' [Model's][google.cloud.aiplatform.v1beta1.DeployedModel.model]
  172. // [PredictSchemata's][google.cloud.aiplatform.v1beta1.Model.predict_schemata]
  173. // [instance_schema_uri][google.cloud.aiplatform.v1beta1.PredictSchemata.instance_schema_uri].
  174. repeated google.protobuf.Value instances = 2 [(google.api.field_behavior) = REQUIRED];
  175. // The parameters that govern the prediction. The schema of the parameters may
  176. // be specified via Endpoint's DeployedModels' [Model's ][google.cloud.aiplatform.v1beta1.DeployedModel.model]
  177. // [PredictSchemata's][google.cloud.aiplatform.v1beta1.Model.predict_schemata]
  178. // [parameters_schema_uri][google.cloud.aiplatform.v1beta1.PredictSchemata.parameters_schema_uri].
  179. google.protobuf.Value parameters = 4;
  180. // If specified, overrides the
  181. // [explanation_spec][google.cloud.aiplatform.v1beta1.DeployedModel.explanation_spec] of the DeployedModel.
  182. // Can be used for explaining prediction results with different
  183. // configurations, such as:
  184. // - Explaining top-5 predictions results as opposed to top-1;
  185. // - Increasing path count or step count of the attribution methods to reduce
  186. // approximate errors;
  187. // - Using different baselines for explaining the prediction results.
  188. ExplanationSpecOverride explanation_spec_override = 5;
  189. // If specified, this ExplainRequest will be served by the chosen
  190. // DeployedModel, overriding [Endpoint.traffic_split][google.cloud.aiplatform.v1beta1.Endpoint.traffic_split].
  191. string deployed_model_id = 3;
  192. }
  193. // Response message for [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain].
  194. message ExplainResponse {
  195. // The explanations of the Model's [PredictResponse.predictions][google.cloud.aiplatform.v1beta1.PredictResponse.predictions].
  196. //
  197. // It has the same number of elements as [instances][google.cloud.aiplatform.v1beta1.ExplainRequest.instances]
  198. // to be explained.
  199. repeated Explanation explanations = 1;
  200. // ID of the Endpoint's DeployedModel that served this explanation.
  201. string deployed_model_id = 2;
  202. // The predictions that are the output of the predictions call.
  203. // Same as [PredictResponse.predictions][google.cloud.aiplatform.v1beta1.PredictResponse.predictions].
  204. repeated google.protobuf.Value predictions = 3;
  205. }