()
| 128 | } |
| 129 | |
| 130 | func handleOllamaModelStatus() { |
| 131 | _ = global.DB.Model(&model.OllamaModel{}).Where("status = ?", constant.StatusWaiting).Updates(map[string]interface{}{ |
| 132 | "status": constant.StatusCanceled, |
| 133 | "message": constant.InterruptedMsg, |
| 134 | }).Error |
| 135 | } |
| 136 | |
| 137 | func handleCronJobAlert(cronjob *model.Cronjob) { |
| 138 | pushAlert := dto.PushAlert{ |