Add batch image jobs runtime

This commit is contained in:
2026-03-21 14:07:48 +08:00
parent aa33dea638
commit 6ceeeff907
4 changed files with 104 additions and 21 deletions

16
src/jobs.ts Normal file
View File

@@ -0,0 +1,16 @@
export type ImageJob = {
name: string;
prompt: string;
images?: string[];
enabled?: boolean;
};
export const jobs: ImageJob[] = [
{
name: "nano-banano-test",
enabled: true,
prompt:
"根据角色参考图设计并绘制一个细化过的插画。画面需包括这四位角色。画面描绘四位角色在一起睡觉的场景删除帽子、鞋子和披肩保留袜子。衣服凌乱闭眼互相紧靠在一起。注意保留角色的头身比、脸型、服饰细节和原图画风。注意表现角色身高关系粉发170 两位白发162 棕发151",
images: ["Aishia1.png", "Celia1.png", "Latifa1.png", "Sara1.png"],
},
];