added pcm-schedule api

This commit is contained in:
tzwang 2025-04-30 10:50:34 +08:00
parent 7571b341e8
commit 9afda659a3
5 changed files with 6865 additions and 7056 deletions

View File

@ -259,5 +259,6 @@ type (
CreateInferenceTaskResp { CreateInferenceTaskResp {
TaskId string `json:"taskId"` TaskId string `json:"taskId"`
TaskName string `json:"taskName"`
} }
) )

View File

@ -411,7 +411,7 @@ service pcm {
@doc "文本识别" @doc "文本识别"
@handler ChatHandler @handler ChatHandler
post /ai/chat (ChatReq) returns (ChatResult) post /ai/chat (ChatReq) returns (ChatResult)
/******chat end***********/ /******chat end***********/
} }
//screen接口 //screen接口
@ -1100,5 +1100,4 @@ service pcm {
@handler scheduleSituationHandler @handler scheduleSituationHandler
get /monitoring/schedule/situation returns (scheduleSituationResp) get /monitoring/schedule/situation returns (scheduleSituationResp)
} }

View File

@ -227,6 +227,7 @@ type (
CreateTaskResp { CreateTaskResp {
TaskID int64 `json:"taskID"` TaskID int64 `json:"taskID"`
TaskName string `json:"taskName"`
ScheduleDatas []*ScheduleData `json:"scheduleDatas"` ScheduleDatas []*ScheduleData `json:"scheduleDatas"`
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff