diff --git a/desc/inference/inference.api b/desc/inference/inference.api index cbcd0030..c58b1dc1 100644 --- a/desc/inference/inference.api +++ b/desc/inference/inference.api @@ -158,6 +158,7 @@ type ( GetRunningInstanceReq { Id string `form:"deployTaskId"` + AdapterId string `form:"adapterId"` } GetRunningInstanceResp { List interface{} `json:"list"` diff --git a/internal/types/types.go b/internal/types/types.go index 9ba67844..a5fe2f86 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -6053,7 +6053,8 @@ type StopAllByDeployTaskIdResp struct { } type GetRunningInstanceReq struct { - Id string `form:"deployTaskId"` + Id string `form:"deployTaskId"` + AdapterId string `form:"adapterId"` } type GetRunningInstanceResp struct {