InvokeAI 4.2.5__tar.gz → 4.2.6a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/InvokeAI.egg-info/PKG-INFO +44 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/InvokeAI.egg-info/SOURCES.txt +6 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/PKG-INFO +44 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/README.md +43 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/dependencies.py +26 -24
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/app_info.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/board_images.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/boards.py +5 -7
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/download_queue.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/images.py +11 -9
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/model_manager.py +34 -52
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/session_queue.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api_app.py +7 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/baseinvocation.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/collections.py +2 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/compel.py +2 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/constants.py +0 -4
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/controlnet_image_processors.py +7 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/cv.py +2 -4
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/denoise_latents.py +2 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/fields.py +2 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/image.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/image_to_latents.py +24 -6
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/infill.py +3 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/latents_to_image.py +20 -6
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/math.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/metadata.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/model.py +5 -6
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/noise.py +2 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/param_easing.py +2 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/primitives.py +1 -7
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/prompt.py +2 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/scheduler.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/sdxl.py +2 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/strings.py +3 -9
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/tiled_multi_diffusion_denoise_latents.py +2 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/upscale.py +2 -4
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_image_records/board_image_records_sqlite.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_images/board_images_default.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_records/board_records_base.py +3 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_records/board_records_common.py +9 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_records/board_records_sqlite.py +59 -30
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/boards/boards_base.py +3 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/boards/boards_common.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/boards/boards_default.py +8 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/bulk_download/bulk_download_default.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/config/__init__.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/config/config_default.py +51 -40
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/download/__init__.py +2 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/download/download_default.py +6 -7
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/events/events_fastapievents.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_files/image_files_disk.py +6 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_records/image_records_base.py +10 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_records/image_records_sqlite.py +23 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/images/images_base.py +4 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/images/images_default.py +19 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_services.py +20 -21
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_stats/invocation_stats_default.py +4 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invoker.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_images/model_images_default.py +4 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_install/__init__.py +3 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_install/model_install_default.py +11 -12
- InvokeAI-4.2.6a1/invokeai/app/services/model_load/__init__.py +6 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_load/model_load_base.py +0 -6
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_load/model_load_default.py +1 -11
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_manager/__init__.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_manager/model_manager_base.py +6 -7
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_manager/model_manager_default.py +10 -11
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_records/model_records_sql.py +9 -10
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/names/names_default.py +1 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_processor/session_processor_default.py +5 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/graph.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite/sqlite_util.py +4 -0
- InvokeAI-4.2.6a1/invokeai/app/services/shared/sqlite_migrator/migrations/migration_12.py +35 -0
- InvokeAI-4.2.6a1/invokeai/app/services/shared/sqlite_migrator/migrations/migration_13.py +31 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/urls/urls_default.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/step_callback.py +2 -3
- InvokeAI-4.2.6a1/invokeai/backend/image_util/__init__.py +12 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/basicsr/rrdbnet_arch.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/depth_anything/model/dpt.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/dw_openpose/wholebody.py +2 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/ip_adapter/ip_adapter.py +6 -7
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/lora.py +3 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/__init__.py +4 -4
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/config.py +4 -4
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/__init__.py +4 -6
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/load_base.py +0 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/load_default.py +5 -44
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/memory_snapshot.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_cache/model_cache_default.py +12 -6
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_cache/model_locker.py +5 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loader_registry.py +2 -2
- InvokeAI-4.2.6a1/invokeai/backend/model_manager/load/model_loaders/controlnet.py +36 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loaders/generic_diffusers.py +2 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loaders/lora.py +3 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loaders/onnx.py +2 -3
- InvokeAI-4.2.6a1/invokeai/backend/model_manager/load/model_loaders/stable_diffusion.py +137 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loaders/textual_inversion.py +2 -2
- InvokeAI-4.2.6a1/invokeai/backend/model_manager/load/model_loaders/vae.py +35 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_util.py +27 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/merge.py +2 -8
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/metadata/__init__.py +2 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/metadata/fetch/__init__.py +2 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/metadata/fetch/fetch_base.py +5 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/metadata/fetch/huggingface.py +2 -3
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/metadata/metadata_base.py +2 -5
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/probe.py +5 -4
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/starter_models.py +16 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/util/select_hf_files.py +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_patcher.py +15 -10
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/onnx/onnx_runtime.py +1 -1
- InvokeAI-4.2.6a1/invokeai/backend/stable_diffusion/__init__.py +17 -0
- InvokeAI-4.2.6a1/invokeai/backend/stable_diffusion/diffusion/__init__.py +7 -0
- InvokeAI-4.2.6a1/invokeai/backend/stable_diffusion/schedulers/__init__.py +3 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/schedulers/schedulers.py +31 -1
- InvokeAI-4.2.6a1/invokeai/backend/stable_diffusion/vae_tiling.py +35 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/textual_inversion.py +9 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/__init__.py +2 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/devices.py +16 -0
- InvokeAI-4.2.6a1/invokeai/frontend/web/dist/assets/App-nFHfglBE.js +137 -0
- InvokeAI-4.2.5/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-C00Wxn4y.js → InvokeAI-4.2.6a1/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-tfWLF_vL.js +1 -1
- InvokeAI-4.2.6a1/invokeai/frontend/web/dist/assets/index-BQtOfIHO.js +510 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/index.html +1 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/en.json +24 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/invocation_api/__init__.py +2 -2
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/version/__init__.py +1 -1
- InvokeAI-4.2.6a1/invokeai/version/invokeai_version.py +1 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/pyproject.toml +6 -1
- InvokeAI-4.2.5/invokeai/app/services/model_load/__init__.py +0 -6
- InvokeAI-4.2.5/invokeai/backend/image_util/__init__.py +0 -7
- InvokeAI-4.2.5/invokeai/backend/model_manager/convert_ckpt_to_diffusers.py +0 -83
- InvokeAI-4.2.5/invokeai/backend/model_manager/libc_util.py +0 -75
- InvokeAI-4.2.5/invokeai/backend/model_manager/load/convert_cache/__init__.py +0 -4
- InvokeAI-4.2.5/invokeai/backend/model_manager/load/convert_cache/convert_cache_base.py +0 -28
- InvokeAI-4.2.5/invokeai/backend/model_manager/load/convert_cache/convert_cache_default.py +0 -83
- InvokeAI-4.2.5/invokeai/backend/model_manager/load/model_loaders/controlnet.py +0 -58
- InvokeAI-4.2.5/invokeai/backend/model_manager/load/model_loaders/stable_diffusion.py +0 -116
- InvokeAI-4.2.5/invokeai/backend/model_manager/load/model_loaders/vae.py +0 -64
- InvokeAI-4.2.5/invokeai/backend/stable_diffusion/__init__.py +0 -14
- InvokeAI-4.2.5/invokeai/backend/stable_diffusion/diffusion/__init__.py +0 -5
- InvokeAI-4.2.5/invokeai/backend/stable_diffusion/schedulers/__init__.py +0 -3
- InvokeAI-4.2.5/invokeai/frontend/web/dist/assets/App-D-nTCJ_n.js +0 -137
- InvokeAI-4.2.5/invokeai/frontend/web/dist/assets/index--24GrIy3.js +0 -510
- InvokeAI-4.2.5/invokeai/version/invokeai_version.py +0 -1
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/InvokeAI.egg-info/dependency_links.txt +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/InvokeAI.egg-info/entry_points.txt +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/InvokeAI.egg-info/requires.txt +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/InvokeAI.egg-info/top_level.txt +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/LICENSE +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/LICENSE-SD1+SD2.txt +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/LICENSE-SDXL.txt +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/no_cache_staticfiles.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/utilities.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/routers/workflows.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/api/sockets.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/assets/images/caution.png +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/blend_latents.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/create_denoise_mask.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/create_gradient_mask.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/crop_latents.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/custom_nodes/README.md +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/custom_nodes/init.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/facetools.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/ideal_size.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/ip_adapter.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/mask.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/resize_latents.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/t2i_adapter.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/tiles.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/invocations/util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/run_app.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_image_records/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_image_records/board_image_records_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_images/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_images/board_images_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/board_images/board_images_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/boards/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/bulk_download/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/bulk_download/bulk_download_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/bulk_download/bulk_download_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/config/config_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/download/download_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/events/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/events/events_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/events/events_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_files/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_files/image_files_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_files/image_files_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_records/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/image_records/image_records_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/images/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/images/images_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_cache/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_cache/invocation_cache_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_cache/invocation_cache_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_cache/invocation_cache_memory.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_stats/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_stats/invocation_stats_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/invocation_stats/invocation_stats_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/item_storage/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/item_storage/item_storage_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/item_storage/item_storage_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/item_storage/item_storage_memory.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_images/model_images_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_images/model_images_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_install/model_install_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_install/model_install_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_manager/model_manager_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_records/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/model_records/model_records_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/names/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/names/names_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/names/names_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/object_serializer/object_serializer_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/object_serializer/object_serializer_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/object_serializer/object_serializer_disk.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/object_serializer/object_serializer_forward_cache.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_processor/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_processor/session_processor_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_processor/session_processor_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_queue/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_queue/session_queue_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_queue/session_queue_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/session_queue/session_queue_sqlite.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/invocation_context.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/pagination.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite/sqlite_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite/sqlite_database.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_1.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_10.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_11.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_2.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_3.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_4.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_5.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_6.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_7.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_8.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_9.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/sqlite_migrator_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/shared/sqlite_migrator/sqlite_migrator_impl.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/urls/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/urls/urls_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/ESRGAN Upscaling with Canny ControlNet.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Face Detailer with IP-Adapter & Canny (See Note in Details).json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Multi ControlNet (Canny & Depth).json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Prompt from File.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Text to Image - SD1.5.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Text to Image - SDXL.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Text to Image with LoRA.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/default_workflows/Tiled Upscaling (Beta).json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/workflow_records_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/workflow_records_common.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/services/workflow_records/workflow_records_sqlite.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/shared/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/shared/models.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/controlnet_utils.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/custom_openapi.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/metaenum.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/misc.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/model_exclude_null.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/profiler.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/suppress_output.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/thumbnails.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/app/util/ti_utils.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/assets/fonts/inter/Inter-Regular.ttf +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/basicsr/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/basicsr/arch_util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/canny.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/depth_anything/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/depth_anything/model/blocks.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/depth_anything/utilities/util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/dw_openpose/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/dw_openpose/onnxdet.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/dw_openpose/onnxpose.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/dw_openpose/utils.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/hed.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/infill_methods/cv2_inpaint.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/infill_methods/lama.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/infill_methods/mosaic.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/infill_methods/patchmatch.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/infill_methods/tile.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/invisible_watermark.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/lineart.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/lineart_anime.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/pngwriter.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/realesrgan/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/realesrgan/realesrgan.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/safety_checker.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/image_util/util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/ip_adapter/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/ip_adapter/ip_attention_weights.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/ip_adapter/resampler.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_hash/hash_validator.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_hash/model_hash.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_cache/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_cache/model_cache_base.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loaders/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/model_loaders/ip_adapter.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/load/optimizations.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/search.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/util/libc_util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/model_manager/util/model_util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/raw_model.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusers_pipeline.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusion/conditioning_data.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusion/custom_atttention.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusion/regional_ip_data.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusion/regional_prompt_data.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusion/shared_invokeai_diffusion.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/diffusion/unet_attention_patcher.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/multi_diffusion_pipeline.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/stable_diffusion/seamless.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/tiles/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/tiles/tiles.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/tiles/utils.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/attention.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/catch_sigint.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/db_maintenance.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/hotfixes.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/logging.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/mask.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/mps_fixes.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/silence_warnings.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/test_utils.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/backend/util/util.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/controlnet/cldm_v15.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/controlnet/cldm_v21.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/sd_xl_base.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/sd_xl_inpaint.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/sd_xl_refiner.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v1-finetune.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v1-finetune_style.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v1-inference-v.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v1-inference.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v1-inpainting-inference.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v1-m1-finetune.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v2-inference-v.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v2-inference.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v2-inpainting-inference-v.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v2-inpainting-inference.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/configs/stable-diffusion/v2-midas-inference.yaml +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/cli/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/cli/arg_parser.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/install/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/install/import_images.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/__init__.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/App-DEu4J2pT.css +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-DzjsLZSc.css +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-alert-favicon.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-avatar-circle.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-avatar-square.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-favicon.png +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-favicon.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-key-char-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-key-char-sml.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-key-wht-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-key-wht-sml.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-symbol-char-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-symbol-char-sml.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-symbol-wht-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-symbol-wht-sml.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-symbol-ylw-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-tag-char-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-tag-char-sml.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-tag-lrg.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-tag-sml.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-wordmark-charcoal.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/invoke-wordmark-white.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/mask.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/images/transparent_bg.png +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-cyrillic-ext-wght-normal-DIEz8p5i.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-cyrillic-wght-normal-BmJJXa8e.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-greek-ext-wght-normal-D5AYLNiq.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-greek-wght-normal-DyIDNIyN.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-latin-ext-wght-normal-CN1pIXkb.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-latin-wght-normal-BgVq2Tq4.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/assets/inter-vietnamese-wght-normal-_GQuwPVU.woff2 +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/ar.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/az.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/bg.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/de.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/es.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/fi.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/fr.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/he.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/hu.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/it.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/ja.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/ko.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/mn.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/nl.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/pl.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/pt.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/pt_BR.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/ro.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/ru.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/sv.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/tr.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/uk.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/vi.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/zh_CN.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/dist/locales/zh_Hant.json +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/scripts/clean_translations.py +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/invokeai/frontend/web/static/docs/invoke-favicon-docs.svg +0 -0
- {InvokeAI-4.2.5 → InvokeAI-4.2.6a1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: InvokeAI
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.6a1
|
|
4
4
|
Summary: An implementation of Stable Diffusion which provides various new features and options to aid the image generation process
|
|
5
5
|
Author-email: The InvokeAI Project <lincoln.stein@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -232,12 +232,24 @@ License-File: LICENSE-SDXL.txt
|
|
|
232
232
|
|
|
233
233
|
Invoke is a leading creative engine built to empower professionals and enthusiasts alike. Generate and create stunning visual media using the latest AI-driven technologies. Invoke offers an industry leading web-based UI, and serves as the foundation for multiple commercial products.
|
|
234
234
|
|
|
235
|
-
|
|
235
|
+
Invoke is available in two editions:
|
|
236
|
+
|
|
237
|
+
| **Community Edition** | **Professional Edition** |
|
|
238
|
+
|----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
|
|
239
|
+
| **For users looking for a locally installed, self-hosted and self-managed service** | **For users or teams looking for a cloud-hosted, fully managed service** |
|
|
240
|
+
| - Free to use under a commercially-friendly license | - Monthly subscription fee with three different plan levels |
|
|
241
|
+
| - Download and install on compatible hardware | - Offers additional benefits, including multi-user support, improved model training, and more |
|
|
242
|
+
| - Includes all core studio features: generate, refine, iterate on images, and build workflows | - Hosted in the cloud for easy, secure model access and scalability |
|
|
243
|
+
| Quick Start -> [Installation and Updates][installation docs] | More Information -> [www.invoke.com/pricing](https://www.invoke.com/pricing) |
|
|
236
244
|
|
|
237
|
-
<div align="center">
|
|
238
245
|
|
|
239
246
|

|
|
240
247
|
|
|
248
|
+
# Documentation
|
|
249
|
+
| **Quick Links** |
|
|
250
|
+
|----------------------------------------------------------------------------------------------------------------------------|
|
|
251
|
+
| [Installation and Updates][installation docs] - [Documentation and Tutorials][docs home] - [Bug Reports][github issues] - [Contributing][contributing docs] |
|
|
252
|
+
|
|
241
253
|
</div>
|
|
242
254
|
|
|
243
255
|
## Quick Start
|
|
@@ -257,6 +269,33 @@ Invoke is a leading creative engine built to empower professionals and enthusias
|
|
|
257
269
|
|
|
258
270
|
More detail, including hardware requirements and manual install instructions, are available in the [installation documentation][installation docs].
|
|
259
271
|
|
|
272
|
+
## Docker Container
|
|
273
|
+
|
|
274
|
+
We publish official container images in Github Container Registry: https://github.com/invoke-ai/InvokeAI/pkgs/container/invokeai. Both CUDA and ROCm images are available. Check the above link for relevant tags.
|
|
275
|
+
|
|
276
|
+
> [!IMPORTANT]
|
|
277
|
+
> Ensure that Docker is set up to use the GPU. Refer to [NVIDIA][nvidia docker docs] or [AMD][amd docker docs] documentation.
|
|
278
|
+
|
|
279
|
+
### Generate!
|
|
280
|
+
|
|
281
|
+
Run the container, modifying the command as necessary:
|
|
282
|
+
|
|
283
|
+
```bash
|
|
284
|
+
docker run --runtime=nvidia --gpus=all --publish 9090:9090 ghcr.io/invoke-ai/invokeai
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
Then open `http://localhost:9090` and install some models using the Model Manager tab to begin generating.
|
|
288
|
+
|
|
289
|
+
For ROCm, add `--device /dev/kfd --device /dev/dri` to the `docker run` command.
|
|
290
|
+
|
|
291
|
+
### Persist your data
|
|
292
|
+
|
|
293
|
+
You will likely want to persist your workspace outside of the container. Use the `--volume /home/myuser/invokeai:/invokeai` flag to mount some local directory (using its **absolute** path) to the `/invokeai` path inside the container. Your generated images and models will reside there. You can use this directory with other InvokeAI installations, or switch between runtime directories as needed.
|
|
294
|
+
|
|
295
|
+
### DIY
|
|
296
|
+
|
|
297
|
+
Build your own image and customize the environment to match your needs using our `docker-compose` stack. See [README.md](./docker/README.md) in the [docker](./docker) directory.
|
|
298
|
+
|
|
260
299
|
## Troubleshooting, FAQ and Support
|
|
261
300
|
|
|
262
301
|
Please review our [FAQ][faq] for solutions to common installation problems and other issues.
|
|
@@ -334,3 +373,5 @@ Original portions of the software are Copyright © 2024 by respective contributo
|
|
|
334
373
|
[latest release link]: https://github.com/invoke-ai/InvokeAI/releases/latest
|
|
335
374
|
[translation status badge]: https://hosted.weblate.org/widgets/invokeai/-/svg-badge.svg
|
|
336
375
|
[translation status link]: https://hosted.weblate.org/engage/invokeai/
|
|
376
|
+
[nvidia docker docs]: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html
|
|
377
|
+
[amd docker docs]: https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/docker.html
|
|
@@ -167,6 +167,8 @@ invokeai/app/services/shared/sqlite_migrator/migrations/__init__.py
|
|
|
167
167
|
invokeai/app/services/shared/sqlite_migrator/migrations/migration_1.py
|
|
168
168
|
invokeai/app/services/shared/sqlite_migrator/migrations/migration_10.py
|
|
169
169
|
invokeai/app/services/shared/sqlite_migrator/migrations/migration_11.py
|
|
170
|
+
invokeai/app/services/shared/sqlite_migrator/migrations/migration_12.py
|
|
171
|
+
invokeai/app/services/shared/sqlite_migrator/migrations/migration_13.py
|
|
170
172
|
invokeai/app/services/shared/sqlite_migrator/migrations/migration_2.py
|
|
171
173
|
invokeai/app/services/shared/sqlite_migrator/migrations/migration_3.py
|
|
172
174
|
invokeai/app/services/shared/sqlite_migrator/migrations/migration_4.py
|
|
@@ -245,8 +247,6 @@ invokeai/backend/model_hash/hash_validator.py
|
|
|
245
247
|
invokeai/backend/model_hash/model_hash.py
|
|
246
248
|
invokeai/backend/model_manager/__init__.py
|
|
247
249
|
invokeai/backend/model_manager/config.py
|
|
248
|
-
invokeai/backend/model_manager/convert_ckpt_to_diffusers.py
|
|
249
|
-
invokeai/backend/model_manager/libc_util.py
|
|
250
250
|
invokeai/backend/model_manager/merge.py
|
|
251
251
|
invokeai/backend/model_manager/probe.py
|
|
252
252
|
invokeai/backend/model_manager/search.py
|
|
@@ -258,9 +258,6 @@ invokeai/backend/model_manager/load/memory_snapshot.py
|
|
|
258
258
|
invokeai/backend/model_manager/load/model_loader_registry.py
|
|
259
259
|
invokeai/backend/model_manager/load/model_util.py
|
|
260
260
|
invokeai/backend/model_manager/load/optimizations.py
|
|
261
|
-
invokeai/backend/model_manager/load/convert_cache/__init__.py
|
|
262
|
-
invokeai/backend/model_manager/load/convert_cache/convert_cache_base.py
|
|
263
|
-
invokeai/backend/model_manager/load/convert_cache/convert_cache_default.py
|
|
264
261
|
invokeai/backend/model_manager/load/model_cache/__init__.py
|
|
265
262
|
invokeai/backend/model_manager/load/model_cache/model_cache_base.py
|
|
266
263
|
invokeai/backend/model_manager/load/model_cache/model_cache_default.py
|
|
@@ -287,6 +284,7 @@ invokeai/backend/stable_diffusion/__init__.py
|
|
|
287
284
|
invokeai/backend/stable_diffusion/diffusers_pipeline.py
|
|
288
285
|
invokeai/backend/stable_diffusion/multi_diffusion_pipeline.py
|
|
289
286
|
invokeai/backend/stable_diffusion/seamless.py
|
|
287
|
+
invokeai/backend/stable_diffusion/vae_tiling.py
|
|
290
288
|
invokeai/backend/stable_diffusion/diffusion/__init__.py
|
|
291
289
|
invokeai/backend/stable_diffusion/diffusion/conditioning_data.py
|
|
292
290
|
invokeai/backend/stable_diffusion/diffusion/custom_atttention.py
|
|
@@ -334,11 +332,11 @@ invokeai/frontend/install/__init__.py
|
|
|
334
332
|
invokeai/frontend/install/import_images.py
|
|
335
333
|
invokeai/frontend/web/__init__.py
|
|
336
334
|
invokeai/frontend/web/dist/index.html
|
|
337
|
-
invokeai/frontend/web/dist/assets/App-D-nTCJ_n.js
|
|
338
335
|
invokeai/frontend/web/dist/assets/App-DEu4J2pT.css
|
|
339
|
-
invokeai/frontend/web/dist/assets/
|
|
336
|
+
invokeai/frontend/web/dist/assets/App-nFHfglBE.js
|
|
340
337
|
invokeai/frontend/web/dist/assets/ThemeLocaleProvider-DzjsLZSc.css
|
|
341
|
-
invokeai/frontend/web/dist/assets/
|
|
338
|
+
invokeai/frontend/web/dist/assets/ThemeLocaleProvider-tfWLF_vL.js
|
|
339
|
+
invokeai/frontend/web/dist/assets/index-BQtOfIHO.js
|
|
342
340
|
invokeai/frontend/web/dist/assets/inter-cyrillic-ext-wght-normal-DIEz8p5i.woff2
|
|
343
341
|
invokeai/frontend/web/dist/assets/inter-cyrillic-wght-normal-BmJJXa8e.woff2
|
|
344
342
|
invokeai/frontend/web/dist/assets/inter-greek-ext-wght-normal-D5AYLNiq.woff2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: InvokeAI
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.6a1
|
|
4
4
|
Summary: An implementation of Stable Diffusion which provides various new features and options to aid the image generation process
|
|
5
5
|
Author-email: The InvokeAI Project <lincoln.stein@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -232,12 +232,24 @@ License-File: LICENSE-SDXL.txt
|
|
|
232
232
|
|
|
233
233
|
Invoke is a leading creative engine built to empower professionals and enthusiasts alike. Generate and create stunning visual media using the latest AI-driven technologies. Invoke offers an industry leading web-based UI, and serves as the foundation for multiple commercial products.
|
|
234
234
|
|
|
235
|
-
|
|
235
|
+
Invoke is available in two editions:
|
|
236
|
+
|
|
237
|
+
| **Community Edition** | **Professional Edition** |
|
|
238
|
+
|----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
|
|
239
|
+
| **For users looking for a locally installed, self-hosted and self-managed service** | **For users or teams looking for a cloud-hosted, fully managed service** |
|
|
240
|
+
| - Free to use under a commercially-friendly license | - Monthly subscription fee with three different plan levels |
|
|
241
|
+
| - Download and install on compatible hardware | - Offers additional benefits, including multi-user support, improved model training, and more |
|
|
242
|
+
| - Includes all core studio features: generate, refine, iterate on images, and build workflows | - Hosted in the cloud for easy, secure model access and scalability |
|
|
243
|
+
| Quick Start -> [Installation and Updates][installation docs] | More Information -> [www.invoke.com/pricing](https://www.invoke.com/pricing) |
|
|
236
244
|
|
|
237
|
-
<div align="center">
|
|
238
245
|
|
|
239
246
|

|
|
240
247
|
|
|
248
|
+
# Documentation
|
|
249
|
+
| **Quick Links** |
|
|
250
|
+
|----------------------------------------------------------------------------------------------------------------------------|
|
|
251
|
+
| [Installation and Updates][installation docs] - [Documentation and Tutorials][docs home] - [Bug Reports][github issues] - [Contributing][contributing docs] |
|
|
252
|
+
|
|
241
253
|
</div>
|
|
242
254
|
|
|
243
255
|
## Quick Start
|
|
@@ -257,6 +269,33 @@ Invoke is a leading creative engine built to empower professionals and enthusias
|
|
|
257
269
|
|
|
258
270
|
More detail, including hardware requirements and manual install instructions, are available in the [installation documentation][installation docs].
|
|
259
271
|
|
|
272
|
+
## Docker Container
|
|
273
|
+
|
|
274
|
+
We publish official container images in Github Container Registry: https://github.com/invoke-ai/InvokeAI/pkgs/container/invokeai. Both CUDA and ROCm images are available. Check the above link for relevant tags.
|
|
275
|
+
|
|
276
|
+
> [!IMPORTANT]
|
|
277
|
+
> Ensure that Docker is set up to use the GPU. Refer to [NVIDIA][nvidia docker docs] or [AMD][amd docker docs] documentation.
|
|
278
|
+
|
|
279
|
+
### Generate!
|
|
280
|
+
|
|
281
|
+
Run the container, modifying the command as necessary:
|
|
282
|
+
|
|
283
|
+
```bash
|
|
284
|
+
docker run --runtime=nvidia --gpus=all --publish 9090:9090 ghcr.io/invoke-ai/invokeai
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
Then open `http://localhost:9090` and install some models using the Model Manager tab to begin generating.
|
|
288
|
+
|
|
289
|
+
For ROCm, add `--device /dev/kfd --device /dev/dri` to the `docker run` command.
|
|
290
|
+
|
|
291
|
+
### Persist your data
|
|
292
|
+
|
|
293
|
+
You will likely want to persist your workspace outside of the container. Use the `--volume /home/myuser/invokeai:/invokeai` flag to mount some local directory (using its **absolute** path) to the `/invokeai` path inside the container. Your generated images and models will reside there. You can use this directory with other InvokeAI installations, or switch between runtime directories as needed.
|
|
294
|
+
|
|
295
|
+
### DIY
|
|
296
|
+
|
|
297
|
+
Build your own image and customize the environment to match your needs using our `docker-compose` stack. See [README.md](./docker/README.md) in the [docker](./docker) directory.
|
|
298
|
+
|
|
260
299
|
## Troubleshooting, FAQ and Support
|
|
261
300
|
|
|
262
301
|
Please review our [FAQ][faq] for solutions to common installation problems and other issues.
|
|
@@ -334,3 +373,5 @@ Original portions of the software are Copyright © 2024 by respective contributo
|
|
|
334
373
|
[latest release link]: https://github.com/invoke-ai/InvokeAI/releases/latest
|
|
335
374
|
[translation status badge]: https://hosted.weblate.org/widgets/invokeai/-/svg-badge.svg
|
|
336
375
|
[translation status link]: https://hosted.weblate.org/engage/invokeai/
|
|
376
|
+
[nvidia docker docs]: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html
|
|
377
|
+
[amd docker docs]: https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/docker.html
|
|
@@ -12,12 +12,24 @@
|
|
|
12
12
|
|
|
13
13
|
Invoke is a leading creative engine built to empower professionals and enthusiasts alike. Generate and create stunning visual media using the latest AI-driven technologies. Invoke offers an industry leading web-based UI, and serves as the foundation for multiple commercial products.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Invoke is available in two editions:
|
|
16
|
+
|
|
17
|
+
| **Community Edition** | **Professional Edition** |
|
|
18
|
+
|----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
|
|
19
|
+
| **For users looking for a locally installed, self-hosted and self-managed service** | **For users or teams looking for a cloud-hosted, fully managed service** |
|
|
20
|
+
| - Free to use under a commercially-friendly license | - Monthly subscription fee with three different plan levels |
|
|
21
|
+
| - Download and install on compatible hardware | - Offers additional benefits, including multi-user support, improved model training, and more |
|
|
22
|
+
| - Includes all core studio features: generate, refine, iterate on images, and build workflows | - Hosted in the cloud for easy, secure model access and scalability |
|
|
23
|
+
| Quick Start -> [Installation and Updates][installation docs] | More Information -> [www.invoke.com/pricing](https://www.invoke.com/pricing) |
|
|
16
24
|
|
|
17
|
-
<div align="center">
|
|
18
25
|
|
|
19
26
|

|
|
20
27
|
|
|
28
|
+
# Documentation
|
|
29
|
+
| **Quick Links** |
|
|
30
|
+
|----------------------------------------------------------------------------------------------------------------------------|
|
|
31
|
+
| [Installation and Updates][installation docs] - [Documentation and Tutorials][docs home] - [Bug Reports][github issues] - [Contributing][contributing docs] |
|
|
32
|
+
|
|
21
33
|
</div>
|
|
22
34
|
|
|
23
35
|
## Quick Start
|
|
@@ -37,6 +49,33 @@ Invoke is a leading creative engine built to empower professionals and enthusias
|
|
|
37
49
|
|
|
38
50
|
More detail, including hardware requirements and manual install instructions, are available in the [installation documentation][installation docs].
|
|
39
51
|
|
|
52
|
+
## Docker Container
|
|
53
|
+
|
|
54
|
+
We publish official container images in Github Container Registry: https://github.com/invoke-ai/InvokeAI/pkgs/container/invokeai. Both CUDA and ROCm images are available. Check the above link for relevant tags.
|
|
55
|
+
|
|
56
|
+
> [!IMPORTANT]
|
|
57
|
+
> Ensure that Docker is set up to use the GPU. Refer to [NVIDIA][nvidia docker docs] or [AMD][amd docker docs] documentation.
|
|
58
|
+
|
|
59
|
+
### Generate!
|
|
60
|
+
|
|
61
|
+
Run the container, modifying the command as necessary:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
docker run --runtime=nvidia --gpus=all --publish 9090:9090 ghcr.io/invoke-ai/invokeai
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Then open `http://localhost:9090` and install some models using the Model Manager tab to begin generating.
|
|
68
|
+
|
|
69
|
+
For ROCm, add `--device /dev/kfd --device /dev/dri` to the `docker run` command.
|
|
70
|
+
|
|
71
|
+
### Persist your data
|
|
72
|
+
|
|
73
|
+
You will likely want to persist your workspace outside of the container. Use the `--volume /home/myuser/invokeai:/invokeai` flag to mount some local directory (using its **absolute** path) to the `/invokeai` path inside the container. Your generated images and models will reside there. You can use this directory with other InvokeAI installations, or switch between runtime directories as needed.
|
|
74
|
+
|
|
75
|
+
### DIY
|
|
76
|
+
|
|
77
|
+
Build your own image and customize the environment to match your needs using our `docker-compose` stack. See [README.md](./docker/README.md) in the [docker](./docker) directory.
|
|
78
|
+
|
|
40
79
|
## Troubleshooting, FAQ and Support
|
|
41
80
|
|
|
42
81
|
Please review our [FAQ][faq] for solutions to common installation problems and other issues.
|
|
@@ -114,3 +153,5 @@ Original portions of the software are Copyright © 2024 by respective contributo
|
|
|
114
153
|
[latest release link]: https://github.com/invoke-ai/InvokeAI/releases/latest
|
|
115
154
|
[translation status badge]: https://hosted.weblate.org/widgets/invokeai/-/svg-badge.svg
|
|
116
155
|
[translation status link]: https://hosted.weblate.org/engage/invokeai/
|
|
156
|
+
[nvidia docker docs]: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html
|
|
157
|
+
[amd docker docs]: https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/docker.html
|
|
@@ -4,37 +4,39 @@ from logging import Logger
|
|
|
4
4
|
|
|
5
5
|
import torch
|
|
6
6
|
|
|
7
|
+
from invokeai.app.services.board_image_records.board_image_records_sqlite import SqliteBoardImageRecordStorage
|
|
8
|
+
from invokeai.app.services.board_images.board_images_default import BoardImagesService
|
|
9
|
+
from invokeai.app.services.board_records.board_records_sqlite import SqliteBoardRecordStorage
|
|
10
|
+
from invokeai.app.services.boards.boards_default import BoardService
|
|
11
|
+
from invokeai.app.services.bulk_download.bulk_download_default import BulkDownloadService
|
|
12
|
+
from invokeai.app.services.config.config_default import InvokeAIAppConfig
|
|
13
|
+
from invokeai.app.services.download.download_default import DownloadQueueService
|
|
14
|
+
from invokeai.app.services.events.events_fastapievents import FastAPIEventService
|
|
15
|
+
from invokeai.app.services.image_files.image_files_disk import DiskImageFileStorage
|
|
16
|
+
from invokeai.app.services.image_records.image_records_sqlite import SqliteImageRecordStorage
|
|
17
|
+
from invokeai.app.services.images.images_default import ImageService
|
|
18
|
+
from invokeai.app.services.invocation_cache.invocation_cache_memory import MemoryInvocationCache
|
|
19
|
+
from invokeai.app.services.invocation_services import InvocationServices
|
|
20
|
+
from invokeai.app.services.invocation_stats.invocation_stats_default import InvocationStatsService
|
|
21
|
+
from invokeai.app.services.invoker import Invoker
|
|
22
|
+
from invokeai.app.services.model_images.model_images_default import ModelImageFileStorageDisk
|
|
23
|
+
from invokeai.app.services.model_manager.model_manager_default import ModelManagerService
|
|
24
|
+
from invokeai.app.services.model_records.model_records_sql import ModelRecordServiceSQL
|
|
25
|
+
from invokeai.app.services.names.names_default import SimpleNameService
|
|
7
26
|
from invokeai.app.services.object_serializer.object_serializer_disk import ObjectSerializerDisk
|
|
8
27
|
from invokeai.app.services.object_serializer.object_serializer_forward_cache import ObjectSerializerForwardCache
|
|
28
|
+
from invokeai.app.services.session_processor.session_processor_default import (
|
|
29
|
+
DefaultSessionProcessor,
|
|
30
|
+
DefaultSessionRunner,
|
|
31
|
+
)
|
|
32
|
+
from invokeai.app.services.session_queue.session_queue_sqlite import SqliteSessionQueue
|
|
9
33
|
from invokeai.app.services.shared.sqlite.sqlite_util import init_db
|
|
34
|
+
from invokeai.app.services.urls.urls_default import LocalUrlService
|
|
35
|
+
from invokeai.app.services.workflow_records.workflow_records_sqlite import SqliteWorkflowRecordsStorage
|
|
10
36
|
from invokeai.backend.stable_diffusion.diffusion.conditioning_data import ConditioningFieldData
|
|
11
37
|
from invokeai.backend.util.logging import InvokeAILogger
|
|
12
38
|
from invokeai.version.invokeai_version import __version__
|
|
13
39
|
|
|
14
|
-
from ..services.board_image_records.board_image_records_sqlite import SqliteBoardImageRecordStorage
|
|
15
|
-
from ..services.board_images.board_images_default import BoardImagesService
|
|
16
|
-
from ..services.board_records.board_records_sqlite import SqliteBoardRecordStorage
|
|
17
|
-
from ..services.boards.boards_default import BoardService
|
|
18
|
-
from ..services.bulk_download.bulk_download_default import BulkDownloadService
|
|
19
|
-
from ..services.config import InvokeAIAppConfig
|
|
20
|
-
from ..services.download import DownloadQueueService
|
|
21
|
-
from ..services.events.events_fastapievents import FastAPIEventService
|
|
22
|
-
from ..services.image_files.image_files_disk import DiskImageFileStorage
|
|
23
|
-
from ..services.image_records.image_records_sqlite import SqliteImageRecordStorage
|
|
24
|
-
from ..services.images.images_default import ImageService
|
|
25
|
-
from ..services.invocation_cache.invocation_cache_memory import MemoryInvocationCache
|
|
26
|
-
from ..services.invocation_services import InvocationServices
|
|
27
|
-
from ..services.invocation_stats.invocation_stats_default import InvocationStatsService
|
|
28
|
-
from ..services.invoker import Invoker
|
|
29
|
-
from ..services.model_images.model_images_default import ModelImageFileStorageDisk
|
|
30
|
-
from ..services.model_manager.model_manager_default import ModelManagerService
|
|
31
|
-
from ..services.model_records import ModelRecordServiceSQL
|
|
32
|
-
from ..services.names.names_default import SimpleNameService
|
|
33
|
-
from ..services.session_processor.session_processor_default import DefaultSessionProcessor, DefaultSessionRunner
|
|
34
|
-
from ..services.session_queue.session_queue_sqlite import SqliteSessionQueue
|
|
35
|
-
from ..services.urls.urls_default import LocalUrlService
|
|
36
|
-
from ..services.workflow_records.workflow_records_sqlite import SqliteWorkflowRecordsStorage
|
|
37
|
-
|
|
38
40
|
|
|
39
41
|
# TODO: is there a better way to achieve this?
|
|
40
42
|
def check_internet() -> bool:
|
|
@@ -10,14 +10,13 @@ from fastapi import Body
|
|
|
10
10
|
from fastapi.routing import APIRouter
|
|
11
11
|
from pydantic import BaseModel, Field
|
|
12
12
|
|
|
13
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
13
14
|
from invokeai.app.invocations.upscale import ESRGAN_MODELS
|
|
14
15
|
from invokeai.app.services.invocation_cache.invocation_cache_common import InvocationCacheStatus
|
|
15
16
|
from invokeai.backend.image_util.infill_methods.patchmatch import PatchMatch
|
|
16
17
|
from invokeai.backend.util.logging import logging
|
|
17
18
|
from invokeai.version import __version__
|
|
18
19
|
|
|
19
|
-
from ..dependencies import ApiDependencies
|
|
20
|
-
|
|
21
20
|
|
|
22
21
|
class LogLevel(int, Enum):
|
|
23
22
|
NotSet = logging.NOTSET
|
|
@@ -2,7 +2,7 @@ from fastapi import Body, HTTPException
|
|
|
2
2
|
from fastapi.routing import APIRouter
|
|
3
3
|
from pydantic import BaseModel, Field
|
|
4
4
|
|
|
5
|
-
from
|
|
5
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
6
6
|
|
|
7
7
|
board_images_router = APIRouter(prefix="/v1/board_images", tags=["boards"])
|
|
8
8
|
|
|
@@ -4,12 +4,11 @@ from fastapi import Body, HTTPException, Path, Query
|
|
|
4
4
|
from fastapi.routing import APIRouter
|
|
5
5
|
from pydantic import BaseModel, Field
|
|
6
6
|
|
|
7
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
7
8
|
from invokeai.app.services.board_records.board_records_common import BoardChanges
|
|
8
9
|
from invokeai.app.services.boards.boards_common import BoardDTO
|
|
9
10
|
from invokeai.app.services.shared.pagination import OffsetPaginatedResults
|
|
10
11
|
|
|
11
|
-
from ..dependencies import ApiDependencies
|
|
12
|
-
|
|
13
12
|
boards_router = APIRouter(prefix="/v1/boards", tags=["boards"])
|
|
14
13
|
|
|
15
14
|
|
|
@@ -32,6 +31,7 @@ class DeleteBoardResult(BaseModel):
|
|
|
32
31
|
)
|
|
33
32
|
async def create_board(
|
|
34
33
|
board_name: str = Query(description="The name of the board to create"),
|
|
34
|
+
is_private: bool = Query(default=False, description="Whether the board is private"),
|
|
35
35
|
) -> BoardDTO:
|
|
36
36
|
"""Creates a board"""
|
|
37
37
|
try:
|
|
@@ -118,15 +118,13 @@ async def list_boards(
|
|
|
118
118
|
all: Optional[bool] = Query(default=None, description="Whether to list all boards"),
|
|
119
119
|
offset: Optional[int] = Query(default=None, description="The page offset"),
|
|
120
120
|
limit: Optional[int] = Query(default=None, description="The number of boards per page"),
|
|
121
|
+
include_archived: bool = Query(default=False, description="Whether or not to include archived boards in list"),
|
|
121
122
|
) -> Union[OffsetPaginatedResults[BoardDTO], list[BoardDTO]]:
|
|
122
123
|
"""Gets a list of boards"""
|
|
123
124
|
if all:
|
|
124
|
-
return ApiDependencies.invoker.services.boards.get_all()
|
|
125
|
+
return ApiDependencies.invoker.services.boards.get_all(include_archived)
|
|
125
126
|
elif offset is not None and limit is not None:
|
|
126
|
-
return ApiDependencies.invoker.services.boards.get_many(
|
|
127
|
-
offset,
|
|
128
|
-
limit,
|
|
129
|
-
)
|
|
127
|
+
return ApiDependencies.invoker.services.boards.get_many(offset, limit, include_archived)
|
|
130
128
|
else:
|
|
131
129
|
raise HTTPException(
|
|
132
130
|
status_code=400,
|
|
@@ -8,13 +8,12 @@ from fastapi.routing import APIRouter
|
|
|
8
8
|
from pydantic.networks import AnyHttpUrl
|
|
9
9
|
from starlette.exceptions import HTTPException
|
|
10
10
|
|
|
11
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
11
12
|
from invokeai.app.services.download import (
|
|
12
13
|
DownloadJob,
|
|
13
14
|
UnknownJobIDException,
|
|
14
15
|
)
|
|
15
16
|
|
|
16
|
-
from ..dependencies import ApiDependencies
|
|
17
|
-
|
|
18
17
|
download_queue_router = APIRouter(prefix="/v1/download_queue", tags=["download_queue"])
|
|
19
18
|
|
|
20
19
|
|
|
@@ -8,12 +8,16 @@ from fastapi.routing import APIRouter
|
|
|
8
8
|
from PIL import Image
|
|
9
9
|
from pydantic import BaseModel, Field, JsonValue
|
|
10
10
|
|
|
11
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
11
12
|
from invokeai.app.invocations.fields import MetadataField
|
|
12
|
-
from invokeai.app.services.image_records.image_records_common import
|
|
13
|
+
from invokeai.app.services.image_records.image_records_common import (
|
|
14
|
+
ImageCategory,
|
|
15
|
+
ImageRecordChanges,
|
|
16
|
+
ResourceOrigin,
|
|
17
|
+
)
|
|
13
18
|
from invokeai.app.services.images.images_common import ImageDTO, ImageUrlsDTO
|
|
14
19
|
from invokeai.app.services.shared.pagination import OffsetPaginatedResults
|
|
15
|
-
|
|
16
|
-
from ..dependencies import ApiDependencies
|
|
20
|
+
from invokeai.app.services.shared.sqlite.sqlite_common import SQLiteDirection
|
|
17
21
|
|
|
18
22
|
images_router = APIRouter(prefix="/v1/images", tags=["images"])
|
|
19
23
|
|
|
@@ -316,16 +320,14 @@ async def list_image_dtos(
|
|
|
316
320
|
),
|
|
317
321
|
offset: int = Query(default=0, description="The page offset"),
|
|
318
322
|
limit: int = Query(default=10, description="The number of images per page"),
|
|
323
|
+
order_dir: SQLiteDirection = Query(default=SQLiteDirection.Descending, description="The order of sort"),
|
|
324
|
+
starred_first: bool = Query(default=True, description="Whether to sort by starred images first"),
|
|
325
|
+
search_term: Optional[str] = Query(default=None, description="The term to search for"),
|
|
319
326
|
) -> OffsetPaginatedResults[ImageDTO]:
|
|
320
327
|
"""Gets a list of image DTOs"""
|
|
321
328
|
|
|
322
329
|
image_dtos = ApiDependencies.invoker.services.images.get_many(
|
|
323
|
-
offset,
|
|
324
|
-
limit,
|
|
325
|
-
image_origin,
|
|
326
|
-
categories,
|
|
327
|
-
is_intermediate,
|
|
328
|
-
board_id,
|
|
330
|
+
offset, limit, starred_first, order_dir, image_origin, categories, is_intermediate, board_id, search_term
|
|
329
331
|
)
|
|
330
332
|
|
|
331
333
|
return image_dtos
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
import io
|
|
5
5
|
import pathlib
|
|
6
|
-
import shutil
|
|
7
6
|
import traceback
|
|
8
7
|
from copy import deepcopy
|
|
8
|
+
from tempfile import TemporaryDirectory
|
|
9
9
|
from typing import Any, Dict, List, Optional, Type
|
|
10
10
|
|
|
11
11
|
from fastapi import Body, Path, Query, Response, UploadFile
|
|
@@ -16,10 +16,10 @@ from pydantic import AnyHttpUrl, BaseModel, ConfigDict, Field
|
|
|
16
16
|
from starlette.exceptions import HTTPException
|
|
17
17
|
from typing_extensions import Annotated
|
|
18
18
|
|
|
19
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
19
20
|
from invokeai.app.services.model_images.model_images_common import ModelImageFileNotFoundException
|
|
20
21
|
from invokeai.app.services.model_install.model_install_common import ModelInstallJob
|
|
21
22
|
from invokeai.app.services.model_records import (
|
|
22
|
-
DuplicateModelException,
|
|
23
23
|
InvalidModelException,
|
|
24
24
|
ModelRecordChanges,
|
|
25
25
|
UnknownModelException,
|
|
@@ -30,15 +30,12 @@ from invokeai.backend.model_manager.config import (
|
|
|
30
30
|
MainCheckpointConfig,
|
|
31
31
|
ModelFormat,
|
|
32
32
|
ModelType,
|
|
33
|
-
SubModelType,
|
|
34
33
|
)
|
|
35
34
|
from invokeai.backend.model_manager.metadata.fetch.huggingface import HuggingFaceMetadataFetch
|
|
36
35
|
from invokeai.backend.model_manager.metadata.metadata_base import ModelMetadataWithFiles, UnknownMetadataException
|
|
37
36
|
from invokeai.backend.model_manager.search import ModelSearch
|
|
38
37
|
from invokeai.backend.model_manager.starter_models import STARTER_MODELS, StarterModel, StarterModelWithoutDependencies
|
|
39
38
|
|
|
40
|
-
from ..dependencies import ApiDependencies
|
|
41
|
-
|
|
42
39
|
model_manager_router = APIRouter(prefix="/v2/models", tags=["model_manager"])
|
|
43
40
|
|
|
44
41
|
# images are immutable; set a high max-age
|
|
@@ -174,18 +171,6 @@ async def get_model_record(
|
|
|
174
171
|
raise HTTPException(status_code=404, detail=str(e))
|
|
175
172
|
|
|
176
173
|
|
|
177
|
-
# @model_manager_router.get("/summary", operation_id="list_model_summary")
|
|
178
|
-
# async def list_model_summary(
|
|
179
|
-
# page: int = Query(default=0, description="The page to get"),
|
|
180
|
-
# per_page: int = Query(default=10, description="The number of models per page"),
|
|
181
|
-
# order_by: ModelRecordOrderBy = Query(default=ModelRecordOrderBy.Default, description="The attribute to order by"),
|
|
182
|
-
# ) -> PaginatedResults[ModelSummary]:
|
|
183
|
-
# """Gets a page of model summary data."""
|
|
184
|
-
# record_store = ApiDependencies.invoker.services.model_manager.store
|
|
185
|
-
# results: PaginatedResults[ModelSummary] = record_store.list_models(page=page, per_page=per_page, order_by=order_by)
|
|
186
|
-
# return results
|
|
187
|
-
|
|
188
|
-
|
|
189
174
|
class FoundModel(BaseModel):
|
|
190
175
|
path: str = Field(description="Path to the model")
|
|
191
176
|
is_installed: bool = Field(description="Whether or not the model is already installed")
|
|
@@ -746,39 +731,36 @@ async def convert_model(
|
|
|
746
731
|
logger.error(f"The model with key {key} is not a main checkpoint model.")
|
|
747
732
|
raise HTTPException(400, f"The model with key {key} is not a main checkpoint model.")
|
|
748
733
|
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
except DuplicateModelException as e:
|
|
780
|
-
logger.error(str(e))
|
|
781
|
-
raise HTTPException(status_code=409, detail=str(e))
|
|
734
|
+
with TemporaryDirectory(dir=ApiDependencies.invoker.services.configuration.models_path) as tmpdir:
|
|
735
|
+
convert_path = pathlib.Path(tmpdir) / pathlib.Path(model_config.path).stem
|
|
736
|
+
converted_model = loader.load_model(model_config)
|
|
737
|
+
# write the converted file to the convert path
|
|
738
|
+
raw_model = converted_model.model
|
|
739
|
+
assert hasattr(raw_model, "save_pretrained")
|
|
740
|
+
raw_model.save_pretrained(convert_path)
|
|
741
|
+
assert convert_path.exists()
|
|
742
|
+
|
|
743
|
+
# temporarily rename the original safetensors file so that there is no naming conflict
|
|
744
|
+
original_name = model_config.name
|
|
745
|
+
model_config.name = f"{original_name}.DELETE"
|
|
746
|
+
changes = ModelRecordChanges(name=model_config.name)
|
|
747
|
+
store.update_model(key, changes=changes)
|
|
748
|
+
|
|
749
|
+
# install the diffusers
|
|
750
|
+
try:
|
|
751
|
+
new_key = installer.install_path(
|
|
752
|
+
convert_path,
|
|
753
|
+
config={
|
|
754
|
+
"name": original_name,
|
|
755
|
+
"description": model_config.description,
|
|
756
|
+
"hash": model_config.hash,
|
|
757
|
+
"source": model_config.source,
|
|
758
|
+
},
|
|
759
|
+
)
|
|
760
|
+
except Exception as e:
|
|
761
|
+
logger.error(str(e))
|
|
762
|
+
store.update_model(key, changes=ModelRecordChanges(name=original_name))
|
|
763
|
+
raise HTTPException(status_code=409, detail=str(e))
|
|
782
764
|
|
|
783
765
|
# Update the model image if the model had one
|
|
784
766
|
try:
|
|
@@ -791,8 +773,8 @@ async def convert_model(
|
|
|
791
773
|
# delete the original safetensors file
|
|
792
774
|
installer.delete(key)
|
|
793
775
|
|
|
794
|
-
# delete the
|
|
795
|
-
shutil.rmtree(cache_path)
|
|
776
|
+
# delete the temporary directory
|
|
777
|
+
# shutil.rmtree(cache_path)
|
|
796
778
|
|
|
797
779
|
# return the config record for the new diffusers directory
|
|
798
780
|
new_config = store.get_model(new_key)
|
|
@@ -4,6 +4,7 @@ from fastapi import Body, Path, Query
|
|
|
4
4
|
from fastapi.routing import APIRouter
|
|
5
5
|
from pydantic import BaseModel
|
|
6
6
|
|
|
7
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
7
8
|
from invokeai.app.services.session_processor.session_processor_common import SessionProcessorStatus
|
|
8
9
|
from invokeai.app.services.session_queue.session_queue_common import (
|
|
9
10
|
QUEUE_ITEM_STATUS,
|
|
@@ -19,8 +20,6 @@ from invokeai.app.services.session_queue.session_queue_common import (
|
|
|
19
20
|
)
|
|
20
21
|
from invokeai.app.services.shared.pagination import CursorPaginatedResults
|
|
21
22
|
|
|
22
|
-
from ..dependencies import ApiDependencies
|
|
23
|
-
|
|
24
23
|
session_queue_router = APIRouter(prefix="/v1/queue", tags=["queue"])
|
|
25
24
|
|
|
26
25
|
|
|
@@ -20,14 +20,9 @@ from torch.backends.mps import is_available as is_mps_available
|
|
|
20
20
|
# noinspection PyUnresolvedReferences
|
|
21
21
|
import invokeai.backend.util.hotfixes # noqa: F401 (monkeypatching on import)
|
|
22
22
|
import invokeai.frontend.web as web_dir
|
|
23
|
+
from invokeai.app.api.dependencies import ApiDependencies
|
|
23
24
|
from invokeai.app.api.no_cache_staticfiles import NoCacheStaticFiles
|
|
24
|
-
from invokeai.app.
|
|
25
|
-
from invokeai.app.util.custom_openapi import get_openapi_func
|
|
26
|
-
from invokeai.backend.util.devices import TorchDevice
|
|
27
|
-
|
|
28
|
-
from ..backend.util.logging import InvokeAILogger
|
|
29
|
-
from .api.dependencies import ApiDependencies
|
|
30
|
-
from .api.routers import (
|
|
25
|
+
from invokeai.app.api.routers import (
|
|
31
26
|
app_info,
|
|
32
27
|
board_images,
|
|
33
28
|
boards,
|
|
@@ -38,7 +33,11 @@ from .api.routers import (
|
|
|
38
33
|
utilities,
|
|
39
34
|
workflows,
|
|
40
35
|
)
|
|
41
|
-
from .api.sockets import SocketIO
|
|
36
|
+
from invokeai.app.api.sockets import SocketIO
|
|
37
|
+
from invokeai.app.services.config.config_default import get_config
|
|
38
|
+
from invokeai.app.util.custom_openapi import get_openapi_func
|
|
39
|
+
from invokeai.backend.util.devices import TorchDevice
|
|
40
|
+
from invokeai.backend.util.logging import InvokeAILogger
|
|
42
41
|
|
|
43
42
|
app_config = get_config()
|
|
44
43
|
|