()
| 18 | } |
| 19 | |
| 20 | async function ensureExecutableExists() { |
| 21 | try { |
| 22 | await stat(executablePath); |
| 23 | } catch { |
| 24 | fail(`Native executable not found at ${executablePath}. Run build:native:sea first.`); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | async function runKimi(args) { |
| 29 | try { |