Image Generator App
Image Generator App is organized like a chat window. The sidebar stores your past interactions, letting you revisit past conversations, pick up where you left off or start a new thread.
Generated files are stored for long-term usage.
You can use this app to create high quality images by simply putting the details into chat box.
Config
You can change config in ./src/configs/apps/imageGeneratorApp.ts
.
// Select the model you want to use for your Image Generator App.
export const IMAGE_GENERATOR_APP_IMAGE_MODEL = OPENAI_IMAGE_MODEL_DALL_E_3;
// And its size
export const IMAGE_GENERATOR_APP_IMAGE_SIZE = '...';
// Rate limit request count per user.
export const IMAGE_GENERATOR_APP_RATE_LIMIT_REQUEST_COUNT = ...;
// Rate limit window.
export const IMAGE_GENERATOR_APP_RATE_LIMIT_WINDOW = '...';