Add batch image jobs runtime
This commit is contained in:
16
src/jobs.ts
Normal file
16
src/jobs.ts
Normal 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"],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user