Commit ·
a6f9ae3
1
Parent(s): 2264bd3
Force update with latest local project
Browse files- README.md +69 -1
- gradio_app.py +326 -0
- prompt_data.py +52 -0
- requirements.txt +5 -0
README.md
CHANGED
|
@@ -5,9 +5,77 @@ colorFrom: purple
|
|
| 5 |
colorTo: red
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 5.25.2
|
| 8 |
-
app_file:
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 5 |
colorTo: red
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 5.25.2
|
| 8 |
+
app_file: gradio_app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# AI Image Prompt Generator 🖼️
|
| 14 |
+
|
| 15 |
+
A modern Gradio app for building, enhancing, and visualizing creative prompts for AI text-to-image models.
|
| 16 |
+
|
| 17 |
+
- **Prompt Generator:** Build detailed prompts step by step using dropdowns and custom attributes.
|
| 18 |
+
- **Prompt Enhancement:** Refine your prompt with Google Gemini for more creative, detailed results.
|
| 19 |
+
- **Image Generation:** Instantly generate images from your prompt using Stable Diffusion XL Turbo (via diffusers).
|
| 20 |
+
- **Modern UI:** Features a beautiful animated background and copy-to-clipboard buttons for easy workflow.
|
| 21 |
+
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
## Features
|
| 25 |
+
|
| 26 |
+
- 🎨 **Prompt Builder:** Select styles, subjects, moods, and more, or add your own custom attributes.
|
| 27 |
+
- ✨ **Prompt Enhancement:** Click 'Refine Prompt' to rewrite your prompt with Gemini (Google Generative AI).
|
| 28 |
+
- 🖼️ **Image Generation:** Click 'Generate Image' to visualize your prompt using SDXL Turbo.
|
| 29 |
+
- 📋 **Copy Buttons:** Quickly copy your prompt or enhanced prompt for use in other tools.
|
| 30 |
+
- 🌈 **Animated UI:** Enjoy a modern, glowing background and clean layout.
|
| 31 |
+
|
| 32 |
+
---
|
| 33 |
+
|
| 34 |
+
## Usage
|
| 35 |
+
|
| 36 |
+
1. **Select or add prompt options** in each category.
|
| 37 |
+
2. **View your prompt** in the Prompt Preview section.
|
| 38 |
+
3. **Refine your prompt** with the 'Refine Prompt' button (optional).
|
| 39 |
+
4. **Generate an image** from your prompt with the 'Generate Image' button.
|
| 40 |
+
5. **Copy** your prompt or enhanced prompt as needed.
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
## Running Locally
|
| 45 |
+
|
| 46 |
+
1. Clone this repo and install requirements:
|
| 47 |
+
```sh
|
| 48 |
+
pip install -r requirements.txt
|
| 49 |
+
```
|
| 50 |
+
2. Set your Gemini API key:
|
| 51 |
+
```sh
|
| 52 |
+
export GEMINI_API_KEY=your-gemini-api-key
|
| 53 |
+
```
|
| 54 |
+
3. Run the app:
|
| 55 |
+
```sh
|
| 56 |
+
python gradio_app.py
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
---
|
| 60 |
+
|
| 61 |
+
## Hugging Face Spaces
|
| 62 |
+
- This app is ready for deployment on [Hugging Face Spaces](https://huggingface.co/spaces).
|
| 63 |
+
- Set your `GEMINI_API_KEY` as a secret in the Space settings.
|
| 64 |
+
- The app file is `gradio_app.py`.
|
| 65 |
+
|
| 66 |
+
---
|
| 67 |
+
|
| 68 |
+
## Requirements
|
| 69 |
+
- gradio
|
| 70 |
+
- google-generativeai
|
| 71 |
+
- diffusers
|
| 72 |
+
- torch
|
| 73 |
+
- Pillow
|
| 74 |
+
- pyperclip
|
| 75 |
+
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
## License
|
| 79 |
+
MIT
|
| 80 |
+
|
| 81 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
gradio_app.py
ADDED
|
@@ -0,0 +1,326 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
from prompt_data import prompt_data
|
| 3 |
+
import os
|
| 4 |
+
import google.generativeai as genai
|
| 5 |
+
from io import BytesIO
|
| 6 |
+
import pyperclip
|
| 7 |
+
from google import genai
|
| 8 |
+
from google.genai import types
|
| 9 |
+
import torch
|
| 10 |
+
from diffusers import DiffusionPipeline
|
| 11 |
+
|
| 12 |
+
# Helper to get combined styles
|
| 13 |
+
styles = prompt_data.get("DRAWING STYLES", []) + prompt_data.get("VISUAL STYLES", [])
|
| 14 |
+
subjects = prompt_data.get("SUBJECTS", [])
|
| 15 |
+
moods = prompt_data.get("EMOTIONS", [])
|
| 16 |
+
clothing = prompt_data.get("CLOTHING", [])
|
| 17 |
+
props = prompt_data.get("PROPS", [])
|
| 18 |
+
poses = prompt_data.get("POSES", [])
|
| 19 |
+
settings = prompt_data.get("SETTINGS", [])
|
| 20 |
+
scenes = prompt_data.get("SCENE", [])
|
| 21 |
+
artists = prompt_data.get("ARTISTS", [])
|
| 22 |
+
colors = prompt_data.get("COLORS", [])
|
| 23 |
+
|
| 24 |
+
# Configure Gemini API key (for prompt enhancement)
|
| 25 |
+
GEMINI_API_KEY = os.getenv('GEMINI_API_KEY')
|
| 26 |
+
|
| 27 |
+
# --- NEW: Vertex AI Configuration for Imagen ---
|
| 28 |
+
# REPLACE THESE WITH YOUR ACTUAL GOOGLE CLOUD PROJECT ID AND REGION
|
| 29 |
+
GCP_PROJECT_ID = os.getenv('GCP_PROJECT_ID', 'your-gcp-project-id') # e.g., 'my-ai-project-12345'
|
| 30 |
+
GCP_REGION = os.getenv('GCP_REGION', 'us-central1') # e.g., 'us-central1'
|
| 31 |
+
|
| 32 |
+
# Initialize google-genai client for Vertex AI
|
| 33 |
+
try:
|
| 34 |
+
client = genai.Client(vertexai=True, project=GCP_PROJECT_ID, location=GCP_REGION)
|
| 35 |
+
except Exception as e:
|
| 36 |
+
client = None
|
| 37 |
+
print(f"Vertex AI Client Initialization Error: {e}")
|
| 38 |
+
print("Please ensure GCP_PROJECT_ID and GCP_REGION are correct and Vertex AI API is enabled.")
|
| 39 |
+
|
| 40 |
+
# --- Prompt generator logic ---
|
| 41 |
+
def generate_prompt(style, subject, mood, clothing_sel, prop_sel, pose_sel, setting_sel, scene_sel, artist_sel, color_sel, custom_attributes):
|
| 42 |
+
# Ensure all are lists, not None
|
| 43 |
+
def ensure_list(x):
|
| 44 |
+
return x if isinstance(x, list) else ([] if x is None else [x])
|
| 45 |
+
style = ensure_list(style)
|
| 46 |
+
subject = ensure_list(subject)
|
| 47 |
+
mood = ensure_list(mood)
|
| 48 |
+
clothing_sel = ensure_list(clothing_sel)
|
| 49 |
+
prop_sel = ensure_list(prop_sel)
|
| 50 |
+
pose_sel = ensure_list(pose_sel)
|
| 51 |
+
setting_sel = ensure_list(setting_sel)
|
| 52 |
+
scene_sel = ensure_list(scene_sel)
|
| 53 |
+
artist_sel = ensure_list(artist_sel)
|
| 54 |
+
color_sel = ensure_list(color_sel)
|
| 55 |
+
# Handle custom_attributes
|
| 56 |
+
if not custom_attributes:
|
| 57 |
+
custom_attributes_flat = []
|
| 58 |
+
elif isinstance(custom_attributes[0], list):
|
| 59 |
+
custom_attributes_flat = [item for sublist in custom_attributes for item in sublist]
|
| 60 |
+
else:
|
| 61 |
+
custom_attributes_flat = custom_attributes
|
| 62 |
+
prompt_parts = [
|
| 63 |
+
", ".join(style), ", ".join(subject), ", ".join(mood), ", ".join(clothing_sel), ", ".join(prop_sel), ", ".join(pose_sel), ", ".join(setting_sel), ", ".join(scene_sel), ", ".join(artist_sel), ", ".join(color_sel), ", ".join(custom_attributes_flat)
|
| 64 |
+
]
|
| 65 |
+
prompt = ", ".join([p for p in prompt_parts if p])
|
| 66 |
+
return prompt
|
| 67 |
+
|
| 68 |
+
def enhance_prompt_with_gemini(prompt):
|
| 69 |
+
if not GEMINI_API_KEY:
|
| 70 |
+
return "[Gemini API key not set. Please set GEMINI_API_KEY environment variable.]"
|
| 71 |
+
try:
|
| 72 |
+
# Use the Gemini 1.5 Flash model for lower latency/quota
|
| 73 |
+
text_client = genai.Client(api_key=GEMINI_API_KEY)
|
| 74 |
+
response = text_client.models.generate_content(
|
| 75 |
+
model='gemini-1.5-flash-latest',
|
| 76 |
+
contents=f"Rewrite this comma-separated list as a perfect, detailed prompt for an AI image generation model: {prompt}"
|
| 77 |
+
)
|
| 78 |
+
return response.text.strip()
|
| 79 |
+
except Exception as e:
|
| 80 |
+
return f"[Gemini API error during prompt enhancement: {e}]"
|
| 81 |
+
|
| 82 |
+
def copy_to_clipboard(text):
|
| 83 |
+
try:
|
| 84 |
+
pyperclip.copy(text)
|
| 85 |
+
return 'Copied!'
|
| 86 |
+
except Exception as e:
|
| 87 |
+
return f'Copy failed: {str(e)}'
|
| 88 |
+
|
| 89 |
+
# --- Custom HTML/JS/CSS for animated background and chips ---
|
| 90 |
+
custom_html = '''
|
| 91 |
+
<!-- Tailwind CSS CDN -->
|
| 92 |
+
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/dist/tailwind.min.css" rel="stylesheet">
|
| 93 |
+
<style>
|
| 94 |
+
body {
|
| 95 |
+
background: linear-gradient(135deg, #f0fdfa 0%, #e0e7ff 100%) !important;
|
| 96 |
+
min-height: 100vh;
|
| 97 |
+
}
|
| 98 |
+
.glow-overlay {
|
| 99 |
+
--glow-size: 25rem;
|
| 100 |
+
--glow-color: #7c3aed;
|
| 101 |
+
position: fixed;
|
| 102 |
+
inset: 0;
|
| 103 |
+
pointer-events: none;
|
| 104 |
+
user-select: none;
|
| 105 |
+
opacity: var(--glow-opacity, 0);
|
| 106 |
+
mask: radial-gradient(
|
| 107 |
+
var(--glow-size) var(--glow-size) at var(--glow-x, 50vw) var(--glow-y, 50vh),
|
| 108 |
+
var(--glow-color) 1%,
|
| 109 |
+
transparent 50%
|
| 110 |
+
);
|
| 111 |
+
transition: 400ms mask ease, opacity 0.3s;
|
| 112 |
+
will-change: mask;
|
| 113 |
+
z-index: 2;
|
| 114 |
+
}
|
| 115 |
+
.chip {
|
| 116 |
+
display: inline-block;
|
| 117 |
+
background: rgba(255,255,255,0.6);
|
| 118 |
+
backdrop-filter: blur(8px);
|
| 119 |
+
color: #22577a;
|
| 120 |
+
border-radius: 16px;
|
| 121 |
+
padding: 0.3rem 1rem;
|
| 122 |
+
margin: 0.2rem 0.3rem 0.2rem 0;
|
| 123 |
+
font-size: 1rem;
|
| 124 |
+
font-weight: 500;
|
| 125 |
+
box-shadow: 0 1px 8px rgba(67,164,224,0.10);
|
| 126 |
+
transition: background 0.3s, box-shadow 0.3s, transform 0.2s, opacity 0.3s;
|
| 127 |
+
opacity: 1;
|
| 128 |
+
animation: chipIn 0.4s cubic-bezier(.4,2,.6,1) both;
|
| 129 |
+
}
|
| 130 |
+
.chip-remove {
|
| 131 |
+
margin-left: 0.5rem;
|
| 132 |
+
color: #43a4e0;
|
| 133 |
+
cursor: pointer;
|
| 134 |
+
font-weight: bold;
|
| 135 |
+
transition: color 0.2s, transform 0.2s;
|
| 136 |
+
}
|
| 137 |
+
.chip-remove:hover {
|
| 138 |
+
color: #22577a;
|
| 139 |
+
transform: scale(1.2);
|
| 140 |
+
}
|
| 141 |
+
@keyframes chipIn {
|
| 142 |
+
0% { opacity: 0; transform: scale(0.7) translateY(10px);}
|
| 143 |
+
100% { opacity: 1; transform: scale(1) translateY(0);}
|
| 144 |
+
}
|
| 145 |
+
.copied-feedback {
|
| 146 |
+
border: 2px solid #43a4e0 !important;
|
| 147 |
+
box-shadow: 0 0 0 2px #43a4e0 !important;
|
| 148 |
+
transition: border 0.2s, box-shadow 0.2s;
|
| 149 |
+
}
|
| 150 |
+
.copy-tooltip {
|
| 151 |
+
position: absolute;
|
| 152 |
+
background: #43a4e0;
|
| 153 |
+
color: #fff;
|
| 154 |
+
padding: 2px 8px;
|
| 155 |
+
border-radius: 6px;
|
| 156 |
+
font-size: 0.95em;
|
| 157 |
+
z-index: 100;
|
| 158 |
+
left: 50%;
|
| 159 |
+
transform: translateX(-50%);
|
| 160 |
+
top: -2.2em;
|
| 161 |
+
opacity: 0;
|
| 162 |
+
pointer-events: none;
|
| 163 |
+
transition: opacity 0.2s;
|
| 164 |
+
}
|
| 165 |
+
.copied-feedback + .copy-tooltip {
|
| 166 |
+
opacity: 1;
|
| 167 |
+
}
|
| 168 |
+
.copy-btn {
|
| 169 |
+
min-width: 36px !important;
|
| 170 |
+
max-width: 44px !important;
|
| 171 |
+
padding: 0.2em 0.4em !important;
|
| 172 |
+
font-size: 1.2em !important;
|
| 173 |
+
height: 2.2em !important;
|
| 174 |
+
margin-left: 0.3em !important;
|
| 175 |
+
background: #e0f3ff !important;
|
| 176 |
+
color: #22577a !important;
|
| 177 |
+
border-radius: 8px !important;
|
| 178 |
+
border: 1px solid #43a4e0 !important;
|
| 179 |
+
box-shadow: none !important;
|
| 180 |
+
transition: background 0.2s, color 0.2s;
|
| 181 |
+
}
|
| 182 |
+
.copy-btn:hover {
|
| 183 |
+
background: #43a4e0 !important;
|
| 184 |
+
color: #fff !important;
|
| 185 |
+
}
|
| 186 |
+
</style>
|
| 187 |
+
<div class="glow-overlay"></div>
|
| 188 |
+
<script>
|
| 189 |
+
document.addEventListener("DOMContentLoaded", function() {
|
| 190 |
+
const overlay = document.querySelector('.glow-overlay');
|
| 191 |
+
if (!overlay) return;
|
| 192 |
+
document.body.addEventListener("mousemove", (event) => {
|
| 193 |
+
overlay.style.setProperty("--glow-x", `${event.clientX}px`);
|
| 194 |
+
overlay.style.setProperty("--glow-y", `${event.clientY}px`);
|
| 195 |
+
overlay.style.setProperty("--glow-opacity", "1");
|
| 196 |
+
});
|
| 197 |
+
document.body.addEventListener("mouseleave", () => {
|
| 198 |
+
overlay.style.setProperty("--glow-opacity", "0");
|
| 199 |
+
});
|
| 200 |
+
});
|
| 201 |
+
</script>
|
| 202 |
+
'''
|
| 203 |
+
|
| 204 |
+
# Add chip CSS for button styling
|
| 205 |
+
chip_css = '''
|
| 206 |
+
<style>
|
| 207 |
+
[id^=chip-btn-] {
|
| 208 |
+
display: inline-block !important;
|
| 209 |
+
background: rgba(255,255,255,0.7) !important;
|
| 210 |
+
border-radius: 16px !important;
|
| 211 |
+
color: #22577a !important;
|
| 212 |
+
font-size: 1rem !important;
|
| 213 |
+
font-weight: 500 !important;
|
| 214 |
+
margin: 0.2rem 0.3rem 0.2rem 0 !important;
|
| 215 |
+
padding: 0.3rem 1rem !important;
|
| 216 |
+
border: none !important;
|
| 217 |
+
box-shadow: 0 1px 8px rgba(67,164,224,0.10) !important;
|
| 218 |
+
cursor: pointer !important;
|
| 219 |
+
transition: background 0.3s, box-shadow 0.3s, transform 0.2s, opacity 0.3s;
|
| 220 |
+
}
|
| 221 |
+
[id^=chip-btn-]:hover {
|
| 222 |
+
background: #e0f3ff !important;
|
| 223 |
+
color: #43a4e0 !important;
|
| 224 |
+
transform: scale(1.05);
|
| 225 |
+
}
|
| 226 |
+
</style>
|
| 227 |
+
'''
|
| 228 |
+
|
| 229 |
+
# Helper to return gr.Button.update objects for chip buttons
|
| 230 |
+
MAX_CHIPS = 10
|
| 231 |
+
|
| 232 |
+
def get_chip_btns_updates(custom_attributes):
|
| 233 |
+
updates = []
|
| 234 |
+
for i in range(MAX_CHIPS):
|
| 235 |
+
if i < len(custom_attributes):
|
| 236 |
+
updates.append(gr.Button.update(value=custom_attributes[i] + " ×", visible=True))
|
| 237 |
+
else:
|
| 238 |
+
updates.append(gr.Button.update(value="", visible=False))
|
| 239 |
+
return updates
|
| 240 |
+
|
| 241 |
+
# --- Image generation pipeline setup ---
|
| 242 |
+
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 243 |
+
model_repo_id = "stabilityai/sdxl-turbo"
|
| 244 |
+
if torch.cuda.is_available():
|
| 245 |
+
torch_dtype = torch.float16
|
| 246 |
+
else:
|
| 247 |
+
torch_dtype = torch.float32
|
| 248 |
+
pipe = DiffusionPipeline.from_pretrained(model_repo_id, torch_dtype=torch_dtype)
|
| 249 |
+
pipe = pipe.to(device)
|
| 250 |
+
|
| 251 |
+
def generate_image(prompt):
|
| 252 |
+
if not prompt or prompt.strip() == "":
|
| 253 |
+
return None
|
| 254 |
+
image = pipe(prompt=prompt, guidance_scale=0.0, num_inference_steps=2, width=1024, height=1024).images[0]
|
| 255 |
+
return image
|
| 256 |
+
|
| 257 |
+
with gr.Blocks(css="body { font-family: 'Segoe UI', 'Roboto', sans-serif; }", theme=gr.themes.Soft()) as demo:
|
| 258 |
+
gr.HTML(custom_html)
|
| 259 |
+
with gr.Row():
|
| 260 |
+
gr.Markdown("""# AI Image Prompt Generator 🎨\nCreate creative prompts for AI text-to-image models!\n\nWelcome! Build your perfect prompt step by step. Select or add options below, and copy your prompt to use in your favorite AI image tool.""")
|
| 261 |
+
with gr.Row():
|
| 262 |
+
with gr.Column():
|
| 263 |
+
gr.Markdown("""**How to use:**\n1. Choose or randomize options for each category (or add your own).\n2. See your prompt update live below.\n3. Click 'Copy Prompt' to use it elsewhere!""")
|
| 264 |
+
with gr.Column():
|
| 265 |
+
pass
|
| 266 |
+
with gr.Row():
|
| 267 |
+
style = gr.Dropdown(choices=styles, multiselect=True, label="Style")
|
| 268 |
+
subject = gr.Dropdown(choices=subjects, multiselect=True, label="Subject")
|
| 269 |
+
mood = gr.Dropdown(choices=moods, multiselect=True, label="Mood/Emotion")
|
| 270 |
+
with gr.Row():
|
| 271 |
+
clothing_sel = gr.Dropdown(choices=clothing, multiselect=True, label="Clothing")
|
| 272 |
+
prop_sel = gr.Dropdown(choices=props, multiselect=True, label="Prop")
|
| 273 |
+
pose_sel = gr.Dropdown(choices=poses, multiselect=True, label="Pose")
|
| 274 |
+
with gr.Row():
|
| 275 |
+
setting_sel = gr.Dropdown(choices=settings, multiselect=True, label="Setting")
|
| 276 |
+
scene_sel = gr.Dropdown(choices=scenes, multiselect=True, label="Scene")
|
| 277 |
+
artist_sel = gr.Dropdown(choices=artists, multiselect=True, label="Artist")
|
| 278 |
+
color_sel = gr.Dropdown(choices=colors, multiselect=True, label="Color/Lighting")
|
| 279 |
+
|
| 280 |
+
gr.Markdown("---\n#### 2. Add any extra custom attributes:")
|
| 281 |
+
with gr.Row():
|
| 282 |
+
custom_attr = gr.Textbox(label="Add custom attribute (anything not covered above)", placeholder="Type and press Enter to add", interactive=True)
|
| 283 |
+
custom_attributes = gr.State([])
|
| 284 |
+
add_btn = gr.Button("Add Attribute")
|
| 285 |
+
custom_attr_list = gr.List(label="Custom Attributes", value=[], interactive=True)
|
| 286 |
+
|
| 287 |
+
def add_custom_attribute(custom_attr, custom_attr_list):
|
| 288 |
+
# Ensure each entry is a list of one string, and avoid duplicates
|
| 289 |
+
if custom_attr and [custom_attr] not in custom_attr_list:
|
| 290 |
+
custom_attr_list = custom_attr_list + [[custom_attr]]
|
| 291 |
+
return custom_attr_list, ""
|
| 292 |
+
|
| 293 |
+
add_btn.click(add_custom_attribute, [custom_attr, custom_attr_list], [custom_attr_list, custom_attr])
|
| 294 |
+
custom_attr.submit(add_custom_attribute, [custom_attr, custom_attr_list], [custom_attr_list, custom_attr])
|
| 295 |
+
custom_attr_list.change(lambda l: l, [custom_attr_list], [custom_attr_list])
|
| 296 |
+
|
| 297 |
+
gr.Markdown("---\n#### 3. Your generated prompt:")
|
| 298 |
+
# Prompt Preview row
|
| 299 |
+
with gr.Row():
|
| 300 |
+
prompt = gr.Textbox(label="Prompt Preview", interactive=False, elem_id="prompt-preview", scale=8)
|
| 301 |
+
copy_prompt_btn = gr.Button("📋", elem_classes=["copy-btn"], scale=1)
|
| 302 |
+
copy_prompt_btn.click(copy_to_clipboard, inputs=prompt, outputs=None, show_progress=False)
|
| 303 |
+
# Enhanced Prompt row
|
| 304 |
+
with gr.Row():
|
| 305 |
+
enhanced_prompt = gr.Textbox(label="Enhanced Prompt", interactive=False, elem_id="enhanced-prompt", scale=8)
|
| 306 |
+
copy_enhanced_btn = gr.Button("📋", elem_classes=["copy-btn"], scale=1)
|
| 307 |
+
copy_enhanced_btn.click(copy_to_clipboard, inputs=enhanced_prompt, outputs=None, show_progress=False)
|
| 308 |
+
refine_btn = gr.Button("Refine Prompt 🪄")
|
| 309 |
+
refine_btn.click(enhance_prompt_with_gemini, [prompt], [enhanced_prompt])
|
| 310 |
+
|
| 311 |
+
# --- Image Generation Section ---
|
| 312 |
+
gr.Markdown("---\n#### 4. Generate image from your prompt:")
|
| 313 |
+
with gr.Row():
|
| 314 |
+
generate_img_btn = gr.Button("Generate Image 🖼️", variant="primary")
|
| 315 |
+
img_output = gr.Image(label="Generated Image", show_label=True)
|
| 316 |
+
generate_img_btn.click(generate_image, inputs=prompt, outputs=img_output)
|
| 317 |
+
|
| 318 |
+
# Live update prompt preview using .change() on all relevant components
|
| 319 |
+
for comp in [style, subject, mood, clothing_sel, prop_sel, pose_sel, setting_sel, scene_sel, artist_sel, color_sel, custom_attr_list]:
|
| 320 |
+
comp.change(
|
| 321 |
+
generate_prompt,
|
| 322 |
+
[style, subject, mood, clothing_sel, prop_sel, pose_sel, setting_sel, scene_sel, artist_sel, color_sel, custom_attr_list],
|
| 323 |
+
[prompt]
|
| 324 |
+
)
|
| 325 |
+
|
| 326 |
+
demo.launch(share=True)
|
prompt_data.py
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
prompt_data = {
|
| 2 |
+
"SUBJECTS": [
|
| 3 |
+
'Harpy','guinea pig', 'explorer', 'part-timer', 'centaur','loved one', 'friend', 'buster', 'bereaved', 'Twin', 'sneezer', 'rescuer', 'ruler', 'wiper', 'Goat', 'departed', 'critter', 'bather', 'adversary', 'debaser', 'exponent', 'intellectual', 'teaser', 'free agent', 'muscle-builder', 'trained worker', 'restrainer', 'trier', 'struggler', 'troll', 'boatman', 'married', 'marine creature', 'Lion', 'skilled workman', 'candidate', 'common man', 'wiggler', 'loup-garou', 'effector', 'hoper', 'modern', 'accumulator', 'right-hander', 'dancer', 'southpaw', 'sea creature', 'helper', 'asthmatic', 'invertebrate', 'moulter', 'White person', 'faller', 'supernumerary', 'mutant', 'philosopher', 'strikebreaker', 'machine', 'unpaid worker', 'work animal', 'seasonal worker', 'lamplighter', 'Balance', 'twiner', 'wriggler', 'demander', 'owner', 'bedfellow', 'runaway', 'smasher', 'captive', 'swayer', 'abstinent', 'herbivore', 'doubter', 'seeker', 'commoner', 'blond', 'unusual person', 'granter', 'coward', 'Cerberus', 'first-rater', 'adult', 'fiduciary', 'surrenderer', 'testator', 'young', 'primitive person', 'Water Bearer', 'acquaintance', 'waker', 'gainer', 'actor', 'emulator', 'juvenile person', 'fighter', 'picker', 'winner', 'large person', 'female person', 'enjoyer', 'handicapped person', 'scholar', 'native', 'topper', 'migrator', 'nonperson', 'wanter', 'bullfighter', 'showman', 'amateur', 'baldy', 'fugitive', 'undoer', 'applicant', 'imitator', 'unskilled person', 'fleer', 'mediocrity', 'small person', 'observer', 'spitter', 'sphinx', 'shingler', 'transfer', 'signatory', 'expert', 'cross-dresser', 'worker', 'freelance', 'forgiver', 'decedent', 'rester', 'entertainer', 'quitter', 'Bull', 'abomination', 'Nemean lion', 'male', 'dissident', 'sounding board', 'spurner', 'mangler', 'thirster', 'yearner', 'spoiler', 'romper', 'hanger', 'recoverer', 'sprawler', 'temporary worker', 'bad guy', 'roc', 'Leo', 'rectifier', 'Minotaur', 'Cancer', 'occultist', 'transferee', 'wolfman', 'clumsy person', 'segregate', 'employable', 'adventurer', 'capitalist', 'persona non grata', 'driver', 'Geryon', 'rat', 'predator', 'pursuer', 'Hydra', 'legendary creature', 'female', 'Chimera', 'leader', 'redhead', 'child', 'domestic animal', 'splicer', 'manticora', 'miracle man', 'tyrant', 'creator', 'passer', 'good person', 'wealthy person', 'fictional animal', 'Archer', 'Chimaera', 'racer', 'survivor', 'servant', 'Aquarius', 'captor', 'copycat', 'Sphinx', 'sea animal', 'Sagittarius', 'prey', 'dweller', 'celebrater', 'advocate', 'appreciator', 'money handler', 'homunculus', 'nondrinker', 'player', 'hard worker', 'cashier', 'victim', 'Victorian', 'denizen', 'volunteer', 'shoveler', 'antagonist', 'rich person', 'bodybuilder', 'sex symbol', 'traveler', 'significant other', 'manipulator', 'juvenile', 'money dealer', 'thin person', 'comber', 'weasel', 'revenant', 'sleepyhead', 'slayer', 'miracle worker', 'salamander', 'warrior', 'basilisk', 'dragon', 'creature', 'Elizabethan', 'jumper', 'biped', 'self', 'loose cannon', 'orphan', 'brunette', 'pet', 'Scorpion', 'searcher', 'double', 'stranger', 'scavenger', 'mouse', 'toreador', 'Virgin', 'gatekeeper', 'giant', 'employee', 'marine animal', 'mother hen', 'lover', 'Virgo', "boy", "girl", "man", "woman", "old man", "old woman", "young man", "young woman", "teenage boy", "teenage girl", "child", "baby", "grandfather", "grandmother", "father", "mother", "brother", "sister", "cousin", "uncle", "aunt", "nephew", "niece", "husband", "wife", "boyfriend", "girlfriend", "partner", "boss", "colleague", "teacher", "student", "doctor", "nurse", "firefighter", "police officer", "soldier", "pirate", "knight", "cowboy", "space cowboy", "superhero", "villain", "zombie", "werewolf", "vampire", "ghost", "witch", "fairy", "dragon", "dinosaur", "alien", "robot", "mermaid", "merman", "athlete", "artist", "chef", "musician", "writer", "actor", "actress", "dancer", "model", "baker", "photographer", "journalist", "designer", "entrepreneur", "philanthropist", "scientist", "inventor", "explorer", "historian", "philosopher", "psychologist", "politician", "judge", "lawyer", "priest", "monk", "nun", "clown", "magician", "acrobat", "jester", "trickster", "fool", "adventurer", "detective", "spy", "gangster", "thief", "assassin", "ninja", "samurai", "martial artist", "surgeon", "dentist", "architect", "engineer", "mechanic", "electrician", "plumber", "gardener", "farmer", "miner", "logger", "fisherman", "hunter", "trader", "banker", "economist", "stockbroker", "pilot", "sailor", "driver", "cyclist", "swimmer", "diver", "hiker", "mountain climber", "skier", "snowboarder", "surfer", "skateboarder", "golfer", "tennis player", "baseball player", "basketball player", "football player", "hockey player", "rugby player", "soccer player", "volleyball player", "beautiful woman", "space cowboy", "underwater knight", "mad scientist", "fashion model", "pirate captain", "cyborg ninja", "vampire queen", "time traveler", "dragon tamer", "intergalactic smuggler", "detective noir", "steampunk adventurer", "fantasy warlord", "jungle explorer", "robotic musician", "spooky ghost", "fairy princess", "mythical creature", "cosmic hero", "zombie survivor", "galactic bounty hunter", "wandering samurai", "mystical monk", "cyberpunk hacker", "monster hunter", "superhero sidekick", "alien diplomat", "sorcerer supreme", "dimension-hopping adventurer", "mythical beast", "city slicker cowboy", "post-apocalyptic scavenger", "cybernetic athlete", "futuristic soldier", "time-displaced hero", "dungeon master", "cyber samurai", "secret agent spy", "neon cyberspace wizard", "techno-druid", "martial arts master", "renegade cyborg", "elemental shaman", "space pirate captain", "technomancer", "magic gunslinger", "cybernetic enforcer", "fantasy bard", "adventurous archaeologist", "cybernetic dragon", "kaiju monster", "medieval knight in shining armor", "cosmic adventurer", "cybernetic exosuit pilot", "robotic lawman", "futuristic racing driver", "supernatural detective", "apocalyptic prophet", "cyberpunk courier", "time-traveling historian", "mythical demigod", "military cyborg", "magic archer", "cyber samurai warrior", "fantasy druid", "neon space pirate", "mech warrior", "cybernetic ninja", "space smuggler", "digital mage", "future gladiator", "urban ninja", "cyberpunk gunslinger", "cosmic wizard", "mythical warrior", "powerful sorceress", "cybernetic rebel", "supernatural hunter", "futuristic bounty hunter", "mythical centaur", "virtual reality explorer", "medieval blacksmith", "cybernetic detective", "elemental alchemist", "cyberpunk rocker", "fantasy rogue", "underwater explorer", "cyber samurai assassin", "military commander", "robotic mech pilot", "space mercenary", "time-traveling adventurer", "mythical phoenix", "techno-ninja", "magic healer", "cybernetic angel", "fantasy ranger", "interdimensional traveler", "cybernetic bodyguard", "urban spellcaster", "supernatural psychic", "post-apocalyptic biker", "mythical minotaur", "time-traveling cowboy", "cyberpunk assassin", "fantasy wizard", "undercover agent", "military strategist", "technological wizard", "space knight", "mythical sphinx", "virtual reality hacker", "medieval knight errant", "cybernetic engineer", "elemental mage", "cyberpunk DJ", "fantasy warrior", "underground fighter", "cyber samurai mercenary", "military tank commander", "robotic drone operator", "space explorer", "futuristic inventor", "supernatural medium", "magical unicorn", "post-apocalyptic survivor", "mythical kraken", "cybernetic spy", "water-bodied ghost", "stone monster", "flame princess", "flying unicorn", "ice dragon", "giant spider", "invisible man", "werewolf hunter", "zombie king", "siren singer", "centaur warrior", "time traveler", "cyborg ninja", "alien pirate", "wizard detective", "mermaid queen", "fire-breathing lion", "robot samurai", "golem guardian", "chimera beast", "kraken sea monster", "demon slayer", "frost giant", "angelic healer", "vampire hunter", "mystical shaman", "elemental mage", "gargoyle protector", "phoenix reborn", "dragon tamer", "jungle explorer", "cave diver", "ghost whisperer", "witch doctor", "mad scientist", "astronaut cowboy", "moon princess", "ninja assassin", "thunder god", "sandman", "grim reaper", "fairy tale princess", "dwarf miner", "ghost pirate", "mind reader", "lightning wizard", "sea serpent", "unicorn rider", "time lord", "zombie apocalypse survivor", "space marine", "goblin king", "carnival clown", "greek god", "norse god", "egyptian pharaoh", "martial artist monk", "cybernetic warrior", "starship captain", "dark sorcerer", "ice queen", "bigfoot hunter", "sasquatch", "levitating psychic", "underworld queen", "harpy eagle", "troll bridge keeper", "cryptid investigator", "elemental golem", "forest nymph", "sorcerer's apprentice", "faerie glen dweller", "yeti snowman", "robotic beekeeper", "siren mermaid", "seraphim angel", "demonic incubus", "angelic seraph", "giant ogre", "cosmic traveller", "metal golem", "giant anteater", "mind control master", "enchanted unicorn", "elemental druid", "dragon knight", "star knight", "galactic emperor", "interdimensional traveler", "neon ninja", "ravenous werewolf", "goblin inventor", "digital djinn", "beautiful woman baseball player", "beautiful female angel", "strong businesswoman", "fierce warrior queen", "fashionable influencer", "talented musician", "wise elder woman", "brave female detective", "intelligent scientist", "courageous firefighter", "dedicated nurse", "creative artist", "kind-hearted social worker", "inspirational teacher", "daring stuntwoman", "innovative entrepreneur", "soulful singer", "athletic gym instructor", "sassy bartender", "wise-cracking comedian", "benevolent philanthropist", "adventurous explorer", "outspoken activist", "graceful ballerina", "determined marathon runner", "fearless skydiver", "witty writer", "futuristic astronaut", "visionary filmmaker", "charming diplomat", "confident CEO", "passionate chef", "stylish fashion designer", "adaptable actress", "wise mystic", "nurturing mother", "supportive friend", "independent traveler", "curious journalist", "generous benefactor", "perceptive psychologist", "competitive athlete", "empathetic listener", "motivated volunteer", "beautiful woman ninja", "beautiful woman samurai", "beautiful woman spy", "beautiful woman astronaut", "beautiful woman mermaid", "beautiful woman vampire", "beautiful woman werewolf", "beautiful woman elf", "beautiful woman fairy", "beautiful woman superhero", "beautiful woman villain", "beautiful woman zombie", "beautiful woman demon", "beautiful woman goddess", "beautiful woman witch", "beautiful woman robot", "beautiful woman cyborg", "beautiful woman cyberspace warrior", "beautiful woman cyberspace hacker", "beautiful woman cyberspace detective", "beautiful woman astronaut", "beautiful woman chef", "beautiful woman ninja", "beautiful woman dragon slayer", "beautiful woman secret agent", "beautiful woman scientist", "beautiful woman athlete", "beautiful woman dancer", "beautiful woman musician", "beautiful woman writer", "beautiful woman ninja", "beautiful woman spy", "beautiful woman astronaut", "beautiful woman mechanic", "beautiful woman chef", "beautiful woman detective", "beautiful woman magician", "beautiful woman artist", "beautiful woman wrestler", "beautiful woman scientist", "beautiful woman doctor", "beautiful woman superhero", "beautiful woman fairy", "beautiful woman witch", "beautiful woman vampire", "beautiful woman mermaid", "beautiful woman dragon rider", "beautiful woman archer", "beautiful woman surfer"
|
| 4 |
+
],
|
| 5 |
+
"CLOTHING": [
|
| 6 |
+
'pith helmet', 'suit of clothes', 'stays', 'mink coat', 'pant', 'slip', 'disguise', 'skimmer', 'apron', 'scrubs', 'ballet skirt', 'pinstripe', 'evening clothes', 'short pants', 'muff', 'bathing cap', 'greatcoat', 'vest', "fool's cap", 'bomber jacket', 'Prince Albert', 'civvies', 'jeweled headdress', 'garment', 'mask', 'dress shirt', 'chiton', 'gaiter', 'bowler', 'bicorn', 'sport shirt', 'anklets', 'gown', 'evening shirt', 'chaddar', 'turtle', 'polo-neck', 'washables', 'support stocking', 'two-piece', 'snap-brim hat', 'olive-drab uniform', 'sailor cap', 'foundation', 'Glengarry', 'workout suit', 'duffel coat', 'sock', 'jodhpurs', 'wraparound', 'baldric', 'accouterment', 'Sunday clothes', 'hair shirt', 'banian', 'jock', 'burnoose', 'robe', 'wedding gown', 'corset', 'swallow-tailed coat', 'togs', 'wimple', 'mortarboard', 'outerwear', 'breechclout', 'kid glove', 'slicker', 'birretta', 'long johns', 'swimming costume', 'civies', 'straw hat', 'academic gown', 'cartridge belt', 'toreador pants', 'sweatsuit', 'suit', "judge's robe", 'boilers suit', 'trench coat', 'yachting cap', 'running suit', 'long underwear', 'uplift', 'brunch coat', 'miniskirt', 'Mother Hubbard', 'plus fours', 'cardigan', 'ecclesiastical robe', 'military uniform', 'pinafore', 'footwear', 'kerchief', 'tiara', 'black', 'caftan', 'kanzu', 'zoot suit', 'izar', 'regimentals', 'bola', 'beret', 'boxershorts', 'evening dress', 'toque', 'lambrequin', 'leging', 'monastic habit', 'wash', 'toupee', 'intimate apparel', 'negligee', 'smock', 'oilskin', 'yashmak', 'jumpsuit', 'long pants', 'tails', 'space helmet', 'bed jacket', 'face veil', 'pinny', 'wet suit', 'wishing cap', 'frock coat', 'newmarket', 'support hose', 'yashmac', 'boilersuit', 'macintosh', 'mac', 'business suit', 'trunks', 'wrapper', 'church hat', 'shorts', 'suspensor', 'sportswear', 'burqa', 'sarong', 'raiment', 'abaya', 'bolo tie', 'tweed', 'scanty', 'opera cloak', 'calpac', 'kalpac', 'gauntlet', 'sack', 'overall', 'ensemble', 'fur', 'stocking', 'rayons', 'bandolier', 'sleepwear', 'capuchin', 'felt hat', 'jodhpur breeches', 'balaclava helmet', 'slacks', 'nightshirt', 'pullover', 'costume', 'breeches', 'mantle', 'horsehair wig', 'hijab', 'wrist pad', 'underbodice', 'bloomers', 'half-slip', 'knickers', 'bustier', 'lab coat', 'briefs', 'cape', 'duds', 'capote', 'topper', 'furnishing', 'undershirt', 'nightcap', 'swaddling bands', 'garter belt', 'two-piece suit', 'liberty cap', 'dressing sack', "man's clothing", 'overskirt', 'vestment', 'accessory', 'jockstrap', 'monkey jacket', 'headpiece', 'hand wear', 'undergarment', 'change', 'white tie and tails', 'Geneva gown', 'pelisse', 'Norfolk jacket', 'gantlet', 'workwear', 'aba', 'lederhosen', 'dress uniform', 'jammies', 'wig', 'strapless', 'flatwork', 'tank suit', 'pontifical', 'topknot', 'chasuble', 'uniform', 'sweat pants', 'nylon stocking', 'scapular', 'domino', 'beachwear', 'humeral veil', 'ventail', 'chuddar', 'waterproof', 'romper', 'anorak', 'coat', 'duffle coat', 'formal', 'kaftan', 'duster', 'bellbottom trousers', 'kirtle', 'cat suit', 'bathing costume', 'mantilla', 'getup', 'levis', 'string tie', 'ball gown', 'sarape', 'service cap', 'tank top', 'jersey', 'flat cap', 'periwig', 'diaper', 'stovepipe', 'tarboosh', 'nappy', 'buckskins', 'mack', 'jockey cap', 'tam', 'peplus', 'corduroys', 'fichu', 'top', 'toga', 'ready-to-wear', 'knee pants', 'A-line', 'niqab', 'kurta', 'halter', 'weeds', 'flannel', 'sport jacket', 'cavalier hat', 'Skivvies', 'dhoti', 'derby', 'ski parka', 'underpants', 'leisure wear', 'fancy dress', 'camlet', 'baldrick', 'burnouse', 'napkin', 'breechcloth', 'life belt', 'foundation garment', 'necktie', 'crash helmet', 'poncho', 'cope', 'yarmulke', 'romper suit', 'chapeau', 'middy blouse', "woman's hat", 'aventail', 'golf cap', 'lumberjack', 'sweat suit', 'athletic sock', 'boothose', 'tea gown', 'pea jacket', 'pantie', 'turtleneck', 'work-clothing', 'underwear', 'swimwear', 'maxi', 'riding habit', 'shirtdress', 'turnout', 'jacket', 'calash', 'sports coat', 'loincloth', 'jellaba', 'pajama', 'bib-and-tucker', 'Eton jacket', 'leghorn', 'chador', 'bandeau', 'dolman', 'tunic', 'street clothes', 'haik', 'chemise', 'top hat', 'double-breasted jacket', 'skullcap', 'slipover', 'war paint', 'half mask', 'washing', 'tail coat', 'separate', 'teddy', 'beany', 'mink', 'gathered skirt', 'underclothing', 'bush jacket', 'underdrawers', 'mitre', 'bikini', 'toupe', 'full skirt', 'surgical gown', 'mackintosh', 'pants', 'derby hat', 'mitten', 'burka', 'switch', 'gray', 'playsuit', 'outfit', 'coxcomb', 'chlamys', 'pantyhose', 'sweat sock', 'tie', 'tin hat', 'cap', 'scarf', 'athletic wear', 'underclothes', 'Jockey shorts', 'shin guard', "nun's habit", 'suspender', 'academic costume', 'regalia', 'drawers', 'Afro-wig', 'blouse', 'roll-on', 'legging', 'swaddling clothes', 'civilian clothing', 'motley', 'bowler hat', 'beanie', 'Burberry', 'shirtwaister', 'spacesuit', 'seat belt', 'coif', 'anklet', 'lavalava', 'throat protector', 'Sam Browne belt', 'tights', 'babushka', 'surcoat', 'cutaway', 'dress blues', 'daishiki', 'unmentionable', 'Balmoral', 'single-breasted jacket', 'cowboy hat', 'sun helmet', 'burnous', 'yarmelke', 'glove', 'safety harness', 'bathrobe', "pj's", "tam-o'-shanter", 'cockscomb', 'habit', 'nightgown', 'raincoat', 'cagoule', 'grass skirt', 'bobbysock', 'holster', 'Bermuda shorts', 'middy', 'shovel hat', 'fur coat', 'overgarment', 'protective garment', 'white', 'nylons', 'coverall', 'boa', 'biggin', 'brassiere', 'rig', 'ski jacket', 'knee breeches', 'slouch hat', 'bonnet', 'tailor-made', 'hobble skirt', 'porkpie', 'bowtie', 'lounging pajama', 'sunsuit', 'girdle', 'sundress', 'dinner gown', 'work-shirt', 'bridal gown', 'belt', 'bow tie', 'neckpiece', 'guimpe', 'three-piece suit', 'cravat', 'suede glove', 'sheepskin coat', 'serape', 'balaclava', 'shinpad', 'pedal pusher', "sou'wester", 'tux', 'dolman jacket', 'peignoir', 'toga virilis', 'kepi', 'kilt', 'pantaloon', 'donkey jacket', 'ironing', 'hoopskirt', 'pantsuit', 'sable', 'riding breeches', 'silk hat', 'underskirt', 'cocktail dress', 'nightclothes', 'tudung', 'parka', 'battle dress', 'denim', 'helmet', 'nightwear', 'shoulder pad', 'full-dress uniform', 'bikini pants', 'body suit', 'camail', 'cassock', "widow's weeds", 'hat', 'sweatshirt', 'petticoat', 'bobbysocks', 'bra', 'cloche', 'tabard', 'chino', 'bolo', 'knee-hi', 'polo shirt', "BVD's", 'morning coat', 'homburg', 'caleche', 'miter', 'blazer', 'sports jacket', 'livery', 'attire', 'silk stocking', 'plain clothes', 'kaffiyeh', 'dunce cap', 'gaberdine', 'peruke', 'britches', 'Jamaica shorts', 'supporter', 'wedding dress', 'maillot', 'gallus', 'elbow pad', 'swimsuit', 'four-in-hand', 'lingerie', 'varsity sock', 'safety hat', 'sunbonnet', 'dressing gown', 'opera hat', 'balldress', 'surtout', 'batting helmet', 'bell-bottoms', 'ao dai', 'neglige', 'trilby', 'academic robe', 'campaign hat', 'topee', 'ascot', 'pants suit', 'shimmy', 'tricorne', 'anti-G suit', 'hooded cloak', 'union suit', 'Sunday best', 'fatigues', 'dress whites', 'accoutrement', 'tallith', 'high hat', 'clothes', 'shalwar', 'cocked hat', 'opera hood', 'deerstalker', 'finery', 'shift', 'slops', 'peacoat', 'night-robe', 'ten-gallon hat', 'diadem', 'plug hat', 'money belt', 'boxers', 'slack suit', 'titfer', 'tallis', 'collar', "woman's clothing", 'bandoleer', 'chap', 'body stocking', 'knitwear', 'laboratory coat', 'sun hat', 'nightie', 'false hair', 'stock', 'biohazard suit', 'grey', 'morning dress', 'hand-me-down', 'berretta', 'bodice', 'cloth cap', 'vestiture', 'hooded coat', 'coatdress', 'straightjacket', 'doublet', 'apparel', 'diving dress', 'step-in', 'rigout', 'dashiki', 'hot pants', 'flat wash', 'haick', 'polonaise', 'neckcloth', 'garrison cap', 'sweater', 'dressing sacque', 'lounging robe', 'masquerade', 'garibaldi', 'sackcloth', 'trappings', 'lounge suit', 'body pad', 'overseas cap', 'muffler', 'mufti', 'shirt', 'jean', 'postiche', 'seatbelt', 'eveningwear', 'kimono', 'dirndl', 'overcoat', 'jumper', 'BVD', 'swallowtail', 'tutu', 'trouser', 'brace', 'khakis', 'singlet', 'mackinaw', 'coonskin', 'puttee', 'rayon stocking', "Levi's", 'gym suit', 'mobcap', 'watch cap', 'bearskin', 'sheath', 'bola tie', 'crown', 'wearing apparel', 'leotard', 'poke bonnet', 'mantua', 'arm guard', 'blue', 'mess jacket', 'chest protector', 'jump suit', 'pyjama', 'trousseau', 'bathing suit', 'G suit', 'peplos', 'topcoat', 'panty', 'outer garment', 'Mackinaw coat', 'lid', 'chadar', 'ulster', 'evening gown', 'laundry', 'suspender belt', 'black tie', 'scapulary', 'fur-piece', 'silks', 'nightdress', 'turban', 'trews', 'panty girdle', 'coonskin cap', 'beaver', 'housecoat', 'hose', 'thigh pad', 'mending', 'boater', 'golf glove', 'false face', 'array', 'peplum', 'frock', 'pallium', 'tammy', 'jerkin', 'veil', 'hood', 'ski cap', 'swimming trunks', 'lounger', 'skirt', 'kameez', 'knee pad', 'undies', 'robe-de-chambre', 'pressure suit', 'athletic supporter', 'slip-on', 'hug-me-tight', 'arm pad', 'snowsuit', 'tyrolean', 'threads', 'activewear', 'tailcoat', 'culotte', 'sleeper', 'pith hat', 'wrap', 'civilian dress', 'salwar', 'head covering', 'white tie', 'baseball cap', 'Panama', 'cords', 'alb', 'tirolean', 'neckwear', 'tabis', 'knickerbockers', 'eye mask', 'tricorn', 'prayer shawl', 'dress suit', "dunce's cap", 'sweats', 'shawl', 'tuxedo', 'sailor', 'shako', 'peaked cap', 'calpack', 'patka', 'bellbottom pants', 'headdress', 'sailor suit', 'chesterfield', 'coatee', 'Christmas stocking', 'pillbox', 'thong', 'bluebonnet', 'argyll', 'lumber jacket', 'sweatpants', 'T-shirt', 'cloak', 'formalwear', 'topi', 'leg covering', 'long trousers', 'skid lid', 'windcheater', 'busby', 'football helmet', 'trunk hose', 'coronet', 'dinner jacket', 'porkpie hat', 'shirtwaist', 'surplice', 'tabi', 'foul-weather gear', 'single-breasted suit', 'hip pad', 'tee shirt', 'raglan', 'double-breasted suit', 'cowl', 'metal glove', 'feather boa', 'kalansuwa', 'masquerade costume', 'fedora', 'smoking jacket', 'box coat', 'khimar', 'fez', 'picture hat', 'crinoline', 'swimming cap', "shirt", "pants", "dress", "hat", "Socks", "Shoes", "Sandals", "Boots", "Sneakers", "High heels", "Flats", "Slippers", "Loafers", "Flip-flops", "Clogs", "Espadrilles", "Oxfords", "Wedges", "Platforms", "Sweaters", "Hoodies", "T-shirts", "Shirts", "Blouses", "Tank tops", "Turtlenecks", "Cardigans", "Jackets", "Coats", "Vests", "Parkas", "Ponchos", "Scarves", "Gloves", "Mittens", "Hats", "Caps", "Beanies", "Headbands", "Belts", "Ties", "Bow ties", "Necklaces", "Bracelets", "Earrings", "Rings", "Watches", "Glasses", "Sunglasses", "Contact lenses", "Swimsuits", "Bikinis", "One-piece swimsuits", "Board shorts", "Trunks", "Wetsuits", "Sports bras", "Leggings", "Shorts", "Skirts", "Dresses", "Jeans", "Pants", "Suit pants", "Suit jackets", "Blazers", "Tuxedos", "Dress shoes", "Sandals", "Flip-flops", "Boots", "Loafers", "Oxfords", "Slippers", "Running shoes", "Walking shoes", "Hiking boots", "Snow boots", "Rain boots", "Cowboy boots", "Combat boots", "Work boots", "Steel-toe boots", "High-top sneakers", "Low-top sneakers", "Leather jackets", "Denim jackets", "Bomber jackets", "Windbreakers", "Trench coats", "Peacoats", "Raincoats", "Tracksuits", "Sweatpants", "Sweatshirts", "Polo shirts", "Button-down shirts", "Flannel shirts", "Chambray shirts", "Dress shirts", "Suits", "Dress socks", "Ankle socks", "Crew socks", "Knee-high socks", "Tights", "Stockings", "Garters", "Corsets", "Bustiers", "Lingerie", "Pajamas", "Nightgowns", "Robes", "Bathrobes", "Sleep masks", "Jacket", "Sweater", "Shirt", "Blouse", "T-shirt", "Tank top", "Cardigan", "Coat", "Vest", "Parka", "Poncho", "Scarf", "Glove", "Mitten", "Hat", "Cap", "Beanie", "Belt", "Tie", "Bow tie", "Necklace", "Bracelet", "Earring", "Ring", "Watch", "Glass", "Sunglass", "Contact lens", "Swimsuit", "Bikini", "One-piece swimsuit", "Board short", "Trunk", "Wetsuit", "Sports bra", "Legging", "Short", "Skirt", "Dress", "Jean", "Pant", "Suit pant", "Suit jacket", "Blazer", "Tuxedo", "Dress shoe", "Sandal", "Flip-flop", "Boot", "Loafer", "Oxford", "Slipper", "Running shoe", "Walking shoe", "Hiking boot", "Snow boot", "Rain boot", "Cowboy boot", "Combat boot", "High-top sneaker", "Low-top sneaker", "Leather jacket", "Denim jacket", "Bomber jacket", "Windbreaker", "Trench coat", "Peacoat", "Raincoat", "Tracksuit", "Sweatpant", "Sweatshirt", "Polo shirt", "Button-down shirt", "Flannel shirt", "Chambray shirt", "Dress shirt", "Suit", "Dress sock", "Ankle sock", "Crew sock", "Knee-high sock", "Tight", "Stocking", "Garter", "Corset", "Bustier", "Lingerie", "Pajama", "Nightgown", "Robe", "Bathrobe", "Sleep mask", "Jumpsuit", "Overalls", "Romper", "Kimono", "Caftan", "Sarong", "Bandana", "Ascot", "Red shirt", "Blue skirt", "Golden gown", "Silver suit", "Pink dress", "Green jacket", "Yellow sandals", "Purple blouse", "Black boots", "White hat", "Brown belt", "Orange shorts", "Gray sweater", "Cream scarf", "Navy blue blazer", "Magenta top", "Teal dress", "Olive green pants", "Crimson coat", "Turquoise earrings", "Indigo socks", "Maroon shoes", "Beige trench coat", "Lavender purse", "Coral necklace", "Violet heels", "Burgundy tie", "Sky blue dress", "Rose gold watch", "Charcoal gray suit", "Tangerine scarf", "Periwinkle cardigan", "Bronze shoes", "Champagne gown", "Forest green hat", "Mauve leggings", "Sapphire bracelet", "Amber sunglasses", "Ivory blouse", "Cerulean blue skirt", "Cherry red lipstick", "Slate gray shirt", "Ochre dress", "Mustard yellow cardigan", "Royal blue pumps", "Olive green jacket", "Mint green scarf", "Cobalt blue pants", "Salmon pink top", "Gold sandals", "Silver earrings", "Mahogany sunglasses", "Tawny brown boots", "Azure blue hoodie", "Peach shorts", "Scarlet red blazer", "Apricot dress", "Russet brown hat", "Jade green sweater", "Pearl necklace", "Platinum ring", "Ruby red lipstick", "Cream-colored skirt", "Marigold dress", "Chartreuse blazer", "Saffron yellow sandals", "Taupe purse", "Moccasin brown loafers", "Lilac blouse", "Bistre pants", "Fuchsia heels", "Flaxen yellow shirt", "Pale pink sneakers", "Hot pink leggings", "Vanilla white scarf", "Electric blue jacket", "Auburn red boots", "Sepia tie", "Carnation pink top", "Aquamarine earrings", "Topaz orange shorts", "Rosewood dress", "Silver-gray blazer", "Beet red sweater", "Denim blue skirt", "Oyster white sandals", "Steel gray jacket", "Plum purple scarf", "Shirt made of sand", "Skirt made of flowers", "Bikini made of leaves", "Jacket made of clouds", "Shoes made of ice", "Dress made of fire", "Hat made of rainbow", "Suit made of diamonds", "Scarf made of spider webs", "Gloves made of lightning", "Cape made of feathers", "Pants made of leaves", "Top made of seashells", "Shorts made of flames", "Crown made of crystals", "Gown made of stars", "Socks made of grass", "Belt made of vines", "Hoodie made of smoke", "Purse made of candy", "Headband made of feathers", "Bow tie made of butterflies", "Sandals made of flowers", "Dress made of rainbow", "Hat made of snowflakes", "Skirt made of gems", "Tights made of spider silk", "Jacket made of lava", "Gloves made of frost", "Coat made of leaves", "Suit made of feathers", "Earrings made of diamonds", "Necklace made of pearls", "Bikini made of stars", "Shoes made of leaves", "Scarf made of flames", "Hat made of flowers", "Suit made of gold", "Dress made of crystals", "Belt made of fire", "Purse made of seashells", "Bracelet made of rainbow", "Top made of feathers", "Shorts made of clouds", "Crown made of leaves", "Jacket made of flowers", "Shoes made of crystal", "Gloves made of leaves", "Hoodie made of candy", "Skirt made of bubbles", "Dress made of crystals", "Shoes made of feathers", "Hat made of flames", "Pants made of rainbows", "Coat made of spider silk", "Skirt made of candy", "Top made of leaves", "Belt made of diamonds", "Gloves made of bubbles", "Dress made of bubbles", "Jacket made of bubbles", "Skirt made of bubble wrap", "Shoes made of bubbles", "Hat made of bubbles", "Pants made of bubbles", "Coat made of bubbles", "Top made of bubbles", "Belt made of bubbles", "Gloves made of bubbles", "Dress made of glass", "Suit made of feathers", "Shoes made of lightning", "Hat made of stars", "Pants made of candy", "Coat made of clouds", "Skirt made of leaves", "Top made of crystals", "Belt made of flowers", "Gloves made of rainbows", "Dress made of butterflies", "Jacket made of seashells", "Shoes made of fire", "Hat made of leaves", "Pants made of snowflakes", "Coat made of gems", "Skirt made of spider silk", "Top made of flames", "Belt made of crystals", "Gloves made of candy", "Dress made of feathers", "Suit made of bubbles", "Shoes made of gems", "Hat made of clouds", "Pants made of flames", "Coat made of spider webs", "Skirt made of stars", "Top made of lightning", "Belt made of leaves", "Gloves made of flowers", "Crown made of fire", "Earrings made of bubbles", "Necklace made of candy", "Bikini made of feathers", "Jumpsuit made of crystals", "Robe made of clouds", "Overalls made of flowers", "Sunglasses made of leaves", "Sweater made of spider silk", "Swimsuit made of bubbles", "Tank top made of fire", "Dress made of snowflakes", "Suit made of flowers", "Shoes made of crystals", "Hat made of bubbles", "Pants made of leaves", "Coat made of candy", "Skirt made of feathers", "Top made of spider silk", "Belt made of rainbows", "Gloves made of leaves", "Dress made of fireflies", "Jacket made of diamonds", "Shoes made of flames", "Hat made of seashells", "Pants made of stars", "Coat made of leaves", "Skirt made of lightning", "Dress made of stars", "Jacket made of crystals", "Shoes made of flowers", "Hat made of candy", "Pants made of leaves", "Coat made of flames", "Skirt made of spider webs", "Top made of seashells", "Belt made of rainbows", "Gloves made of snowflakes", "Dress made of snowflakes", "Suit made of bubbles", "Shoes made of spider webs", "Hat made of gems", "Pants made of crystals", "Coat made of candy", "Skirt made of clouds", "Top made of spider silk", "Belt made of candy", "Gloves made of leaves", "Dress made of leaves", "Dress made of thunderstorms", "Shoes made of mermaid scales", "Hat made of moon rocks", "Pants made of glass", "Coat made of rainbow light", "Dress made of leaves", "Suit made of flowers", "Shoes made of candy", "Hat made of spider webs", "Pants made of fireflies", "Coat made of snowflakes", "Skirt made of rainbow light", "Top made of leaves", "Belt made of bubbles", "Gloves made of music notes", "Dress made of moon rocks", "Jacket made of mermaid scales", "Shoes made of thunderstorms", "Hat made of rainbow yarn", "Pants made of spider silk", "Coat made of diamonds", "Skirt made of feathers", "Top made of flames", "Belt made of stars", "Gloves made of crystals", "Dress made of seashells", "Suit made of candy", "Shoes made of spider webs", "Hat made of rainbow light", "Pants made of leaves", "skirt made of music notes"
|
| 7 |
+
],
|
| 8 |
+
"PROPS": [
|
| 9 |
+
'adaptor', 'slip', 'ignition interlock', 'rocket', 'sweatbox', 'plectron', 'drop hammer', 'plotter', 'applier', 'extinguisher', 'keyboard', 'analyzer', 'surface', 'flat solid', 'block', 'energiser', 'cloth', 'decoration', 'weapon system', 'duplicate', 'mystification', 'lure', 'buffer', 'damper', 'indicator', 'bumper car', 'snowshoe', 'catapult', 'creation', 'tilter', 'stemmer', 'autopilot', 'sensor', 'drop forge', 'ignitor', 'vaporiser', 'skibob', 'clip-on', 'birdfeeder', 'valve', 'navigational instrument', 'memory device', 'covering', 'blower', 'cryptograph', 'heater', 'instrument of punishment', 'tracer', 'ventilator', 'sonograph', 'projectile', 'energizer', 'doorknocker', 'PTO', 'teaser', 'reset', 'gizmo', 'key', 'water cooler', 'instrument', 'trigger', 'battery charger', 'building material', 'instrumentation', 'preventative', 'gas fixture', 'throwing board', 'bed', 'wheeled vehicle', 'diestock', 'crusher', 'comb', 'afterburner', 'bird feeder', 'alarm system', 'decoy', 'convenience', 'fabric', 'marker', 'adapter', 'shoetree', 'contraceptive device', 'ornamentation', 'padding', 'stabilizer', 'remote control', 'structure', 'depressor', 'fixture', 'filter', "baby's dummy", 'preventive', 'thing', 'optical instrument', 'track', 'sheet', 'stabiliser', 'cauterant', 'paving material', 'cone', 'paving', 'shoehorn', 'Kinetoscope', 'washboard', 'convertor', 'constraint', 'float', 'teething ring', 'flare', 'heat exchanger', 'imprint', 'storage device', 'shredder', 'suction cup', 'launcher', 'elastic device', 'birth control device', 'explosive device', 'pair of tongs', 'dampener', 'knocker', 'converter', 'shooting stick', 'lift', 'stylus', 'weapon', 'applicator', 'trap', 'aerofoil', 'drafting instrument', 'lifting device', 'machine', 'dart thrower', 'peeler', 'reflector', 'control surface', 'corer', "surveyor's instrument", 'squeaker', 'plectrum', 'breathing device', 'aspergill', 'road roller', 'warmer', 'Dodgem', 'musical instrument', 'electroplate', 'inset', 'cautery', 'robot pilot', 'toy', 'drop press', 'runner', 'sleigh', 'optical device', 'moistener', 'deflector', 'measuring device', 'reinforcement', 'craft', 'scratcher', 'corrective', 'breathalyser', 'decker', 'charger', 'fire extinguisher', 'comforter', 'remote', 'router', 'signaling device', 'igniter', 'breathalyzer', 'paper feed', 'textile', 'stinker', 'cutoff', 'surveying instrument', 'opening', 'restoration', 'sphere', 'widget', 'dental appliance', 'sled', 'power takeoff', 'pull', 'electrical device', 'source of illumination', 'breathing apparatus', 'interlock', 'instrumentality', 'arm', 'restraint', 'bubbler', 'light', 'bait', 'prophylactic device', 'tongs', 'automatic pilot', 'analyser', 'interrupter', 'medical instrument', 'excavation', 'ready-made', 'alarm', 'antiquity', 'mechanism', 'synchroflash', 'spear thrower', 'instrument of execution', 'steamroller', 'restorative', 'military vehicle', 'warning device', 'Americana', 'appliance', 'sensing element', 'detector', 'facility', 'trade good', 'safety device', 'drive', 'lighter', 'prod', 'good', 'contrivance', 'acoustic device', 'airfoil', 'breathing machine', 'commodity', 'extra', 'sledge', 'cushioning', 'exercise device', 'noisemaker', 'installation', 'release', 'feeder', 'sounder', 'override', 'throwing stick', 'gadget', 'goad', 'hydrofoil', 'prompter', 'line', 'magnet', 'strengthener', 'autocue', 'scientific instrument', 'agglomerator', 'fender', 'foil', 'fan', 'button', 'measuring instrument', 'groover', 'gismo', 'vaporizer', 'whip', 'way', 'layer', 'construction', 'extractor', 'aspersorium', 'lemon', 'insert', 'contraption', 'support', 'horn', 'bootjack', 'article', 'straightener', 'pavement', 'safety', 'measuring system', 'guard', 'take-up', 'billiard marker', 'conductor', 'asphyxiator', 'square', 'ornament', 'anachronism', 'pacifier', 'contraceptive', 'muffler', 'holding device', 'fumigator', 'jig', 'engine', 'electronic device', 'rapper', 'nest egg', 'strip', 'plaything', 'pick', 'weight', 'material', "sword", "horse", "car", "cloak", "wand", "magic staff", "crystal ball", "potion bottle", "book of spells", "grimoire", "magic mirror", "spellbook", "magic carpet", "unicorn horn", "dragon egg", "phoenix feather", "elfin crown", "dwarf hammer", "goblin spear", "ogre club", "troll mace", "mermaid tail", "trident", "kraken tentacle", "gorgon head", "centaur bow", "pegasus wings", "minotaur axe", "hydra tooth", "siren conch shell", "faerie dust", "gnome hat", "leprechaun's pot of gold", "magic flute", "necromancer's staff", "dark wizard's wand", "enchanted rose", "genie's lamp", "grim reaper's scythe", "devil's pitchfork", "angel's halo", "harpy feathers", "chimera's claws", "satyr's pan flute", "valkyrie's spear", "thunderbolt", "zombie brain", "ghostly chains", "vampire fangs", "werewolf claw", "mummy wrap", "frankenstein's bolt", "witch's broomstick", "pirate's treasure chest", "treasure map", "compass", "telescope", "captain's hat", "eyepatch", "peg leg", "hook hand", "cutlass", "flintlock pistol", "cannon", "ship's wheel", "anchor", "treasure hoard", "rum bottle", "spyglass", "navigator's sextant", "jolly roger flag", "parrot", "monkey", "ship in a bottle", "ship's lantern", "map case", "scroll", "quill and ink", "old chest", "golden chalice", "jade statue", "ivory figurine", "precious gemstone", "ruby necklace", "diamond ring", "silver candelabra", "bronze urn", "ceramic vase", "painted fan", "oriental rug", "carved ivory box", "marble bust", "bronze bust", "easel", "paintbrush", "palette", "paint tube", "potter's wheel", "clay jug", "sculptor's chisel", "hammer and chisel", "stone tablet", "limestone bust", "marble statue", "granite pedestal", "bronze statue", "gold leaf", "painter's smock", "potter's apron", "clay sculpture", "canvas and stretcher bars", "painting easel", "bronze bust", "marble bust", "marble urn", "bronze candelabra", "carved wooden figure", "lapis lazuli statue", "carved jade ornament", "ancient scroll", "bronze arrowhead", "pottery shard", "broken statue", "fragile vase", "potter's kiln", "painting palette", "painting knife", "painting canvas", "painting brush", "painter's hat", "painter's gloves", "painter's palette", "sculptor's hat", "sculptor's gloves", "sculpting knife", "sculpting clay", "sculptor's apron", "wooden mallet", "stone mallet", "chisel set", "wooden carving tools", "painter's smock", "potter's wheel", "potter's tool set", "paintbrush set", "clay pot", "paint", "ice bow", "thorn whip", "thunder hammer", "earth shield", "rainbow wand", "bubble gun", "cloud boots", "moonstone dagger", "sunflower shield", "starlight cloak", "venomous fang", "dragonfire sword", "lunar staff", "solar scepter", "ghostly armor", "shadow sword", "healing crystal", "storm chaser's hat", "sunstone pendant", "void staff", "necrotic scepter", "lightning gloves", "iron rose", "golden apple", "lightning cloak", "water bubble", "magma shield", "crystal boots", "fire whip", "enchanted vine", "frost dagger", "earthly trident", "lightning bolt", "water sword", "fire ball", "wind fan", "poisoned thorn", "volcano staff", "thunderbolt gloves", "acid spray", "moonstone shield", "sunburst sword", "dark moon axe", "sun ray bow", "flaming arrows", "waterfall shield", "toxic blade", "lightning bolt helmet", "crystal bow", "ember shield", "oceanic trident", "swamp staff", "enchanted leaf", "dragon horn", "stormy shield", "sunrise staff", "sky stone", "earthquake hammer", "flaming rose", "cosmic wand", "leafy armor", "metal moon boots", "volcano armor", "crimson blade", "celestial tiara", "shadowy cloak", "ember cloak", "acidic fang", "lightning whip", "whirlwind boots", "flaming shield", "underwater torch", "thunderous boots", "crystal rapier", "thorned helm", "celestial axe", "shadowy sword", "arctic staff", "thunderous hammer", "earthquake boots", "icy shield", "blazing helmet", "cosmic blade", "waterfall wand", "meteoric boots", "floral sword", "crimson staff", "underwater armor", "whirlwind cloak", "firefly sword", "waterfall tiara", "volcano hammer", "celestial bow", "moonlight staff", "thorned armor", "swamp boots", "toxic staff", "lightning bolt sword", "moonstone armor", "starburst wand", "acidic shield", "volcano sword", "cosmic shield", "oceanic staff", "leafy sword", "whirlwind wand", "crimson helmet", "lightning bolt bow", "celestial dagger", "arctic sword", "flaming gauntlet", "waterfall sword", "shadowy wand", "stormy helmet", "earthquake shield", "thunderous shield", "firefly staff", "underwater shield", "crystal tiara", "icy armor", "cosmic armor", "volcano wand", "waterfall hammer", "thorned sword", "celestial sword", "swamp wand", "toxic sword", "lightning bolt axe", "moonstone helmet", "acidic staff", "shadowy bow", "starburst sword", "volcano dagger", "leafy wand", "whirlwind sword", "crimson boots", "lightning bolt gauntlet", "celestial shield", "arctic wand", "flaming cloak", "waterfall staff", "stormy sword", "earthquake helmet", "thunderous sword", "firefly shield", "underwater trident", "crystal sword", "glowing ice shield", "void boots", "thunderbird sword", "sunstone hammer", "rainbow unicorn horn", "firefly cloak", "moon crystal wand", "cloud sword", "earthquake hammer", "oceanic shield", "volcanic whip", "shadowy gauntlet", "whirlpool trident", "starburst staff", "acidic axe", "cosmic rapier", "crimson shield", "stormy wand", "lightning bolt cloak", "celestial scepter", "arctic boots", "thorned tiara", "firefly gloves", "underwater armor", "crystal warhammer", "icy wand", "cosmic hammer", "volcanic tiara", "waterfall rapier", "thunderous gauntlet", "crimson cloak", "lightning bolt trident", "celestial shield", "arctic sword", "flaming armor", "waterfall wand", "stormy cloak", "earthquake helmet", "thunderous sword", "firefly shield", "underwater trident", "crystal sword", "icy boots", "cosmic axe", "volcanic sword", "waterfall dagger", "thorned hammer", "celestial wand", "arctic helmet", "flaming boots", "waterfall shield", "stormy sword", "earthquake gauntlet", "thunderous hammer", "firefly wand", "underwater rapier", "crystal staff", "icy shield", "cosmic wand", "volcanic armor", "waterfall gloves", "thorned shield", "celestial rapier", "arctic shield", "flaming sword", "waterfall helmet", "stormy gauntlet", "earthquake wand", "thunderous shield", "firefly tiara", "underwater sword", "crystal shield", "icy hammer", "cosmic sword", "volcanic wand", "waterfall rapier", "thorned helmet", "celestial armor", "arctic rapier", "flaming shield", "waterfall gauntlet", "stormy wand", "earthquake boots", "thunderous rapier", "firefly hammer", "underwater shield", "crystal gauntlet", "icy sword", "cosmic shield", "volcanic rapier", "waterfall tiara", "thorned wand", "celestial sword", "arctic shield", "flaming hammer", "waterfall boots", "stormy tiara", "earthquake dagger", "thunderous helmet", "firefly sword", "underwater staff", "crystal boots", "icy gauntlet", "cosmic tiara", "volcanic shield", "waterfall cloak", "thorned sword", "celestial hammer", "arctic wand", "flaming rapier", "waterfall sword", "stormy boots", "earthquake shield", "thunderous tiara", "firefly boots", "underwater helmet", "crystal wand", "neural interface", "replicator", "laser gun", "teleporter", "force field", "cybernetic implant", "cloaking device", "energy shield", "gravity boots", "plasma sword", "starship engine", "FTL drive", "hyperspace communicator", "alien artifact", "black hole generator", "interdimensional portal", "wormhole stabilizer", "nanomachines", "orbital strike cannon", "quantum computer", "cyberdeck", "disintegrator beam", "emergency beacon", "fusion reactor", "genetic splicer", "holo emitter", "ion cannon", "jamming device", "kilometer-long space station", "life support system", "mass driver", "neutron bomb", "orbital bombardment platform", "personal shield", "quantum entanglement communicator", "repulsion field", "smart weapon", "terraforming module", "universal translator", "vortex manipulator", "warpgate", "xenobiology lab", "yotta-scale data storage", "zero-gravity chair", "asteroid mining drone", "bio-weapon", "cyborg exoskeleton", "death ray", "energy rifle", "force pike", "gravity gun", "holographic display", "interstellar probe", "jump drive", "kiloton-class missile", "lunar colony", "mind transfer device", "nanobot swarm", "orbital elevator", "plasma cannon", "quantum battery", "reality distortion field", "self-replicating probe", "terraforming drone", "universal constructor", "vibroblade", "warp drive", "X-ray laser", "yottabyte hard drive", "zero-point energy extractor", "asteroid defense platform", "brain-computer interface", "cyber drone", "disruptor beam", "energy whip", "fusion torch", "graviton beam", "hyperspace drive", "ion thruster", "jump gate", "kilonova weapon", "laser cannon", "matter transporter", "nanofactory", "orbital habitat", "phase cloak", "quantum entanglement computer", "repulsor beam", "synthetic organism", "terraforming bomb", "universal virus", "vortex cannon", "warp field generator", "Xenon reactor", "yottagram mass driver", "zero-point energy shield", "cutlass", "flintlock pistol", "pirate hat", "eyepatch", "peg leg", "hook hand", "treasure map", "compass", "telescope", "pirate flag", "ship's wheel", "anchor", "treasure chest", "rum bottle", "spyglass", "jolly roger flag", "parrot", "monkey", "ship in a bottle", "ship's lantern", "map case", "scroll", "quill and ink", "old chest", "golden chalice", "jade statue", "ivory figurine", "precious gemstone", "ruby necklace", "diamond ring", "silver candelabra", "bronze urn", "ceramic vase", "painted fan", "oriental rug", "carved ivory box", "marble bust", "bronze bust", "cape", "mask", "suit", "shield", "gauntlets", "utility belt", "grappling hook", "web-slingers", "batarang", "laser eyes", "flight", "super strength", "invisibility", "regeneration", "telekinesis", "gas mask", "canteen", "compass", "machete", "crowbar", "solar panel", "geiger counter", "matches", "flint", "hatchet", "sleeping bag", "duct tape", "rope", "water purification tablets", "revolver", "rifle", "shotgun", "saddle", "lasso", "holster", "boots", "spurs", "chaps", "hat", "bandana", "whiskey", "cigar", "saloon", "sheriff's badge", "spy camera", "wiretap", "hidden microphone", "fake ID", "lock pick set", "grappling hook", "night vision goggles", "encrypted communication device", "GPS tracker", "smoke bomb", "cyanide pill", "tranquilizer dart", "pocket knife", "holy water", "wooden stake", "silver bullets", "garlic", "crucifix", "salt", "sage", "flashlight", "iron chains", "book of spells", "exorcism ritual", "Ouija board", "werewolf claw", "ghost trap", "laser gun", "lightsaber", "plasma sword", "jetpack", "spaceship", "force field", "teleportation device", "cyborg implants", "holographic interface", "alien language translator", "hyperspace drive", "android assistant", "robot companion", "Laser eyes mask", "Utility belt grappling hook", "Regeneration canteen", "Silver candelabra shotgun", "Dragon egg hatchet", "Invisibility cloak gas mask", "Grimoire lightsaber", "Smoke bomb saddle", "Wooden stake jetpack", "Holy water geiger counter", "Pirate flag lasso", "Potion compass", "Batarang pocket knife", "Silver bullets gauntlets", "Exorcism ritual solar panel", "Dragon egg shotgun", "Lasso lightsaber", "Super strength grappling hook", "Enchanted forest machete", "Laser gun saloon", "Robot companion shield", "Spy camera gas mask", "Shield made of flowers canteen", "Flight boots", "Dragon egg revolver", "Magic wand sleeping bag", "Laser eyes shotgun", "Telekinesis grappling hook", "Cigar compass", "Vampire fangs shotgun", "Space station saddle", "Invisibility potion", "Wooden stake lightsaber", "Regeneration compass", "Utility belt whip", "Armor made of crystals geiger counter", "Lightsaber revolver", "Grimoire grappling hook", "Pirate flag shotgun", "Dragon egg grappling hook", "Silver candelabra sword", "Super strength laser gun", "Exorcism ritual machete", "Holographic interface gas mask", "Laser eyes gauntlets", "Teleportation device sleeping bag", "Flight machete", "Batarang whip", "Space station compass", "Enchanted forest jetpack", "Magic wand shield", "Regeneration machete", "Dragon egg laser gun", "Lightsaber canteen", "Invisibility whip", "Pirate flag compass", "Robot companion shotgun", "Grimoire shield", "Silver candelabra grappling hook", "Vampire fangs gas mask", "Utility belt revolver", "Armor made of crystals compass", "Laser gun jetpack", "Telekinesis sleeping bag", "Exorcism ritual shotgun", "Holographic interface machete", "Super strength whip", "Batarang grappling hook", "Dragon egg machete", "Lightsaber compass", "Flight gas mask", "Enchanted forest canteen", "Magic wand geiger counter", "Regeneration laser gun", "Pirate flag revolver", "Invisibility shield", "Robot companion machete", "Grimoire laser gun", "Silver candelabra jetpack", "Vampire fangs canteen", "Utility belt machete", "Armor made of crystals sleeping bag", "Laser eyes compass", "Teleportation device shotgun", "Exorcism ritual whip", "Holographic interface geiger counter", "Super strength shotgun", "Batarang laser gun", "Dragon egg gas mask", "Lightsaber revolver", "Flight compass", "Enchanted forest grappling hook", "Magic wand machete", "Regeneration jetpack", "Pirate flag canteen", "Invisibility laser gun", "Robot companion geiger counter", "Grimoire compass", "Silver candelabra whip", "Vampire fangs jetpack", "Poisonous potion grappling hook", "Crystal armor geiger counter", "Fire-breathing dragon egg compass", "Telekinetic lightsaber", "Regenerating shield made of flowers", "Invisibility cloak jetpack", "Space station machete", "Magic wand shotgun", "Laser eyes vampire fangs", "Super strength grappling hook", "Pirate flag holographic interface", "Armor made of crystals gas mask", "Exorcism ritual revolver", "Flight whip", "Robot companion machete", "Enchanted forest geiger counter", "Silver candelabra canteen", "Teleportation device compass", "Batarang jetpack", "Wooden stake grappling hook", "Telekinetic grappling hook", "Time-traveling potion", "Acid-spitting dragon egg", "Gravity-defying shield made of flowers", "Laser sword whip", "Mind-reading canteen", "Thunderstorm cloak jetpack", "Plasma rifle shotgun", "Diamond armor geiger counter", "Shapeshifting lightsaber", "Invisibility potion holographic interface", "Levitation boots grappling hook", "Interdimensional portal compass", "Solar-powered machete", "Psychic robot companion", "Atomic-powered carabiner", "Hypnotic pirate flag", "Force field umbrella", "Ice blast gun", "Technomancer gauntlets", "Crystal skull canteen", "Mutating geiger counter", "Starship helm shield", "Plasma grenade launcher", "Time-loop revolver", "Teleporting grappling hook", "Gravity-manipulating jetpack", "Quantum entanglement communicator sword", "Cybernetic dragon egg", "Shadow cloak compass", "Rocket-powered machete", "Mind control device whip", "Acidic potion gas mask", "Force field shield gun", "Gravity-defying boots holographic interface", "Transdimensional key", "Storm summoning staff", "Gravity hammer shotgun", "Invisibility cloak made of flowers", "Electric grappling hook", "Plasmatic canteen", "Exosuit armor made of crystals", "Nanomachines gauntlets", "Dimension-hopping lightsaber", "Pyrokinetic potion", "Time-freezing pocket watch", "Levitating carabiner", "Sonic boom jetpack", "Force field umbrella shield", "Elemental summoning amulet", "Quantum computer compass", "Gravitational vortex cannon", "Telekinetic grappling hook jetpack", "Anti-gravity boots holographic interface", "Psychic amplifier helmet", "Dark matter sword whip", "Interdimensional portal generator", "Energy shield gauntlets", "Gravity-manipulating dragon egg", "Weather control staff", "Invisibility cloak gun", "Acidic gas mask shotgun", "Regenerating machete made of flowers", "Holographic pirate flag", "Rusty key", "Victorian chair", "Antique vase", "Gothic table", "Modern lamp", "Old book", "Vintage clock", "Leather-bound journal", "Crystal chandelier", "Wooden wagon", "Gilded mirror", "Ancient map", "Silver tray", "Polished marble statue", "Ceramic vase", "Velvet curtain", "Golden door knob", "Brass candlestick", "Leather armchair", "Metal door", "Stained glass window", "Stone fireplace", "Floral rug", "Carved wooden box", "Mahogany bookcase", "Bronze sculpture", "Oak rocking chair", "Silver tea set", "Old carriage", "Antique globe", "Ornate picture frame", "Glass chalice", "Crystal decanter", "Enamel teapot", "Porcelain figurine", "Hand-carved chess set", "Beveled mirror", "Wrought iron gate", "Persian rug", "Chinese vase", "Victorian side table", "Art deco lamp", "Brass inkwell", "Silk pillow", "Medieval tapestry", "Rustic bench", "Gold-framed painting", "Silver candle holder", "Marble bust", "Leather-bound photo album", "Rustic watering can", "Old-fashioned wash basin", "Carved wooden walking stick", "Brass hourglass", "Venetian glass goblet", "Brass telescope", "Wooden treasure chest", "Iron cauldron", "Leather-bound atlas", "Crystal paperweight", "Ceramic tea cup", "Embroidered tapestry", "Bronze clock", "Carved jade figurine", "Gilded picture frame", "Art nouveau lamp", "Silver sugar tongs", "Wooden music box", "Antique rocking horse", "Mosaic tile table", "Crystal inkwell", "Hand-woven basket", "Rustic lantern", "Chinese porcelain jar", "Brass doorknob", "Gilded birdcage", "Stone bird bath", "Old-fashioned telephone", "Hand-painted umbrella stand", "Wicker armchair", "Leather-bound guestbook", "Crystal salt shaker", "Rustic birdhouse", "Carved soapstone box", "Copper tea kettle", "Silver letter opener", "Embossed leather photo album", "Carved wooden figurine", "Antique globe on stand", "Glass candy dish", "Ceramic figurine", "Victorian footstool", "Embroidered cushion", "Gilded easel", "Wooden artist's box", "Brass lantern", "Rustic wheelbarrow", "Marble fruit bowl", "Antique silver spoon", "Gilded candelabra", "Paintbrush", "Garden trowel", "Wooden spoon", "Whisk", "Chef's knife", "Wok", "Coffee mug", "Wine glass", "Beer mug", "Cocktail shaker", "Hairbrush", "Razor", "Soap dispenser", "Toothbrush", "Toilet brush", "Dish soap bottle", "Laundry detergent bottle", "Iron", "Hair dryer", "Vacuum cleaner", "Trash can", "Recycling bin", "Shoe rack", "Coat hanger", "Umbrella", "Watering can", "Garden hose", "Screwdriver", "Hammer", "Drill", "Stapler", "Tape dispenser", "Scissors", "Paperclip", "Eraser", "Pencil sharpener", "Staple remover", "Highlighter", "Permanent marker", "Whiteboard marker", "Chalk", "Rubber band", "Post-it notes", "Notebook", "Folder", "Envelope", "Paper towel roll", "Tissue box", "Bath towel", "Hand towel", "Washcloth", "Pillow", "Blanket", "Mattress", "Alarm clock", "Nightstand", "Desk lamp", "Bookshelf", "File cabinet", "Chair mat", "Mouse pad", "Computer keyboard", "Computer mouse", "Laptop bag", "Messenger bag", "Backpack", "Briefcase", "Water bottle", "Lunch box", "Thermos", "Sunglasses", "Watch", "Necklace", "Earrings", "Bracelet", "Ring"
|
| 10 |
+
],
|
| 11 |
+
"POSES": [
|
| 12 |
+
'slipping', 'disgorging', 'channelizing', 'shedding', 'swinging', 'disarranging', 'playing', 'circulating', 'twining', 'ruffling', 'holding off', 'lording it over', 'pulsing', 'misdemeaning', 'misconducting', 'running off', 'proceeding', 'disuniting', 'pursuing', 'wooshing', 'rampaging', 'driving off', 'directing', 'using', 'advancing', 'dispatching', 'comporting', 'coacting', 'expelling', 'stampeding', 'striking', 'foreseeing', 'setting about', 'chasing away', 'deracinating', 'presuming', 'playing it by ear', 'laying', 'stepping to the fore', 'mobilising', 'winding up', 'washing', 'toying', 'displacing', 'acting on', 'hastening', 'dispelling', 'reciprocating', 'condescending', 'making sure', 'dropping', 'had besting', 'moving', 'swaying', 'splaying', 'shipping', 'racing', 'whooshing', 'hitting', 'coming close', 'getting by', 'meshing', 'winding', 'bringing up', 'elevating', 'hurrying', 'putting on airs', 'changing hands', 'rushing', 'lateralizing', 'distributing', 'taking over', 'dandling', 'channelising', 'making a point', 'going about', 'transferring', 'guarding', 'commoving', 'forcing out', 'driving away', 'lowering oneself', 'forestalling', 'finishing', 'counteracting', 'reacting', 'lowering', 'coming out', 'tipping over', 'dislodging', 'deporting', 'looking sharp', 'taking back', 'upsetting', 'centering', 'coming forward', 'manoeuvering', 'bringing down', 'going along', 'gliding', 'parting', 'perpetrating', 'carrying', 'taking part', 'hustling', 'daring', 'opposing', 'plowing ahead', 'making bold', 'coping', 'attacking', 'countering', 'soliciting', 'offering', 'operating', 'conducting', 'funneling', 'fetching up', 'routing out', 'pumping', 'deigning', 'contending', 'standing up', 'finishing up', 'herding', 'grappling', 'behaving', 'rousing', 'agitating', 'separating', 'creating', 'pulling', 'bowling over', 'taking turns', 'bearing', 'unrolling', 'alternating', 'uprooting', 'wedging', 'interrupting', 'going off half-cocked', 'transporting', 'descending', 'transmitting', 'scanning', 'riffling', 'driving', 'aggressing', 'sliding', 'making doing', 'rewarding', 'repeating', 'misbehaving', 'festinating', 'setting in motion', 'letting down', 'vexing', 'launching', 'keeping', 'effecting', 'passing on', 'getting down', 'sending', 'locking', 'revolving', 'responding', 'acting superior', 'making doing', 'manoeuvring', 'pouring', 'turning back', 'shaking up', 'rolling', 'splattering', 'slopping', 'running', 'propelling', 'crowding', 'landing up', 'anticipating', 'assaying', 'attempting', 'pushing', 'knocking over', 'mobilizing', 'drawing', 'slinging', 'repositioning', 'posing', 'overturning', 'dislocating', 'centering', 'placing', 'raking', 'trying', 'brandishing', 'sinking', 'acquitting', 'stepping forward', 'spilling', 'sneaking', 'going on', 'bringing outside', 'stooping', 'stirring', 'bringing forward', 'positioning', 'egotripping', 'lifting', 'volunteering', 'surprising', 'holding back', 'flicking', 'throwing out', 'going off at half-cock', 'romancing', 'channeling', 'raising', 'tugging', 'saltating', 'managing', 'shifting', 'driving out', 'evading', 'rocking', 'passing around', 'beginning', 'setting', 'dealing', 'tumping over', 'disturbing', 'unwinding', 'pressing down', 'performing', 'exteriorizing', 'impelling', 'coming to the fore', 'prosecuting', 'going', 'antagonizing', 'antagonizing', 'stirring up', 'maneuvering', 'forcing', 'kicking out', 'squeezing', 'wooing', 'partnering', 'waiting', 'raising up', 'courting', 'committing', 'stationing', 'relocating', 'kneeling', 'beating', 'satisficing', 'persisting in', 'getting up', 'repaying', 'engaging', 'exerting', 'rooting out', 'interacting', 'wrapping', 'starting', 'dallying', 'putting', 'posting', 'ending up', 'flapping', 'luxating', 'approaching', 'flourishing', 'turning over', 'standing', 'changing owners', 'depressing', 'satisfising', 'taking', 'going ahead', 'whistling', 'stepping up', 'fluctuating', 'waving', 'translating', 'doing well', 'working', 'continuing', 'participating', 'queening it over', 'dividing', 'dragging', 'getting around to', 'upstaging', 'unseating', 'turning', 'essaying', 'taking care', 'seeking', 'taking time by the forelock', 'paying back', 'jarring', 'winding off', 'bumping around', 'singsonging', 'extirpating', 'blowing', 'taking down', 'flirting', "standing", "sitting", "jumping", "Standing", "Sitting", "Kneeling", "Lying down", "Sleeping", "Crouching", "Leaning", "Reclining", "Slouching", "Cross-legged", "Squatting", "Balancing", "Hunching", "Bowing", "Twisting", "Flexing", "Stretching", "Arching", "Curling", "Spreading", "Pointing", "Clenching", "Holding", "Gripping", "Reaching", "Extending", "Bending", "Swaying", "Rocking", "Shifting", "Nodding", "Waving", "Saluting", "Clapping", "High-fiving", "Fist bumping", "Hugging", "Kissing", "Dancing", "Twerking", "Jumping", "Skipping", "Hopscotching", "Leaping", "Vaulting", "Running", "Sprinting", "Jogging", "Walking", "Marching", "Crawling", "Sliding", "Gliding", "Swimming", "Floating", "Diving", "Surfing", "Paddling", "Rowing", "Skateboarding", "Snowboarding", "Skiing", "Ice skating", "Riding a bike", "Riding a motorcycle", "Riding a horse", "Riding a dragon", "Driving a car", "Driving a motorcycle", "Driving a boat", "Flying a plane", "Operating heavy machinery", "Shooting a gun", "Fencing", "Boxing", "Karate", "Kung Fu", "Yoga", "Pilates", "Tai chi", "Meditation", "Praying", "Wielding a sword", "Throwing a spear", "Casting a spell", "Holding a wand", "Using a bow and arrow", "Playing an instrument", "Singing", "Speaking", "Reading", "Writing", "Painting", "Sculpting", "Sewing", "Cooking", "Cleaning", "Gardening", "Exercising", "Relaxing", "Standing with arms crossed", "Standing with hands on hips", "Standing with one hand on hip", "Standing with hands in pockets", "Standing with hands clasped behind back", "Standing with hands folded in front", "Standing with arms outstretched", "Sitting cross-legged with hands in lap", "Sitting cross-legged with hands resting on knees", "Sitting with legs stretched out and hands on the ground", "Sitting with legs stretched out and hands on thighs", "Kneeling with hands clasped in front", "Kneeling with hands resting on thighs", "Lying on back with arms spread out", "Lying on stomach with arms at sides", "Lying on side with arm propping up head", "Lying on side with arm extended above head", "Crouching with hands on knees", "Leaning against a wall with arms crossed", "Leaning against a wall with one hand on hip", "Leaning against a wall with arms outstretched", "Reclining with arms behind head", "Reclining with arms at sides", "Slouching with hands in lap", "Slouching with hands resting on thighs", "Cross-legged with hands clasped behind back", "Squatting with hands on knees", "Balancing on one leg with arms outstretched", "Hunching over with hands on knees", "Bowing with hands clasped in front", "Twisting with one arm extended behind back and the other hand on hip", "Flexing with arms bent and fists clenched", "Stretching with arms extended above head", "Arching with hands on lower back", "Curling with arms wrapped around knees", "Spreading with arms extended out to sides", "Pointing with one arm extended and finger pointing", "Clenching with hands tightly closed", "Holding with hands grasping an object", "Gripping with hands holding onto a handle or bar", "Reaching with one arm extended and hand reaching for an object", "Extending with arms extended out in front of body", "Bending with arms reaching towards feet", "Swaying side to side with arms at sides", "Rocking back and forth with hands on knees", "Shifting weight from one foot to the other with arms at sides", "Standing sideways with one arm on hip", "Sitting sideways with legs crossed and one hand on thigh", "Sitting sideways with legs crossed and one hand on ground", "Kneeling sideways with one arm extended and hand on ground", "Lying sideways with one arm extended above head", "Crouching sideways with one arm on ground and the other hand on hip", "Leaning sideways against a wall with one arm extended", "Reclining sideways with one arm behind head and the other arm at side", "Slouching sideways with one hand on hip", "Cross-legged sideways with hands clasped behind back", "Squatting sideways with one hand on ground and the other hand on hip", "Balancing on one leg sideways with one arm extended", "Hunching sideways with one hand on hip", "Bowing sideways with one hand on ground", "Twisting sideways with one arm extended behind back and the other hand on ground", "Flexing sideways with one arm extended above head", "Stretching sideways with one arm extended above head and the other hand on hip", "Arching sideways with one arm extended above head and the other hand on hip", "Curling sideways with one arm wrapped around knee", "Spreading sideways with arms extended out to sides", "Pointing sideways with one arm extended and finger pointing", "Standing with hands clasped behind back", "Standing with arms folded behind back", "Standing with hands on hips and back facing the camera", "Walking or running away from the camera", "Sitting with hands behind the back", "Sitting with arms wrapped around knees from behind", "Lying face down with hands clasped behind the back", "Lying face up with hands clasped behind the head", "Bending over with hands resting on the back of the thighs", "Leaning against a wall with arms crossed behind the back", "Throwing a ball", "Catching a ball", "Pitching a baseball", "Swinging a baseball bat", "Shooting a basketball", "Dunking a basketball", "Jumping for a rebound", "Dribbling a soccer ball", "Kicking a soccer ball", "Scoring a goal", "Hitting a tennis ball", "Serving a tennis ball", "Returning a tennis serve", "Spiking a volleyball", "Blocking a volleyball", "Serving a volleyball", "Jumping over a hurdle", "Jumping over a rope", "Skipping rope", "Doing a cartwheel", "Doing a handstand", "Doing a back handspring", "Doing a somersault", "Performing a dive", "Doing a flip", "Doing a twist", "Doing a spin", "Running up stairs", "Jumping down stairs", "Walking on a tightrope", "Climbing a ladder", "Carrying a heavy object", "Pushing a heavy object", "Pulling a heavy object", "Lifting weights", "Doing push-ups", "Doing sit-ups", "Doing squats", "Doing lunges", "Doing yoga poses", "Meditating", "Running on a treadmill", "Rowing on a rowing machine", "Cycling on a stationary bike", "Doing a high-intensity interval workout", "Doing a dance routine", "Performing a martial arts move", "Throwing a frisbee", "Playing catch with a dog", "Hiking up a mountain trail"
|
| 13 |
+
|
| 14 |
+
],
|
| 15 |
+
"SETTINGS": [
|
| 16 |
+
'wellhead', 'maria', 'entablature', 'cutting room', 'Eden', 'tv room', 'vacuum', 'hangar', 'column', 'closet', 'defence', 'heavenly body', 'impediment', 'cubby', 'public works', 'shipping room', 'lobby', 'workroom', 'scullery', 'guardroom', 'card-house', 'inside', 'exterior', 'bath', 'waiting room', 'bathroom', 'estraterrestrial body', 'body', 'coil', 'landing place', 'lounge', 'classroom', 'barroom', 'scriptorium', 'extraterrestrial object', 'housing', 'airdock', 'mound', 'durbar', 'sick berth', 'can', 'honeycomb', 'steam bath', 'shoebox', 'floor', 'rotunda', 'complex', 'zone', 'heliosphere', 'landing', 'belfry', 'trestlework', 'whorl', 'sign', 'sewing room', 'post and lintel', 'sunporch', 'set-back', 'depth', 'vaulting', 'radius', 'dead body', 'black body', 'lookout station', 'sun porch', 'living accommodations', 'ways', 'compartment', 'layer', 'hellhole', 'organic structure', 'billiard saloon', 'vestry', 'bedroom', 'antechamber', 'stone', 'building complex', 'darkroom', 'squad room', 'door', 'star sign', 'storage room', 'white room', 'trading floor', 'steam room', 'sitting room', 'dinette', 'celestial body', 'engine room', 'nest', 'billiard parlor', 'parlour', 'hall', 'billiard room', 'colonnade', 'balance', 'shelter', 'clean room', 'Sind', 'front room', 'hull', 'top', 'guide', 'defensive structure', 'control room', 'superstructure', 'universe', 'parlor', 'equilibrium', 'masonry', 'taproom', 'mansion', 'lodging', 'physical structure', 'lookout', 'cosmos', 'cocoon', 'arcade', 'porch', 'balcony', 'coatroom', 'obstructor', 'story', 'prison cell', 'boardroom', 'zodiac', 'anteroom', 'ionosphere', 'waiting area', 'vapour bath', 'shower room', 'bedchamber', 'living-room', 'the pits', 'paradise', 'left-luggage office', 'vapor bath', 'bottom', 'Kuiper belt', 'sign of the zodiac', 'picture gallery', 'cardhouse', 'blackbody', 'sunroom', 'counterbalance', 'den', 'mare', 'monument', 'smoking room', 'helix', 'dining-room', 'saloon', 'extremity', 'fountain', 'storeroom', 'gallery', 'side', 'weapons platform', 'bowl', 'arch', 'sports stadium', 'ballroom', 'television room', 'cardroom', 'planetary house', 'consolidation', 'belt', 'rec room', 'span', 'sail', 'distance', 'solarium', 'atmosphere', 'hill', 'dining room', 'pillar', 'toilet', 'sickroom', 'sleeping accommodation', 'ginmill', 'biosphere', 'slipway', 'entrance hall', 'equipoise', 'prefab', 'clubroom', 'quoin', 'sleeping room', 'plant structure', 'plant part', 'sun parlor', 'poolroom', 'intergalactic space', 'aerospace', 'dance palace', 'hospital room', 'radiator', 'offset', 'inferno', 'schoolroom', 'stowage', 'bascule', 'air', 'corner', 'projection', 'signboard', 'volute', 'billiard hall', 'bar', 'sacristy', 'world', 'natural covering', 'vestibule', 'black hole', 'cloakroom', 'snake pit', 'checkroom', 'lamination', 'torture chamber', 'observatory', 'lav', 'Shangri-la', 'presence chamber', 'testing room', 'surgery', 'snug', 'art gallery', 'rock', 'boarding', 'hell on earth', 'locker room', 'chamber', 'recreation room', 'anechoic chamber', 'partition', 'carpet', 'false bottom', 'macrocosm', 'walk-in', 'Papua', 'promised land', 'edifice', 'house of cards', 'hell', 'cell', 'stadium', 'sickbay', 'obstructer', 'building', 'creation', 'reading room', 'storey', 'county', 'covering', 'court', 'spiral', 'manor hall', 'transept', 'sun lounge', 'level', 'sun parlour', 'interstellar space', 'asterism', 'reception room', 'bridge', 'constellation', 'test room', 'john', 'catchment', 'greenroom', 'study', 'foyer', 'wind tunnel', 'dressing room', 'establishment', 'repair shed', 'engineering', 'billiard parlour', 'supporting structure', 'nirvana', 'furnace room', 'platform', 'council chamber', 'conference room', 'cardcastle', 'Edgeworth-Kuiper belt', 'deathtrap', 'area', 'arena', 'jungle gym', 'privy', 'observation tower', 'deep space', 'house', 'outside', 'obstruction', 'lavatory', 'shipway', 'tower', 'defense', 'rathole', 'cover', 'library', 'war room', 'dance hall', 'mechanism', 'impedimenta', 'snuggery', 'jail cell', 'cross', 'sample', 'cubbyhole', 'tangle', 'interior', 'courtroom', 'setoff', 'existence', 'cubicle', 'back room', 'interplanetary space', 'full radiator', 'heaven', 'kitchen', 'memorial', 'living room', 'divider', 'vacuity', 'altar', "indoors", "outdoors", "castle", "Castle", "Fortress", "Palace", "Manor", "Chateau", "Dungeon", "Tower", "Keep", "Ruins", "Temple", "Shrine", "Cemetery", "Graveyard", "Mausoleum", "Crypt", "Catacombs", "Laboratory", "Factory", "Warehouse", "Workshop", "Studio", "Gallery", "Library", "Museum", "University", "School", "Classroom", "Office", "Boardroom", "Hospital", "Laboratory", "Morgue", "Asylum", "Prison", "Jail", "Courthouse", "Police station", "Fire station", "City hall", "Market", "Stadium", "Arena", "Gym", "Pool", "Beach", "Desert", "Mountain", "Forest", "Jungle", "Savanna", "Tundra", "Arctic", "Antarctic", "Ocean", "Sea", "Lake", "River", "Waterfall", "Island", "Volcano", "Cavern", "Cave", "Mine", "Quarry", "Canyon", "Cliff", "Mountain pass", "Bridge", "Road", "Highway", "Train station", "Airport", "Space station", "Spaceship", "Asteroid", "Planet", "Moon", "Sun", "Stars", "Black hole", "Underwater", "Abyss", "Underground", "Sewer", "Catacombs", "Cavern", "Cave", "Grotto", "Wasteland", "Post-apocalyptic", "Cyberpunk", "Steampunk", "Gothic castle", "Red gothic castle", "Church", "Chapel", "Cathedral", "Heaven", "Hell", "Abandoned factory", "Abandoned theme park", "Amusement park", "Aquarium", "Art museum", "Art studio", "Casino", "Coffee shop", "Cruise ship", "Dark alley", "Department store", "Distillery", "Doctor's office", "Doll museum", "Drive-in movie theater", "Elementary school", "Enchanted forest", "Farm", "Fashion show", "Fish market", "Fruit orchard", "Funeral home", "Gas station", "Ghost town", "Giant's castle", "Glacier", "Haunted mansion", "Hospital emergency room", "Hotel", "Ice cream parlor", "Igloo", "Inner city", "Jewelry store", "Laboratory", "Laundromat", "Law office", "Lighthouse", "Limousine", "Log cabin", "Luxury yacht", "Magic castle", "Medieval castle", "Military base", "Modern art museum", "Movie set", "Music studio", "Natural history museum", "Nightclub", "Observatory", "Oil rig", "Opera house", "Orphanage", "Outdoor market", "Palace garden", "Pawn shop", "Penthouse", "Pet store", "Police academy", "Power plant", "Psychiatric hospital", "Public park", "Radio station", "Recording studio", "Redwood forest", "Reptile house", "Research facility", "Retirement home", "Rock concert", "Roman colosseum", "Sailing ship", "Science museum", "Sculpture garden", "Seaside resort", "Secret agent's headquarters", "Sewing factory", "Shipwreck", "Ski resort", "Spacecraft", "Sports stadium", "Spy headquarters", "Subway station", "Supermarket", "Superyacht", "Swamp", "Swiss chalet", "Tea house", "Time travel laboratory", "Toy store", "Treehouse", "University library", "Urban park", "Venetian canal", "Viking ship", "Vineyard", "War battlefield", "Water park", "Wax museum", "Wedding chapel", "Wine cellar", "World's fair", "Castle made of stars", "Waterfall of sand", "Waterfall of black holes", "Star ocean", "Sand ocean", "Yellow lake", "Pink lake", "Rainbow waterfall", "Rainbow castle", "Mirage building", "Cloud city", "Diamond mountain", "Frozen volcano", "Tree of life on a floating island", "Crystal palace", "City on a cloud", "Castle on a cloud", "Island made of candy", "City made of crystals", "Coral forest", "City in a tree", "Diamond cave", "Floating island of flowers", "Giant flower garden in the sky", "Underwater city of gold", "City inside a volcano", "City on a comet", "Diamond waterfall", "Cloud forest", "City in the clouds", "Island of fire and ice", "City of the dead", "City of the living", "Island of the lost", "Island of the found", "Island of dreams", "City of dreams", "Castle of dreams", "Diamond palace", "Crystal mountain", "Island of gems", "Palace of gems", "City of gems", "Mountain of gold", "Rainbow mountain", "Crystal lake", "Island of light", "Island of darkness", "City of light", "City of darkness", "Island of illusions", "City of illusions", "Tower of illusions", "City of mirrors", "Island of mirrors", "Crystal sky", "Diamond sky", "Island of the sun", "City of the sun", "Palace of the sun", "Island of the moon", "City of the moon", "Palace of the moon", "Island of the stars", "City of the stars", "Palace of the stars", "Island of the gods", "City of the gods", "Palace of the gods", "Island of the demons", "City of the demons", "Palace of the demons", "Island of the angels", "City of the angels", "Palace of the angels", "Island of the dragons", "City of the dragons", "Palace of the dragons", "Island of the mermaids", "City of the mermaids", "Palace of the mermaids", "Island of the fairies", "City of the fairies", "Palace of the fairies", "Island of the giants", "City of the giants", "Palace of the giants", "Island of the goblins", "City of the goblins", "Palace of the goblins", "Island of the elves", "City of the elves", "Palace of the elves", "Island of the dwarves", "City of the dwarves", "Palace of the dwarves", "Island of the trolls", "City of the trolls", "Palace of the trolls", "Island of the unicorns", "Mountain made of gold", "Diamond planet", "Stone flower field", "Volcano made of ice", "Forest made of neon lights", "Lake of fire", "Clouds made of cotton candy", "Rainbow bridge to the stars", "City on the back of a giant turtle", "Floating island of books", "Forest of floating orbs", "Mountain of ice cream", "Underground city of crystals", "Island of the floating sunflowers", "Tower made of rainbows", "Underwater world of glowing jellyfish", "City of crystal flowers", "Tree of diamonds", "Island of giant mushrooms", "Volcano of candy", "Mountain of mirrors", "City of ice sculptures", "Island of neon trees", "Palace of ice and fire", "Crystal maze", "Cave of glowing crystals", "Forest of the upside-down trees", "Mountain of chocolate", "Underwater city of mermaids and mermen", "Garden of neon butterflies", "Island of the floating lanterns", "Mountain of the floating rocks", "Ocean of stars", "City of the floating bubbles", "Island of the upside-down waterfalls", "Forest of the glowing mushrooms", "City of the floating clouds", "Mountain of the floating islands", "Ocean of diamonds", "Island of the crystal sand", "City of the floating bridges", "Forest of the floating lanterns", "Mountain of the crystal snow", "Island of the rainbow coral", "Palace of the floating crystal flowers", "Underwater world of the glowing coral", "City of the floating mountains", "Island of the glowing rocks", "Mountain of the glowing trees", "Ocean of the glowing plankton", "Forest of the floating orbs of light", "City of the floating waterfalls", "Island of the crystal butterflies", "Mountain of the floating stairs", "Palace of the floating diamonds", "Underwater world of the glowing seaweed", "Island of the floating palm trees", "Forest of the floating fireflies", "City of the floating stones", "Mountain of the floating pyramids", "Ocean of the glowing jellyfish", "Island of the floating lotus flowers", "Palace of the floating pearls", "Underwater world of the glowing fish", "City of the floating fountains", "Island of the crystal seashells", "Mountain of the floating crystals", "Forest of the glowing trees of life", "City of the floating gardens", "Island of the floating castles", "Palace of the floating gold", "Underwater world of the glowing starfish", "Mountain of the floating water", "Ocean of the glowing creatures", "Island of the floating lighthouses", "City of the floating sculptures", "Forest of the floating willow trees", "Mountain of the floating stones", "Palace of the floating pearls", "Underwater world of the glowing anemones", "Island of the floating pyramids", "City of the floating domes", "Mountain of the floating clouds", "Ocean of the glowing whales", "Forest of the floating flowers", "Island of the floating trees of life", "Palace of the floating diamonds and gold", "Underwater world of the glowing octopuses", "City of the floating pyramids", "Mountain of the floating stars", "Ocean of the glowing dolphins"
|
| 17 |
+
],
|
| 18 |
+
"SCENE": [
|
| 19 |
+
"afterlife", "wartime", "roman times", "ancient times", "prehistoric times", "harvest time", "turn of the century", "ephemera", "judgment day", "Halloween", "blue moon", "spring", "autumn", "summer", "winter", "hard times", "calmness", "deluge", "fogginess", "bad weahter", "dust devil", "gale", "solar halo", "wave", "airstream", "morning", "afternoon", "evening", "Daybreak", "Sunrise", "Morning", "Mid-morning", "Brunch time", "Afternoon", "Mid-afternoon", "Sunset", "Twilight", "Dusk", "Evening", "Nighttime", "Midnight", "Witching hour", "Wee hours", "Early morning", "Late morning", "Lunchtime", "Siesta time", "Cocktail hour", "Happy hour", "Golden hour", "Blue hour", "Magic hour", "Red skies", "Pink skies", "Orange skies", "Purple skies", "Starry night", "Moonlit night", "Cloudy night", "Clear night", "Full moon", "New moon", "Waxing moon", "Waning moon", "Harvest moon", "Blood moon", "Supermoon", "Blue moon", "Crescent moon", "Quarter moon", "Gibbous moon", "Meteor shower", "Shooting stars", "Northern lights", "Southern lights", "First light", "Last light", "Twilight zone", "Crepuscular rays", "Daytime heat", "Late afternoon glow", "Sundown", "Starlight", "Firefly light", "Electric light", "Torchlight", "Candlelight", "Incandescent light", "Fluorescent light", "LED light", "Streetlight", "Traffic light", "Neon light", "Sunrise colors", "Sunset colors", "Rainbow colors", "Sky blue", "Cloudy gray", "Hazy yellow", "Misty white", "Bright orange", "Fiery red", "Deep purple", "Vibrant green", "Cool blue", "Warm yellow", "Moody gray", "Rosy pink", "Rusty brown", "Burnt orange", "Golden yellow", "Pale blue", "Mellow yellow", "Soft pink", "Lavender purple", "Deep navy", "Bright white", "Pitch black", "Gray twilight", "Fiery sunset", "Glowing embers", "Bright skies", "Pale clouds", "Dark shadows", "Muted tones", "Silhouettes", "Low light", "Soft shadows", "Blue sky", "Pink horizon", "Orange dawn", "Red dawn", "Gray dawn", "Bright morning", "Early afternoon", "Late afternoon", "Sunset glow", "Evening breeze", "Cool night", "Warm night", "Starry sky", "Cloudy sky", "Sunny day", "Cloudy day", "Rainy day", "Foggy morning", "Misty evening", "Stormy night", "Thunderstorm", "Lightning", "Clear sky", "Sunny afternoon", "Rainbow after the rain", "Soft light", "Harsh light", "Darkening sky", "Changing light", "Fireworks at night", "Serene sunset", "Deep blue night", "Darkening evening", "Warm sunset", "Cold sunset", "Bright sunrise", "Cloudy sunrise", "Foggy sunrise", "Misty sunrise", "Gray morning", "Crisp morning", "Snowy morning", "Frosty morning", "Icy morning", "Sunny morning", "Overcast morning", "Calm night", "Peaceful morning", "Quiet night", "Peaceful evening", "Gloaming", "Golden hour", "Moonrise", "Moonset", "Dusk", "Dawn chorus", "Evening light", "Morning light", "Twilight", "Purple dawn", "Purple dusk", "Deep blue evening", "Pastel sky", "Stormy afternoon", "Gloomy day", "Clear night", "Full moon night", "New moon night", "Waning gibbous moon", "Waxing crescent moon", "Orbital sunrise", "Orbital sunset", "Midnight sun", "Polar night", "Summer solstice", "Winter solstice", "Equinox", "Golden sunset", "Dark sky", "Sunrise over the mountains", "Night sky with stars", "Northern lights at night", "Fireflies at night", "Sunny sky with clouds", "Overcast sky with clouds", "Rainy evening", "Misty morning on the lake", "Late sunset", "First light of day", "Last light of day", "Hazy sky", "Heat lightning", "Damp morning", "Fresh morning", "Thunderstorm at dusk", "Blizzard at dawn", "Raining gold", "Raining diamonds", "Raining red paint", "Snowing stones", "Diamond hail", "Rainbow hurricane", "Rainbow tornado", "Flame tornado", "Lightning storm at midnight", "Foggy afternoon", "Misty night", "Misty morning", "Clear morning", "Hazy evening", "Snowstorm at night", "Heatwave at noon", "Foggy evening", "Misty twilight", "Icy night", "Frosty morning", "Frosty evening", "Sunny day with a rainbow", "Sunny morning with rainbows", "Clear night sky with auroras", "Sunset with lightning", "Rainbow lightning storm", "Thunderstorm at noon", "Snowstorm at sunset", "Clear evening with meteor shower", "Foggy morning with rainbows", "Thunderstorm with hail", "Hailstorm at night", "Sandstorm at dawn", "Rainbow snowfall", "Rainbow hailstorm", "Lightning storm with rainbows", "Rainbow mist", "Sunset with pink lightning", "Snowstorm at dawn", "Hurricane at dawn", "Hurricane at sunset", "Sunny day with hurricane", "Sunny day with tornado", "Clear evening with fireflies", "Thunderstorm with fireflies", "Rainy morning with rainbows", "Clear day with auroras", "Aurora storm at night"
|
| 20 |
+
|
| 21 |
+
],
|
| 22 |
+
"ARTISTS": [
|
| 23 |
+
"Artstation", "by Agnes Lawrence Pelton", "by Akihito Yoshida", "by Alex Grey", "by Alexander Jansson", "by Alphonse Mucha", "by Andy Warhol", "by Artgerm", "by Asaf Hanuka", "by Aubrey Beardsley", "by Banksy", "by Beeple", "by Ben Enwonwu", "by Bob Eggleton", "by Caravaggio Michelangelo Merisi", "by Caspar David Friedrich", "by Chris Foss", "by Claude Monet", "by Dan Mumford", "by David Mann", "by Diego Velázquez", "by Disney Animation Studios", "by Édouard Manet", "by Esao Andrews", "by Frida Kahlo", "by Gediminas Pranckevicius", "by Georgia O'Keeffe", "by Greg Rutkowski", "by Gustave Doré", "by Gustave Klimt", "by H.R. Giger", "by Hayao Miyazaki", "by Henri Matisse", "by HP Lovecraft", "by Ivan Shishkin", "by Jack Kirby", "by Jackson Pollock", "by James Jean", "by Jim Burns", "by Johannes Vermeer", "by John William Waterhouse", "by Katsushika Hokusai", "by Kim Tschang Yeul", "by Ko Young Hoon", "by Leonardo da Vinci", "by Lisa Frank", "by M.C Escher", "by Mahmoud Saïd", "by Makoto Shinkai", "by Marc Simonetti", "by Mark Brooks", "by Michelangelo", "by Pablo Picasso", "by Paul Klee", "by Peter Mohrbacher", "by Pierre-Auguste Renoir", "by Pixar Animation Studios", "by Rembrandt", "by Richard Dadd", "by Rossdraws", "by Salvador Dalí", "by Sam does Arts", "by Sandro Botticelli", "by Ted Nasmith", "by Ten Hundred", "by Thomas Kinkade", "by Tivadar Csontváry Kosztka", "by Victo Ngai", "by Vincent di Fate", "by Vincent van Gogh", "by Wes Anderson", "by wlop", "by Yoshitaka Amano", "by Edgar Degas", "by Francis Bacon", "by Piet Mondrian", "by Rene Magritte", "by Mary Cassatt", "by Edward Hopper", "by Keith Harring", "by Jean-Michel Basquiat", "by Yayoi Kusama", "by Grant Wood", "by Artemisia Gentileschi", "by Edvard Munch", "by Egon Schiele", "by Wassily Kandinsky", "by Henri Cartier-Bresson", "by Norman Rockwell", "by James Abbott McNeill Whistler", "by Man Ray", "by Felix Nadar", "by Dorothea Lange", "by Annie Leibovitz", "by Richard Avedon", "by Helmut Newton"
|
| 24 |
+
],
|
| 25 |
+
"CGI RENDERINGS": [
|
| 26 |
+
"3D Render", "Corona Render", "Creature Design", "Cycles Render", "Detailed Render", "Environment Design", "Intricate Environment", "LSD Render", "Octane Render", "PBR", "Glass Caustics", "Global Illumination", "Subsurface Scattering"
|
| 27 |
+
],
|
| 28 |
+
"CGI SOFTWARES": [
|
| 29 |
+
"3D Model", "3D Sculpt", "3Ds Max Model", "Blender Model", "Cinema4d Model", "Maya Model", "Unreal Engine", "Zbrush Sculpt"
|
| 30 |
+
],
|
| 31 |
+
"CAMERAS": [
|
| 32 |
+
"Aerial View", "Canon50", "Cinematic", "Close-up", "Color Grading", "Dramatic", "Film Grain", "Fisheye Lens", "Glamor Shot", "Golden Hour", "HD", "Landscape", "Lens Flare", "Macro", "Polaroid", "Photoshoot", "Portrait", "Studio Lighting", "Vintage", "War Photography", "White Balance", "Wildlife Photography"
|
| 33 |
+
],
|
| 34 |
+
"CARVINGS AND ETCHINGS": [
|
| 35 |
+
"etching", "Linocut", "Paper Model", "Paper-Mache", "Papercutting", "Pyrography", "Wood-Carving"
|
| 36 |
+
],
|
| 37 |
+
"COLORS": [
|
| 38 |
+
"Beautiful Lighting", "Cold Color Palette", "Colorful", "Dynamic Lighting", "Electric Colors", "Infrared", "Pastel", "Neon", "Synthwave", "Warm Color Palette"
|
| 39 |
+
],
|
| 40 |
+
"DRAWING STYLES": [
|
| 41 |
+
"Cel Shading", "Children's Drawing", "Crosshatch", "Detailed and Intricate", "Doodle", "Dot Art", "Line Art", "Sketch"
|
| 42 |
+
],
|
| 43 |
+
"EMOTIONS": [
|
| 44 |
+
"Angry", "Bitter", "Disgusted", "Embarrassed", "Evil", "Excited", "Fear", "Funny", "Happy", "Horrifying", "Lonely", "Sad", "Serene", "Surprised", "Melancholic"
|
| 45 |
+
],
|
| 46 |
+
"PENS": [
|
| 47 |
+
"Chalk", "Colored Pencil", "Graphite", "Ink", "Oil Paint", "Pastel Art"
|
| 48 |
+
],
|
| 49 |
+
"VISUAL STYLES": [
|
| 50 |
+
"2D", "8-Bit", "16-Bit", "Anaglyph", "Anime", "Art Nouveau", "Bauhaus", "Baroque", "CGI", "Cartoon", "Comic Book", "Concept Art", "Constructivist", "Cubist", "Digital Art", "Dadaist", "Expressionist", "Fantasy", "Fauvist", "Figurative", "Graphic Novel", "Geometric", "Hard Edge Painting", "Hydrodipped", "Impressionistic", "Lithography", "Manga", "Minimalist", "Modern Art", "Mosaic", "Mural", "Naive", "Neoclassical", "Photo", "Realistic", "Rococo", "Romantic", "Street Art", "Symbolist", "Stuckist", "Surrealist", "Visual Novel", "Watercolor"
|
| 51 |
+
]
|
| 52 |
+
}
|
requirements.txt
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
accelerate
|
| 2 |
diffusers
|
| 3 |
invisible_watermark
|
|
|
|
| 1 |
+
gradio>=4.0
|
| 2 |
+
google-generativeai>=0.8.0
|
| 3 |
+
google-cloud-aiplatform>=1.49.0
|
| 4 |
+
Pillow>=10.0.0
|
| 5 |
+
pyperclip>=1.8.2
|
| 6 |
accelerate
|
| 7 |
diffusers
|
| 8 |
invisible_watermark
|