Files
leon-ai--leon/scripts/train/run-train.js
T
2026-07-13 12:44:08 +08:00

15 lines
231 B
JavaScript

import { LogHelper } from '@/helpers/log-helper'
import train from './train'
/**
* Execute the training scripts
*/
;(async () => {
try {
await train()
} catch (e) {
LogHelper.error(`Failed to train: ${e}`)
}
})()