Apps
Profile Image Creator App

Profile Image Creator App

Profile Image Creator App is organized like a chat window. The sidebar stores your past interactions, letting you revisit past creations, pick up where you left off or start with a new profile image.

Just upload your profile image then ask the AI to do the transformation. Generated files are stored for long-term usage.

You can use this app to new profile image with different art styles.

Profile Image Creator

Config

You can change config in ./src/configs/apps/profileImageCreatorApp.ts.

// Select image model.
export const PROFILE_IMAGE_CREATOR_APP_IMAGE_MODEL = OPENAI_IMAGE_MODEL_DALL_E_3;
 
// And its size.
export const PROFILE_IMAGE_CREATOR_APP_IMAGE_SIZE = '...';
 
// Rate limit request count per user.
export const PROFILE_IMAGE_CREATOR_APP_RATE_LIMIT_REQUEST_COUNT = ...;
// Rate limit window.
export const PROFILE_IMAGE_CREATOR_APP_RATE_LIMIT_WINDOW = '...';