├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── data ├── accessories.json ├── additional_details.json ├── age_group.json ├── artform.json ├── artist.json ├── background.json ├── body_markings.json ├── body_types.json ├── clothing.json ├── composition.json ├── default_tags.json ├── device.json ├── digital_artform.json ├── ethnicity.json ├── expression.json ├── eye_colors.json ├── face_features.json ├── facial_hair.json ├── hair_color.json ├── hairstyles.json ├── lighting.json ├── makeup_styles.json ├── photo_framing.json ├── photo_type.json ├── photographer.json ├── photography_styles.json ├── place.json ├── pose.json ├── roles.json ├── skin_tone.json └── tattoos_scars.json ├── flux_prompt_generator.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/__init__.py -------------------------------------------------------------------------------- /data/accessories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/accessories.json -------------------------------------------------------------------------------- /data/additional_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/additional_details.json -------------------------------------------------------------------------------- /data/age_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/age_group.json -------------------------------------------------------------------------------- /data/artform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/artform.json -------------------------------------------------------------------------------- /data/artist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/artist.json -------------------------------------------------------------------------------- /data/background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/background.json -------------------------------------------------------------------------------- /data/body_markings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/body_markings.json -------------------------------------------------------------------------------- /data/body_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/body_types.json -------------------------------------------------------------------------------- /data/clothing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/clothing.json -------------------------------------------------------------------------------- /data/composition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/composition.json -------------------------------------------------------------------------------- /data/default_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/default_tags.json -------------------------------------------------------------------------------- /data/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/device.json -------------------------------------------------------------------------------- /data/digital_artform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/digital_artform.json -------------------------------------------------------------------------------- /data/ethnicity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/ethnicity.json -------------------------------------------------------------------------------- /data/expression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/expression.json -------------------------------------------------------------------------------- /data/eye_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/eye_colors.json -------------------------------------------------------------------------------- /data/face_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/face_features.json -------------------------------------------------------------------------------- /data/facial_hair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/facial_hair.json -------------------------------------------------------------------------------- /data/hair_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/hair_color.json -------------------------------------------------------------------------------- /data/hairstyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/hairstyles.json -------------------------------------------------------------------------------- /data/lighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/lighting.json -------------------------------------------------------------------------------- /data/makeup_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/makeup_styles.json -------------------------------------------------------------------------------- /data/photo_framing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/photo_framing.json -------------------------------------------------------------------------------- /data/photo_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/photo_type.json -------------------------------------------------------------------------------- /data/photographer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/photographer.json -------------------------------------------------------------------------------- /data/photography_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/photography_styles.json -------------------------------------------------------------------------------- /data/place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/place.json -------------------------------------------------------------------------------- /data/pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/pose.json -------------------------------------------------------------------------------- /data/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/roles.json -------------------------------------------------------------------------------- /data/skin_tone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/skin_tone.json -------------------------------------------------------------------------------- /data/tattoos_scars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/data/tattoos_scars.json -------------------------------------------------------------------------------- /flux_prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/flux_prompt_generator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairy-root/Flux-Prompt-Generator/HEAD/pyproject.toml --------------------------------------------------------------------------------