forked from JointCloud/pcm-coordinator
parent
a6ce316c73
commit
343e0d5b74
|
@ -1740,8 +1740,8 @@ PayloadCreateTrainJob{
|
|||
}
|
||||
|
||||
TrainingTaskStatResp {
|
||||
Running string `json:"running"`
|
||||
Total string `json:"total"`
|
||||
Running int32 `json:"running"`
|
||||
Total int32 `json:"total"`
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
@ -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"`
|
||||
}
|
||||
)
|
||||
|
|
|
@ -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"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue