From 4d9d4b29d640567fbc5fbbd63b98b8bc8577f9ef Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Fri, 31 Oct 2025 12:46:14 -0700 Subject: [PATCH] fix: reinforces that the character should be visible in the image --- src/classes/ai.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/ai.ts b/src/classes/ai.ts index e1ca665..882fe77 100644 --- a/src/classes/ai.ts +++ b/src/classes/ai.ts @@ -50,7 +50,7 @@ export class Ai { join(", ")}`, prompt, ); - const image = await this.generateImage(`Your task is to generate a full body anime girl mascot for this project. The image should have a transparent background. NEVER include text in the image. The project description is: ${prompt}`); + const image = await this.generateImage(`Your task is to generate a full body anime girl mascot for this project. This means the full character should be visible. The image should have a transparent background. NEVER include text in the image. The project description is: ${prompt}`); if (image === null) { return { content: `Project Name: ${names}\nProject Description: ${prompt}\nSorry, I was unable to generate an image for you.` }; }