Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
211 Bytes
package app
// Trigger will start a processing cycle (normally ever ~5s)
func (app *App) Trigger() {
_ = app.mgr.WaitForStartup(app.LogBackgroundContext())
if app.Engine != nil {
app.Engine.Trigger()
}
}