Files
flow-nano-bananao/src/jobs.ts

17 lines
662 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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"],
},
];