Merge branch 'master' of https://gitlink.org.cn/JointCloud/pcm-coordinator
# Conflicts: # api/desc/core/pcm-core.api Former-commit-id: e6ab78097d94be6b3454fdd06ee3539c0eb92e98
This commit is contained in:
commit
4a1bdc268e
File diff suppressed because it is too large
Load Diff
|
@ -745,7 +745,7 @@ func (s *ShuguangAi) GetImageInferUrl(ctx context.Context, option *option.InferO
|
||||||
}
|
}
|
||||||
imageUrl := &collector.ImageInferUrl{
|
imageUrl := &collector.ImageInferUrl{
|
||||||
Url: urlResp.Url,
|
Url: urlResp.Url,
|
||||||
Card: option.ComputeCard,
|
Card: "dcu",
|
||||||
}
|
}
|
||||||
imageUrls = append(imageUrls, imageUrl)
|
imageUrls = append(imageUrls, imageUrl)
|
||||||
|
|
||||||
|
|
|
@ -1183,14 +1183,16 @@ type TaskStatusResp struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type TaskDetailsResp struct {
|
type TaskDetailsResp struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
StartTime string `json:"startTime"`
|
StartTime string `json:"startTime"`
|
||||||
EndTime string `json:"endTime"`
|
EndTime string `json:"endTime"`
|
||||||
Strategy int64 `json:"strategy"`
|
Strategy int64 `json:"strategy"`
|
||||||
SynergyStatus int64 `json:"synergyStatus"`
|
SynergyStatus int64 `json:"synergyStatus"`
|
||||||
ClusterInfos []*ClusterInfo `json:"clusterInfos"`
|
ClusterInfos []*ClusterInfo `json:"clusterInfos"`
|
||||||
SubTaskInfos []*SubTaskInfo `json:"subTaskInfos"`
|
SubTaskInfos []*SubTaskInfo `json:"subTaskInfos"`
|
||||||
|
TaskTypeDict string `json:"taskTypeDict"`
|
||||||
|
AdapterTypeDict string `json:"adapterTypeDict"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type SubTaskInfo struct {
|
type SubTaskInfo struct {
|
||||||
|
|
Loading…
Reference in New Issue