Skip to content

Commit

Permalink
Merge 2973bb9 into 50239ff
Browse files Browse the repository at this point in the history
  • Loading branch information
heiruwu authored Dec 12, 2024
2 parents 50239ff + 2973bb9 commit 6437dea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions model/model/v1alpha/model.proto
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ message ReadinessResponse {
// Region describes the supported cloud provider and regions, with
// their supported GPU respectively.
message Region {
// Concate name of provider and region
// Concatenate name of provider and region
string region_name = 1;
// Hardware describes the available hardware types in this region
repeated Hardware hardware = 2;
Expand Down Expand Up @@ -200,8 +200,8 @@ message Model {
(google.api.field_behavior) = REQUIRED,
(google.api.field_behavior) = IMMUTABLE
];
// Hardware of choice to serve the model.
string hardware = 19 [(google.api.field_behavior) = REQUIRED];
// Deleted Fields.
reserved 19;
// README holds the model documentation.
optional string readme = 20 [(google.api.field_behavior) = OPTIONAL];
// A link to the source code of the model (e.g. to a GitHub repository).
Expand All @@ -228,6 +228,8 @@ message Model {
repeated string versions = 31 [(google.api.field_behavior) = OUTPUT_ONLY];
// Statistic data.
Stats stats = 32 [(google.api.field_behavior) = OUTPUT_ONLY];
// Hardware of choice to serve the model.
Hardware hardware = 33 [(google.api.field_behavior) = REQUIRED];
}

// ListModelsRequest represents a request to list models.
Expand Down

0 comments on commit 6437dea

Please sign in to comment.