gitextract_7tv49soa/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── feature_request.md │ └── workflows/ │ ├── package-release.yml │ └── stale.yml ├── .gitignore ├── .python_dependencies/ │ └── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── absolute_path.py ├── api/ │ ├── __init__.py │ ├── backend/ │ │ ├── __init__.py │ │ └── backend.py │ └── models/ │ ├── __init__.py │ ├── control_net.py │ ├── fix_it_error.py │ ├── generation_arguments.py │ ├── generation_result.py │ ├── model.py │ ├── prompt.py │ ├── seamless_axes.py │ ├── step_preview_mode.py │ └── task.py ├── builtin_presets/ │ ├── Debug.py │ ├── Final.py │ └── Preview.py ├── classes.py ├── community_backends/ │ └── test.py ├── diffusers_backend.py ├── docs/ │ ├── AI_UPSCALING.md │ ├── DEVELOPMENT_ENVIRONMENT.md │ ├── HISTORY.md │ ├── IMAGE_GENERATION.md │ ├── INPAINT_OUTPAINT.md │ ├── RENDER_PASS.md │ ├── SETUP.md │ ├── TEXTURE_PROJECTION.md │ └── assets/ │ └── banner_image_prompt.json ├── engine/ │ ├── __init__.py │ ├── annotations/ │ │ ├── ade20k.py │ │ ├── compat.py │ │ ├── depth.py │ │ ├── normal.py │ │ ├── openpose.py │ │ └── viewport.py │ ├── engine.py │ ├── node.py │ ├── node_executor.py │ ├── node_tree.py │ └── nodes/ │ ├── annotation_nodes.py │ ├── input_nodes.py │ ├── pipeline_nodes.py │ └── utility_nodes.py ├── generator_process/ │ ├── __init__.py │ ├── actions/ │ │ ├── choose_device.py │ │ ├── control_net.py │ │ ├── controlnet_aux.py │ │ ├── convert_original_stable_diffusion_to_diffusers.py │ │ ├── depth_to_image.py │ │ ├── detect_seamless/ │ │ │ ├── __init__.py │ │ │ └── model.npz │ │ ├── huggingface_hub.py │ │ ├── image_to_image.py │ │ ├── inpaint.py │ │ ├── load_model.py │ │ ├── outpaint.py │ │ ├── prompt_to_image.py │ │ └── upscale.py │ ├── actor.py │ ├── block_in_use.py │ ├── directml_patches.py │ ├── future.py │ └── models/ │ ├── __init__.py │ ├── checkpoint.py │ ├── image_generation_result.py │ ├── model_config.py │ ├── model_type.py │ ├── optimizations.py │ ├── scheduler.py │ └── upscale_tiler.py ├── image_utils.py ├── operators/ │ ├── dream_texture.py │ ├── inpaint_area_brush.py │ ├── install_dependencies.py │ ├── notify_result.py │ ├── open_latest_version.py │ ├── project.py │ ├── upscale.py │ └── view_history.py ├── preferences.py ├── prompt_engineering.py ├── property_groups/ │ ├── control_net.py │ ├── dream_prompt.py │ └── seamless_result.py ├── realtime_viewport.py ├── render_pass.py ├── requirements/ │ ├── linux-rocm.txt │ ├── mac-mps-cpu.txt │ ├── win-dml.txt │ └── win-linux-cuda.txt ├── scripts/ │ ├── train_detect_seamless.py │ └── zip_dependencies.py ├── sd_configs/ │ ├── cldm_v15.yaml │ ├── cldm_v21.yaml │ ├── sd_xl_base.yaml │ ├── sd_xl_refiner.yaml │ ├── v1-inference.yaml │ ├── v2-inference-v.yaml │ ├── v2-inference.yaml │ ├── v2-inpainting-inference.yaml │ └── v2-midas-inference.yaml ├── tools.py ├── ui/ │ ├── panels/ │ │ ├── dream_texture.py │ │ ├── history.py │ │ ├── render_properties.py │ │ └── upscaling.py │ ├── presets.py │ └── space_types.py └── version.py