updated deployinstancestat rpcs

This commit is contained in:
tzwang 2024-07-25 14:56:46 +08:00
parent 4fca3dba57
commit 45719ef937
3 changed files with 12 additions and 12 deletions

View File

@ -1740,8 +1740,8 @@ PayloadCreateTrainJob{
}
TrainingTaskStatResp {
Running string `json:"running"`
Total string `json:"total"`
Running int32 `json:"running"`
Total int32 `json:"total"`
}
)

View File

@ -108,14 +108,14 @@ type (
}
DeployInstanceStatResp {
Running string `json:"running"`
Total string `json:"total"`
Running int32 `json:"running"`
Total int32 `json:"total"`
}
InferenceTaskStatReq {}
InferenceTaskStatResp {
Running string `json:"running"`
Total string `json:"total"`
Running int32 `json:"running"`
Total int32 `json:"total"`
}
)

View File

@ -2903,8 +2903,8 @@ type AiTask struct {
}
type TrainingTaskStatResp struct {
Running string `json:"running"`
Total string `json:"total"`
Running int32 `json:"running"`
Total int32 `json:"total"`
}
type ChatReq struct {
@ -5999,14 +5999,14 @@ type DeployInstanceStatReq struct {
}
type DeployInstanceStatResp struct {
Running string `json:"running"`
Total string `json:"total"`
Running int32 `json:"running"`
Total int32 `json:"total"`
}
type InferenceTaskStatReq struct {
}
type InferenceTaskStatResp struct {
Running string `json:"running"`
Total string `json:"total"`
Running int32 `json:"running"`
Total int32 `json:"total"`
}