This commit is contained in:
2026-01-10 09:14:37 +08:00
parent f7be1abd81
commit e525d68648
10 changed files with 249 additions and 14 deletions

View File

@@ -18,7 +18,20 @@ async function run() {
data: sentences
}
});
console.log('Import sentence result:', res);
}
await run();
// await run();
async function run2() {
const sentences = data?.sentences || [];
const res = await app.run({
path: 'image-creator',
key: 'perfect-sentence',
});
console.log('Import sentence result:', res);
}
await run2();