name: npc-image description: 根据 NPC 设定生成 2 张角色形象图(占位)。用于 Story 阶段的初次生成。 input_schema: type: object properties: npcs: type: array items: type: object properties: name: { type: string } role: { type: string } personality: { type: string } required: [npcs] output_schema: type: object properties: results: type: array items: type: object properties: name: { type: string } images: type: array items: type: object properties: id: { type: string } prompt: { type: string } ratio: { type: string } url: { type: string }
required: [results]
NPC Image Skill
Instructions
- 输入
npcs数组,每个对象含name、role、personality等字段。 - 为每位 NPC 输出两张图片,结构如下:
{ "results": [ { "name": "NPC 名", "images": [ { "id": "npc-name-1", "prompt": "...", "ratio": "1:2", "url": "..." } ] } ] } - prompt 使用英文,占位图片可引用
public/img/npc内资源。