-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
22 lines (19 loc) · 1.26 KB
/
constants.ts
File metadata and controls
22 lines (19 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export const PROFESSIONS: string[] = [
"Astronaut",
"Doctor",
"Firefighter",
"Teacher",
"Chef",
"Scientist",
"Artist",
"Pilot",
"Police Officer",
"Engineer",
"Musician",
"Veterinarian",
"Custom..."
];
export const ADULT_PROMPT_TEMPLATE = (profession: string): string =>
`Based on the provided image, create a high-quality, photorealistic image of the person as an adult ${profession}. Maintain key facial features and characteristics from the original photo. The person should be dressed in appropriate professional attire and placed in a realistic work environment that reflects the profession. Ensure a polished, professional presentation and character consistency with the source image.`;
export const CHILD_PROMPT_TEMPLATE = (profession: string): string =>
`Based on the provided image, create a high-quality, photorealistic image of the person as a child professional ${profession}. The child should be depicted at their natural age, retaining key features from the original photo. They should be dressed in a miniature but authentic version of the professional attire and placed in a realistic work environment for that profession. The image should portray the child as a competent professional, maintaining character consistency with the source image.`;