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 {
TaskId string `json:"taskId"`
TaskName string `json:"taskName"`
}
)

View File

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

View File

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff