InvokeAI 4.0.4__tar.gz → 4.2.0__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.
Files changed (402) hide show
  1. InvokeAI-4.2.0/InvokeAI.egg-info/PKG-INFO +336 -0
  2. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/InvokeAI.egg-info/SOURCES.txt +15 -8
  3. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/InvokeAI.egg-info/requires.txt +6 -6
  4. InvokeAI-4.2.0/PKG-INFO +336 -0
  5. InvokeAI-4.2.0/README.md +116 -0
  6. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api_app.py +2 -2
  7. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/compel.py +44 -53
  8. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/controlnet_image_processors.py +71 -53
  9. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/fields.py +11 -1
  10. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/ip_adapter.py +37 -4
  11. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/latent.py +277 -72
  12. InvokeAI-4.2.0/invokeai/app/invocations/mask.py +120 -0
  13. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/metadata.py +2 -1
  14. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/noise.py +4 -4
  15. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/primitives.py +11 -0
  16. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/t2i_adapter.py +1 -1
  17. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/upscale.py +2 -8
  18. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/config/config_default.py +43 -14
  19. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/download/download_default.py +22 -4
  20. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_install/model_install_default.py +11 -18
  21. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_manager/model_manager_default.py +5 -3
  22. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/object_serializer/object_serializer_disk.py +7 -7
  23. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_processor/session_processor_default.py +6 -0
  24. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/invocation_context.py +12 -0
  25. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/controlnet_utils.py +136 -128
  26. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/depth_anything/__init__.py +4 -4
  27. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/dw_openpose/wholebody.py +3 -3
  28. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/hed.py +2 -2
  29. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/infill_methods/lama.py +2 -2
  30. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/realesrgan/realesrgan.py +2 -2
  31. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/safety_checker.py +2 -2
  32. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/util.py +26 -11
  33. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/load_default.py +2 -2
  34. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_cache/model_cache_default.py +14 -14
  35. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/merge.py +4 -3
  36. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/probe.py +1 -0
  37. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/starter_models.py +4 -4
  38. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/diffusers_pipeline.py +39 -68
  39. InvokeAI-4.2.0/invokeai/backend/stable_diffusion/diffusion/conditioning_data.py +123 -0
  40. InvokeAI-4.2.0/invokeai/backend/stable_diffusion/diffusion/custom_atttention.py +214 -0
  41. InvokeAI-4.2.0/invokeai/backend/stable_diffusion/diffusion/regional_ip_data.py +72 -0
  42. InvokeAI-4.2.0/invokeai/backend/stable_diffusion/diffusion/regional_prompt_data.py +105 -0
  43. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/diffusion/shared_invokeai_diffusion.py +132 -130
  44. InvokeAI-4.2.0/invokeai/backend/stable_diffusion/diffusion/unet_attention_patcher.py +68 -0
  45. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/schedulers/schedulers.py +2 -0
  46. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/__init__.py +0 -3
  47. InvokeAI-4.2.0/invokeai/backend/util/catch_sigint.py +29 -0
  48. InvokeAI-4.2.0/invokeai/backend/util/devices.py +110 -0
  49. InvokeAI-4.2.0/invokeai/backend/util/mask.py +53 -0
  50. InvokeAI-4.2.0/invokeai/configs/stable-diffusion/sd_xl_inpaint.yaml +98 -0
  51. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/App-BmN0HOJ3.js +137 -0
  52. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/App-DEu4J2pT.css +1 -0
  53. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-CLe3PvR9.js +1 -0
  54. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-DzjsLZSc.css +9 -0
  55. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/images/invoke-alert-favicon.svg +5 -0
  56. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/images/transparent_bg.png +0 -0
  57. InvokeAI-4.2.0/invokeai/frontend/web/dist/assets/index-CFsX_oMr.js +510 -0
  58. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/index.html +3 -3
  59. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/de.json +2 -1
  60. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/en.json +94 -5
  61. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/es.json +3 -1
  62. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/it.json +26 -9
  63. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/ja.json +1 -1
  64. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/ko.json +1 -1
  65. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/nl.json +2 -1
  66. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/ru.json +18 -6
  67. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/tr.json +2 -1
  68. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/zh_CN.json +21 -5
  69. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/invocation_api/__init__.py +0 -2
  70. InvokeAI-4.2.0/invokeai/version/invokeai_version.py +1 -0
  71. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/pyproject.toml +6 -7
  72. InvokeAI-4.0.4/InvokeAI.egg-info/PKG-INFO +0 -651
  73. InvokeAI-4.0.4/PKG-INFO +0 -651
  74. InvokeAI-4.0.4/README.md +0 -431
  75. InvokeAI-4.0.4/invokeai/backend/ip_adapter/attention_processor.py +0 -182
  76. InvokeAI-4.0.4/invokeai/backend/ip_adapter/unet_patcher.py +0 -53
  77. InvokeAI-4.0.4/invokeai/backend/stable_diffusion/diffusion/conditioning_data.py +0 -93
  78. InvokeAI-4.0.4/invokeai/backend/stable_diffusion/diffusion/cross_attention_control.py +0 -218
  79. InvokeAI-4.0.4/invokeai/backend/util/devices.py +0 -91
  80. InvokeAI-4.0.4/invokeai/frontend/web/dist/assets/App-CSqsGtxM.js +0 -128
  81. InvokeAI-4.0.4/invokeai/frontend/web/dist/assets/App-DI6oCUg0.css +0 -1
  82. InvokeAI-4.0.4/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-Bsx7ESc2.css +0 -9
  83. InvokeAI-4.0.4/invokeai/frontend/web/dist/assets/ThemeLocaleProvider-CwuwZXTI.js +0 -1
  84. InvokeAI-4.0.4/invokeai/frontend/web/dist/assets/index-7ad0WVcM.js +0 -514
  85. InvokeAI-4.0.4/invokeai/version/invokeai_version.py +0 -1
  86. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/InvokeAI.egg-info/dependency_links.txt +0 -0
  87. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/InvokeAI.egg-info/entry_points.txt +0 -0
  88. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/InvokeAI.egg-info/top_level.txt +0 -0
  89. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/LICENSE +0 -0
  90. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/LICENSE-SD1+SD2.txt +0 -0
  91. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/LICENSE-SDXL.txt +0 -0
  92. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/__init__.py +0 -0
  93. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/dependencies.py +0 -0
  94. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/events.py +0 -0
  95. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/no_cache_staticfiles.py +0 -0
  96. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/app_info.py +0 -0
  97. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/board_images.py +0 -0
  98. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/boards.py +0 -0
  99. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/download_queue.py +0 -0
  100. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/images.py +0 -0
  101. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/model_manager.py +0 -0
  102. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/session_queue.py +0 -0
  103. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/utilities.py +0 -0
  104. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/routers/workflows.py +0 -0
  105. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/api/sockets.py +0 -0
  106. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/assets/images/caution.png +0 -0
  107. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/__init__.py +0 -0
  108. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/baseinvocation.py +0 -0
  109. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/collections.py +0 -0
  110. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/constants.py +0 -0
  111. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/custom_nodes/README.md +0 -0
  112. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/custom_nodes/init.py +0 -0
  113. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/cv.py +0 -0
  114. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/facetools.py +0 -0
  115. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/image.py +0 -0
  116. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/infill.py +0 -0
  117. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/math.py +0 -0
  118. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/model.py +0 -0
  119. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/param_easing.py +0 -0
  120. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/prompt.py +0 -0
  121. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/sdxl.py +0 -0
  122. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/strings.py +0 -0
  123. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/tiles.py +0 -0
  124. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/invocations/util.py +0 -0
  125. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/run_app.py +0 -0
  126. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/__init__.py +0 -0
  127. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_image_records/__init__.py +0 -0
  128. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_image_records/board_image_records_base.py +0 -0
  129. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_image_records/board_image_records_sqlite.py +0 -0
  130. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_images/__init__.py +0 -0
  131. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_images/board_images_base.py +0 -0
  132. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_images/board_images_common.py +0 -0
  133. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_images/board_images_default.py +0 -0
  134. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_records/board_records_base.py +0 -0
  135. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_records/board_records_common.py +0 -0
  136. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/board_records/board_records_sqlite.py +0 -0
  137. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/boards/__init__.py +0 -0
  138. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/boards/boards_base.py +0 -0
  139. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/boards/boards_common.py +0 -0
  140. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/boards/boards_default.py +0 -0
  141. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/bulk_download/__init__.py +0 -0
  142. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/bulk_download/bulk_download_base.py +0 -0
  143. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/bulk_download/bulk_download_common.py +0 -0
  144. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/bulk_download/bulk_download_default.py +0 -0
  145. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/config/__init__.py +0 -0
  146. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/config/config_common.py +0 -0
  147. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/download/__init__.py +0 -0
  148. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/download/download_base.py +0 -0
  149. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/events/__init__.py +0 -0
  150. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/events/events_base.py +0 -0
  151. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_files/__init__.py +0 -0
  152. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_files/image_files_base.py +0 -0
  153. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_files/image_files_common.py +0 -0
  154. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_files/image_files_disk.py +0 -0
  155. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_records/__init__.py +0 -0
  156. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_records/image_records_base.py +0 -0
  157. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_records/image_records_common.py +0 -0
  158. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/image_records/image_records_sqlite.py +0 -0
  159. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/images/__init__.py +0 -0
  160. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/images/images_base.py +0 -0
  161. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/images/images_common.py +0 -0
  162. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/images/images_default.py +0 -0
  163. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_cache/__init__.py +0 -0
  164. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_cache/invocation_cache_base.py +0 -0
  165. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_cache/invocation_cache_common.py +0 -0
  166. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_cache/invocation_cache_memory.py +0 -0
  167. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_services.py +0 -0
  168. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_stats/__init__.py +0 -0
  169. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_stats/invocation_stats_base.py +0 -0
  170. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_stats/invocation_stats_common.py +0 -0
  171. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invocation_stats/invocation_stats_default.py +0 -0
  172. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/invoker.py +0 -0
  173. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/item_storage/__init__.py +0 -0
  174. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/item_storage/item_storage_base.py +0 -0
  175. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/item_storage/item_storage_common.py +0 -0
  176. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/item_storage/item_storage_memory.py +0 -0
  177. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_images/model_images_base.py +0 -0
  178. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_images/model_images_common.py +0 -0
  179. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_images/model_images_default.py +0 -0
  180. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_install/__init__.py +0 -0
  181. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_install/model_install_base.py +0 -0
  182. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_load/__init__.py +0 -0
  183. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_load/model_load_base.py +0 -0
  184. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_load/model_load_default.py +0 -0
  185. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_manager/__init__.py +0 -0
  186. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_manager/model_manager_base.py +0 -0
  187. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_manager/model_manager_common.py +0 -0
  188. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_records/__init__.py +0 -0
  189. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_records/model_records_base.py +0 -0
  190. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/model_records/model_records_sql.py +0 -0
  191. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/names/__init__.py +0 -0
  192. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/names/names_base.py +0 -0
  193. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/names/names_common.py +0 -0
  194. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/names/names_default.py +0 -0
  195. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/object_serializer/object_serializer_base.py +0 -0
  196. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/object_serializer/object_serializer_common.py +0 -0
  197. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/object_serializer/object_serializer_forward_cache.py +0 -0
  198. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_processor/__init__.py +0 -0
  199. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_processor/session_processor_base.py +0 -0
  200. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_processor/session_processor_common.py +0 -0
  201. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_queue/__init__.py +0 -0
  202. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_queue/session_queue_base.py +0 -0
  203. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_queue/session_queue_common.py +0 -0
  204. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/session_queue/session_queue_sqlite.py +0 -0
  205. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/__init__.py +0 -0
  206. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/graph.py +0 -0
  207. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/pagination.py +0 -0
  208. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite/__init__.py +0 -0
  209. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite/sqlite_common.py +0 -0
  210. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite/sqlite_database.py +0 -0
  211. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite/sqlite_util.py +0 -0
  212. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/__init__.py +0 -0
  213. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/__init__.py +0 -0
  214. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_1.py +0 -0
  215. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_2.py +0 -0
  216. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_3.py +0 -0
  217. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_4.py +0 -0
  218. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_5.py +0 -0
  219. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_6.py +0 -0
  220. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_7.py +0 -0
  221. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_8.py +0 -0
  222. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/migrations/migration_9.py +0 -0
  223. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/sqlite_migrator_common.py +0 -0
  224. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/shared/sqlite_migrator/sqlite_migrator_impl.py +0 -0
  225. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/urls/__init__.py +0 -0
  226. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/urls/urls_base.py +0 -0
  227. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/urls/urls_default.py +0 -0
  228. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/__init__.py +0 -0
  229. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/ESRGAN Upscaling with Canny ControlNet.json +0 -0
  230. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Face Detailer with IP-Adapter & Canny (See Note in Details).json +0 -0
  231. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Multi ControlNet (Canny & Depth).json +0 -0
  232. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Prompt from File.json +0 -0
  233. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Text to Image - SD1.5.json +0 -0
  234. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Text to Image - SDXL.json +0 -0
  235. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Text to Image with LoRA.json +0 -0
  236. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/default_workflows/Tiled Upscaling (Beta).json +0 -0
  237. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/workflow_records_base.py +0 -0
  238. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/workflow_records_common.py +0 -0
  239. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/services/workflow_records/workflow_records_sqlite.py +0 -0
  240. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/shared/__init__.py +0 -0
  241. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/shared/models.py +0 -0
  242. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/__init__.py +0 -0
  243. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/download_with_progress.py +0 -0
  244. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/metaenum.py +0 -0
  245. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/misc.py +0 -0
  246. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/model_exclude_null.py +0 -0
  247. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/profiler.py +0 -0
  248. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/step_callback.py +0 -0
  249. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/suppress_output.py +0 -0
  250. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/thumbnails.py +0 -0
  251. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/app/util/ti_utils.py +0 -0
  252. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/assets/fonts/inter/Inter-Regular.ttf +0 -0
  253. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/__init__.py +0 -0
  254. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/__init__.py +0 -0
  255. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/basicsr/__init__.py +0 -0
  256. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/basicsr/arch_util.py +0 -0
  257. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/basicsr/rrdbnet_arch.py +0 -0
  258. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/canny.py +0 -0
  259. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/depth_anything/model/blocks.py +0 -0
  260. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/depth_anything/model/dpt.py +0 -0
  261. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/depth_anything/utilities/util.py +0 -0
  262. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/dw_openpose/__init__.py +0 -0
  263. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/dw_openpose/onnxdet.py +0 -0
  264. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/dw_openpose/onnxpose.py +0 -0
  265. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/dw_openpose/utils.py +0 -0
  266. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/infill_methods/cv2_inpaint.py +0 -0
  267. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/infill_methods/mosaic.py +0 -0
  268. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/infill_methods/patchmatch.py +0 -0
  269. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/infill_methods/tile.py +0 -0
  270. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/invisible_watermark.py +0 -0
  271. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/lineart.py +0 -0
  272. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/lineart_anime.py +0 -0
  273. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/pngwriter.py +0 -0
  274. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/realesrgan/__init__.py +0 -0
  275. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/image_util/seamless.py +0 -0
  276. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/ip_adapter/__init__.py +0 -0
  277. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/ip_adapter/ip_adapter.py +0 -0
  278. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/ip_adapter/ip_attention_weights.py +0 -0
  279. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/ip_adapter/resampler.py +0 -0
  280. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/lora.py +0 -0
  281. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_hash/model_hash.py +0 -0
  282. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/__init__.py +0 -0
  283. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/config.py +1 -1
  284. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/convert_ckpt_to_diffusers.py +0 -0
  285. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/libc_util.py +0 -0
  286. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/__init__.py +0 -0
  287. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/convert_cache/__init__.py +0 -0
  288. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/convert_cache/convert_cache_base.py +0 -0
  289. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/convert_cache/convert_cache_default.py +0 -0
  290. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/load_base.py +0 -0
  291. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/memory_snapshot.py +0 -0
  292. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_cache/__init__.py +0 -0
  293. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_cache/model_cache_base.py +0 -0
  294. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_cache/model_locker.py +0 -0
  295. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loader_registry.py +0 -0
  296. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/__init__.py +0 -0
  297. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/controlnet.py +0 -0
  298. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/generic_diffusers.py +0 -0
  299. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/ip_adapter.py +0 -0
  300. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/lora.py +0 -0
  301. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/onnx.py +0 -0
  302. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/stable_diffusion.py +0 -0
  303. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/textual_inversion.py +0 -0
  304. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_loaders/vae.py +0 -0
  305. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/model_util.py +0 -0
  306. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/load/optimizations.py +0 -0
  307. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/metadata/__init__.py +0 -0
  308. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/metadata/fetch/__init__.py +0 -0
  309. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/metadata/fetch/fetch_base.py +0 -0
  310. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/metadata/fetch/huggingface.py +0 -0
  311. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/metadata/metadata_base.py +0 -0
  312. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/search.py +0 -0
  313. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/util/libc_util.py +0 -0
  314. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/util/model_util.py +0 -0
  315. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_manager/util/select_hf_files.py +0 -0
  316. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/model_patcher.py +0 -0
  317. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/onnx/onnx_runtime.py +0 -0
  318. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/raw_model.py +0 -0
  319. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/__init__.py +0 -0
  320. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/diffusion/__init__.py +0 -0
  321. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/schedulers/__init__.py +0 -0
  322. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/stable_diffusion/seamless.py +0 -0
  323. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/textual_inversion.py +0 -0
  324. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/tiles/__init__.py +0 -0
  325. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/tiles/tiles.py +0 -0
  326. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/tiles/utils.py +0 -0
  327. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/attention.py +0 -0
  328. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/db_maintenance.py +0 -0
  329. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/hotfixes.py +0 -0
  330. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/logging.py +0 -0
  331. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/mps_fixes.py +0 -0
  332. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/silence_warnings.py +0 -0
  333. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/test_utils.py +0 -0
  334. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/backend/util/util.py +0 -0
  335. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/controlnet/cldm_v15.yaml +0 -0
  336. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/controlnet/cldm_v21.yaml +0 -0
  337. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/sd_xl_base.yaml +0 -0
  338. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/sd_xl_refiner.yaml +0 -0
  339. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v1-finetune.yaml +0 -0
  340. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v1-finetune_style.yaml +0 -0
  341. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v1-inference-v.yaml +0 -0
  342. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v1-inference.yaml +0 -0
  343. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v1-inpainting-inference.yaml +0 -0
  344. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v1-m1-finetune.yaml +0 -0
  345. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v2-inference-v.yaml +0 -0
  346. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v2-inference.yaml +0 -0
  347. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v2-inpainting-inference-v.yaml +0 -0
  348. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v2-inpainting-inference.yaml +0 -0
  349. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/configs/stable-diffusion/v2-midas-inference.yaml +0 -0
  350. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/__init__.py +0 -0
  351. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/cli/__init__.py +0 -0
  352. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/cli/arg_parser.py +0 -0
  353. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/install/__init__.py +0 -0
  354. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/install/import_images.py +0 -0
  355. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/__init__.py +0 -0
  356. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-avatar-circle.svg +0 -0
  357. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-avatar-square.svg +0 -0
  358. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-favicon.png +0 -0
  359. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-favicon.svg +0 -0
  360. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-key-char-lrg.svg +0 -0
  361. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-key-char-sml.svg +0 -0
  362. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-key-wht-lrg.svg +0 -0
  363. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-key-wht-sml.svg +0 -0
  364. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-symbol-char-lrg.svg +0 -0
  365. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-symbol-char-sml.svg +0 -0
  366. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-symbol-wht-lrg.svg +0 -0
  367. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-symbol-wht-sml.svg +0 -0
  368. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-symbol-ylw-lrg.svg +0 -0
  369. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-tag-char-lrg.svg +0 -0
  370. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-tag-char-sml.svg +0 -0
  371. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-tag-lrg.svg +0 -0
  372. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-tag-sml.svg +0 -0
  373. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-wordmark-charcoal.svg +0 -0
  374. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/invoke-wordmark-white.svg +0 -0
  375. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/images/mask.svg +0 -0
  376. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-cyrillic-ext-wght-normal-DIEz8p5i.woff2 +0 -0
  377. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-cyrillic-wght-normal-BmJJXa8e.woff2 +0 -0
  378. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-greek-ext-wght-normal-D5AYLNiq.woff2 +0 -0
  379. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-greek-wght-normal-DyIDNIyN.woff2 +0 -0
  380. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-latin-ext-wght-normal-CN1pIXkb.woff2 +0 -0
  381. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-latin-wght-normal-BgVq2Tq4.woff2 +0 -0
  382. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/assets/inter-vietnamese-wght-normal-_GQuwPVU.woff2 +0 -0
  383. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/ar.json +0 -0
  384. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/az.json +0 -0
  385. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/bg.json +0 -0
  386. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/fi.json +0 -0
  387. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/fr.json +0 -0
  388. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/he.json +0 -0
  389. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/hu.json +0 -0
  390. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/mn.json +0 -0
  391. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/pl.json +0 -0
  392. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/pt.json +0 -0
  393. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/pt_BR.json +0 -0
  394. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/ro.json +0 -0
  395. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/sv.json +0 -0
  396. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/uk.json +0 -0
  397. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/vi.json +0 -0
  398. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/dist/locales/zh_Hant.json +0 -0
  399. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/scripts/clean_translations.py +0 -0
  400. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/frontend/web/static/docs/invoke-favicon-docs.svg +0 -0
  401. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/invokeai/version/__init__.py +0 -0
  402. {InvokeAI-4.0.4 → InvokeAI-4.2.0}/setup.cfg +0 -0
@@ -0,0 +1,336 @@
1
+ Metadata-Version: 2.1
2
+ Name: InvokeAI
3
+ Version: 4.2.0
4
+ Summary: An implementation of Stable Diffusion which provides various new features and options to aid the image generation process
5
+ Author-email: The InvokeAI Project <lincoln.stein@gmail.com>
6
+ License: Apache License
7
+ Version 2.0, January 2004
8
+ http://www.apache.org/licenses/
9
+
10
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
+
12
+ 1. Definitions.
13
+
14
+ "License" shall mean the terms and conditions for use, reproduction,
15
+ and distribution as defined by Sections 1 through 9 of this document.
16
+
17
+ "Licensor" shall mean the copyright owner or entity authorized by
18
+ the copyright owner that is granting the License.
19
+
20
+ "Legal Entity" shall mean the union of the acting entity and all
21
+ other entities that control, are controlled by, or are under common
22
+ control with that entity. For the purposes of this definition,
23
+ "control" means (i) the power, direct or indirect, to cause the
24
+ direction or management of such entity, whether by contract or
25
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
+ outstanding shares, or (iii) beneficial ownership of such entity.
27
+
28
+ "You" (or "Your") shall mean an individual or Legal Entity
29
+ exercising permissions granted by this License.
30
+
31
+ "Source" form shall mean the preferred form for making modifications,
32
+ including but not limited to software source code, documentation
33
+ source, and configuration files.
34
+
35
+ "Object" form shall mean any form resulting from mechanical
36
+ transformation or translation of a Source form, including but
37
+ not limited to compiled object code, generated documentation,
38
+ and conversions to other media types.
39
+
40
+ "Work" shall mean the work of authorship, whether in Source or
41
+ Object form, made available under the License, as indicated by a
42
+ copyright notice that is included in or attached to the work
43
+ (an example is provided in the Appendix below).
44
+
45
+ "Derivative Works" shall mean any work, whether in Source or Object
46
+ form, that is based on (or derived from) the Work and for which the
47
+ editorial revisions, annotations, elaborations, or other modifications
48
+ represent, as a whole, an original work of authorship. For the purposes
49
+ of this License, Derivative Works shall not include works that remain
50
+ separable from, or merely link (or bind by name) to the interfaces of,
51
+ the Work and Derivative Works thereof.
52
+
53
+ "Contribution" shall mean any work of authorship, including
54
+ the original version of the Work and any modifications or additions
55
+ to that Work or Derivative Works thereof, that is intentionally
56
+ submitted to Licensor for inclusion in the Work by the copyright owner
57
+ or by an individual or Legal Entity authorized to submit on behalf of
58
+ the copyright owner. For the purposes of this definition, "submitted"
59
+ means any form of electronic, verbal, or written communication sent
60
+ to the Licensor or its representatives, including but not limited to
61
+ communication on electronic mailing lists, source code control systems,
62
+ and issue tracking systems that are managed by, or on behalf of, the
63
+ Licensor for the purpose of discussing and improving the Work, but
64
+ excluding communication that is conspicuously marked or otherwise
65
+ designated in writing by the copyright owner as "Not a Contribution."
66
+
67
+ "Contributor" shall mean Licensor and any individual or Legal Entity
68
+ on behalf of whom a Contribution has been received by Licensor and
69
+ subsequently incorporated within the Work.
70
+
71
+ 2. Grant of Copyright License. Subject to the terms and conditions of
72
+ this License, each Contributor hereby grants to You a perpetual,
73
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
+ copyright license to reproduce, prepare Derivative Works of,
75
+ publicly display, publicly perform, sublicense, and distribute the
76
+ Work and such Derivative Works in Source or Object form.
77
+
78
+ 3. Grant of Patent License. Subject to the terms and conditions of
79
+ this License, each Contributor hereby grants to You a perpetual,
80
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
+ (except as stated in this section) patent license to make, have made,
82
+ use, offer to sell, sell, import, and otherwise transfer the Work,
83
+ where such license applies only to those patent claims licensable
84
+ by such Contributor that are necessarily infringed by their
85
+ Contribution(s) alone or by combination of their Contribution(s)
86
+ with the Work to which such Contribution(s) was submitted. If You
87
+ institute patent litigation against any entity (including a
88
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
89
+ or a Contribution incorporated within the Work constitutes direct
90
+ or contributory patent infringement, then any patent licenses
91
+ granted to You under this License for that Work shall terminate
92
+ as of the date such litigation is filed.
93
+
94
+ 4. Redistribution. You may reproduce and distribute copies of the
95
+ Work or Derivative Works thereof in any medium, with or without
96
+ modifications, and in Source or Object form, provided that You
97
+ meet the following conditions:
98
+
99
+ (a) You must give any other recipients of the Work or
100
+ Derivative Works a copy of this License; and
101
+
102
+ (b) You must cause any modified files to carry prominent notices
103
+ stating that You changed the files; and
104
+
105
+ (c) You must retain, in the Source form of any Derivative Works
106
+ that You distribute, all copyright, patent, trademark, and
107
+ attribution notices from the Source form of the Work,
108
+ excluding those notices that do not pertain to any part of
109
+ the Derivative Works; and
110
+
111
+ (d) If the Work includes a "NOTICE" text file as part of its
112
+ distribution, then any Derivative Works that You distribute must
113
+ include a readable copy of the attribution notices contained
114
+ within such NOTICE file, excluding those notices that do not
115
+ pertain to any part of the Derivative Works, in at least one
116
+ of the following places: within a NOTICE text file distributed
117
+ as part of the Derivative Works; within the Source form or
118
+ documentation, if provided along with the Derivative Works; or,
119
+ within a display generated by the Derivative Works, if and
120
+ wherever such third-party notices normally appear. The contents
121
+ of the NOTICE file are for informational purposes only and
122
+ do not modify the License. You may add Your own attribution
123
+ notices within Derivative Works that You distribute, alongside
124
+ or as an addendum to the NOTICE text from the Work, provided
125
+ that such additional attribution notices cannot be construed
126
+ as modifying the License.
127
+
128
+ You may add Your own copyright statement to Your modifications and
129
+ may provide additional or different license terms and conditions
130
+ for use, reproduction, or distribution of Your modifications, or
131
+ for any such Derivative Works as a whole, provided Your use,
132
+ reproduction, and distribution of the Work otherwise complies with
133
+ the conditions stated in this License.
134
+
135
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
136
+ any Contribution intentionally submitted for inclusion in the Work
137
+ by You to the Licensor shall be under the terms and conditions of
138
+ this License, without any additional terms or conditions.
139
+ Notwithstanding the above, nothing herein shall supersede or modify
140
+ the terms of any separate license agreement you may have executed
141
+ with Licensor regarding such Contributions.
142
+
143
+ 6. Trademarks. This License does not grant permission to use the trade
144
+ names, trademarks, service marks, or product names of the Licensor,
145
+ except as required for reasonable and customary use in describing the
146
+ origin of the Work and reproducing the content of the NOTICE file.
147
+
148
+ 7. Disclaimer of Warranty. Unless required by applicable law or
149
+ agreed to in writing, Licensor provides the Work (and each
150
+ Contributor provides its Contributions) on an "AS IS" BASIS,
151
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
+ implied, including, without limitation, any warranties or conditions
153
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
+ PARTICULAR PURPOSE. You are solely responsible for determining the
155
+ appropriateness of using or redistributing the Work and assume any
156
+ risks associated with Your exercise of permissions under this License.
157
+
158
+ 8. Limitation of Liability. In no event and under no legal theory,
159
+ whether in tort (including negligence), contract, or otherwise,
160
+ unless required by applicable law (such as deliberate and grossly
161
+ negligent acts) or agreed to in writing, shall any Contributor be
162
+ liable to You for damages, including any direct, indirect, special,
163
+ incidental, or consequential damages of any character arising as a
164
+ result of this License or out of the use or inability to use the
165
+ Work (including but not limited to damages for loss of goodwill,
166
+ work stoppage, computer failure or malfunction, or any and all
167
+ other commercial damages or losses), even if such Contributor
168
+ has been advised of the possibility of such damages.
169
+
170
+ 9. Accepting Warranty or Additional Liability. While redistributing
171
+ the Work or Derivative Works thereof, You may choose to offer,
172
+ and charge a fee for, acceptance of support, warranty, indemnity,
173
+ or other liability obligations and/or rights consistent with this
174
+ License. However, in accepting such obligations, You may act only
175
+ on Your own behalf and on Your sole responsibility, not on behalf
176
+ of any other Contributor, and only if You agree to indemnify,
177
+ defend, and hold each Contributor harmless for any liability
178
+ incurred by, or claims asserted against, such Contributor by reason
179
+ of your accepting any such warranty or additional liability.
180
+
181
+
182
+
183
+ Project-URL: Homepage, https://invoke-ai.github.io/InvokeAI/
184
+ Project-URL: Documentation, https://invoke-ai.github.io/InvokeAI/
185
+ Project-URL: Source, https://github.com/invoke-ai/InvokeAI/
186
+ Project-URL: Bug Reports, https://github.com/invoke-ai/InvokeAI/issues
187
+ Project-URL: Discord, https://discord.gg/ZmtBAhwWhy
188
+ Keywords: stable-diffusion,AI
189
+ Classifier: Development Status :: 4 - Beta
190
+ Classifier: Environment :: GPU
191
+ Classifier: Environment :: GPU :: NVIDIA CUDA
192
+ Classifier: Environment :: MacOS X
193
+ Classifier: Intended Audience :: End Users/Desktop
194
+ Classifier: Intended Audience :: Developers
195
+ Classifier: License :: OSI Approved :: MIT License
196
+ Classifier: Operating System :: POSIX :: Linux
197
+ Classifier: Operating System :: MacOS
198
+ Classifier: Operating System :: Microsoft :: Windows
199
+ Classifier: Programming Language :: Python :: 3 :: Only
200
+ Classifier: Programming Language :: Python :: 3.10
201
+ Classifier: Topic :: Artistic Software
202
+ Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
203
+ Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
204
+ Classifier: Topic :: Multimedia :: Graphics
205
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
206
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
207
+ Requires-Python: <3.12,>=3.10
208
+ Description-Content-Type: text/markdown
209
+ Provides-Extra: xformers
210
+ Provides-Extra: onnx
211
+ Provides-Extra: onnx-cuda
212
+ Provides-Extra: onnx-directml
213
+ Provides-Extra: dist
214
+ Provides-Extra: docs
215
+ Provides-Extra: dev
216
+ Provides-Extra: test
217
+ License-File: LICENSE
218
+ License-File: LICENSE-SD1+SD2.txt
219
+ License-File: LICENSE-SDXL.txt
220
+
221
+ <div align="center">
222
+
223
+ ![project hero](https://github.com/invoke-ai/InvokeAI/assets/31807370/6e3728c7-e90e-4711-905c-3b55844ff5be)
224
+
225
+ # Invoke - Professional Creative AI Tools for Visual Media
226
+
227
+ #### To learn more about Invoke, or implement our Business solutions, visit [invoke.com]
228
+
229
+ [![discord badge]][discord link] [![latest release badge]][latest release link] [![github stars badge]][github stars link] [![github forks badge]][github forks link] [![CI checks on main badge]][CI checks on main link] [![latest commit to main badge]][latest commit to main link] [![github open issues badge]][github open issues link] [![github open prs badge]][github open prs link] [![translation status badge]][translation status link]
230
+
231
+ </div>
232
+
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
+
235
+ [Installation and Updates][installation docs] - [Documentation and Tutorials][docs home] - [Bug Reports][github issues] - [Contributing][contributing docs]
236
+
237
+ <div align="center">
238
+
239
+ ![Highlighted Features - Canvas and Workflows](https://github.com/invoke-ai/InvokeAI/assets/31807370/708f7a82-084f-4860-bfbe-e2588c53548d)
240
+
241
+ </div>
242
+
243
+ ## Quick Start
244
+
245
+ 1. Download and unzip the installer from the bottom of the [latest release][latest release link].
246
+ 2. Run the installer script.
247
+
248
+ - **Windows**: Double-click on the `install.bat` script.
249
+ - **macOS**: Open a Terminal window, drag the file `install.sh` from Finder into the Terminal, and press enter.
250
+ - **Linux**: Run `install.sh`.
251
+
252
+ 3. When prompted, enter a location for the install and select your GPU type.
253
+ 4. Once the install finishes, find the directory you selected during install. The default location is `C:\Users\Username\invokeai` for Windows or `~/invokeai` for Linux/macOS.
254
+ 5. Run the launcher script (`invoke.bat` for Windows, `invoke.sh` for macOS and Linux) the same way you ran the installer script in step 2.
255
+ 6. Select option 1 to start the application. Once it starts up, open your browser and go to <http://localhost:9090>.
256
+ 7. Open the model manager tab to install a starter model and then you'll be ready to generate.
257
+
258
+ More detail, including hardware requirements and manual install instructions, are available in the [installation documentation][installation docs].
259
+
260
+ ## Troubleshooting, FAQ and Support
261
+
262
+ Please review our [FAQ][faq] for solutions to common installation problems and other issues.
263
+
264
+ For more help, please join our [Discord][discord link].
265
+
266
+ ## Features
267
+
268
+ Full details on features can be found in [our documentation][features docs].
269
+
270
+ ### Web Server & UI
271
+
272
+ Invoke runs a locally hosted web server & React UI with an industry-leading user experience.
273
+
274
+ ### Unified Canvas
275
+
276
+ The Unified Canvas is a fully integrated canvas implementation with support for all core generation capabilities, in/out-painting, brush tools, and more. This creative tool unlocks the capability for artists to create with AI as a creative collaborator, and can be used to augment AI-generated imagery, sketches, photography, renders, and more.
277
+
278
+ ### Workflows & Nodes
279
+
280
+ Invoke offers a fully featured workflow management solution, enabling users to combine the power of node-based workflows with the easy of a UI. This allows for customizable generation pipelines to be developed and shared by users looking to create specific workflows to support their production use-cases.
281
+
282
+ ### Board & Gallery Management
283
+
284
+ Invoke features an organized gallery system for easily storing, accessing, and remixing your content in the Invoke workspace. Images can be dragged/dropped onto any Image-base UI element in the application, and rich metadata within the Image allows for easy recall of key prompts or settings used in your workflow.
285
+
286
+ ### Other features
287
+
288
+ - Support for both ckpt and diffusers models
289
+ - SD1.5, SD2.0, and SDXL support
290
+ - Upscaling Tools
291
+ - Embedding Manager & Support
292
+ - Model Manager & Support
293
+ - Workflow creation & management
294
+ - Node-Based Architecture
295
+
296
+ ## Contributing
297
+
298
+ Anyone who wishes to contribute to this project - whether documentation, features, bug fixes, code cleanup, testing, or code reviews - is very much encouraged to do so.
299
+
300
+ Get started with contributing by reading our [contribution documentation][contributing docs], joining the [#dev-chat] or the GitHub discussion board.
301
+
302
+ We hope you enjoy using Invoke as much as we enjoy creating it, and we hope you will elect to become part of our community.
303
+
304
+ ## Thanks
305
+
306
+ Invoke is a combined effort of [passionate and talented people from across the world][contributors]. We thank them for their time, hard work and effort.
307
+
308
+ Original portions of the software are Copyright © 2024 by respective contributors.
309
+
310
+ [features docs]: https://invoke-ai.github.io/InvokeAI/features/
311
+ [faq]: https://invoke-ai.github.io/InvokeAI/help/FAQ/
312
+ [contributors]: https://invoke-ai.github.io/InvokeAI/other/CONTRIBUTORS/
313
+ [invoke.com]: https://www.invoke.com/about
314
+ [github issues]: https://github.com/invoke-ai/InvokeAI/issues
315
+ [docs home]: https://invoke-ai.github.io/InvokeAI
316
+ [installation docs]: https://invoke-ai.github.io/InvokeAI/installation/INSTALLATION/
317
+ [#dev-chat]: https://discord.com/channels/1020123559063990373/1049495067846524939
318
+ [contributing docs]: https://invoke-ai.github.io/InvokeAI/contributing/CONTRIBUTING/
319
+ [CI checks on main badge]: https://flat.badgen.net/github/checks/invoke-ai/InvokeAI/main?label=CI%20status%20on%20main&cache=900&icon=github
320
+ [CI checks on main link]: https://github.com/invoke-ai/InvokeAI/actions?query=branch%3Amain
321
+ [discord badge]: https://flat.badgen.net/discord/members/ZmtBAhwWhy?icon=discord
322
+ [discord link]: https://discord.gg/ZmtBAhwWhy
323
+ [github forks badge]: https://flat.badgen.net/github/forks/invoke-ai/InvokeAI?icon=github
324
+ [github forks link]: https://useful-forks.github.io/?repo=invoke-ai%2FInvokeAI
325
+ [github open issues badge]: https://flat.badgen.net/github/open-issues/invoke-ai/InvokeAI?icon=github
326
+ [github open issues link]: https://github.com/invoke-ai/InvokeAI/issues?q=is%3Aissue+is%3Aopen
327
+ [github open prs badge]: https://flat.badgen.net/github/open-prs/invoke-ai/InvokeAI?icon=github
328
+ [github open prs link]: https://github.com/invoke-ai/InvokeAI/pulls?q=is%3Apr+is%3Aopen
329
+ [github stars badge]: https://flat.badgen.net/github/stars/invoke-ai/InvokeAI?icon=github
330
+ [github stars link]: https://github.com/invoke-ai/InvokeAI/stargazers
331
+ [latest commit to main badge]: https://flat.badgen.net/github/last-commit/invoke-ai/InvokeAI/main?icon=github&color=yellow&label=last%20dev%20commit&cache=900
332
+ [latest commit to main link]: https://github.com/invoke-ai/InvokeAI/commits/main
333
+ [latest release badge]: https://flat.badgen.net/github/release/invoke-ai/InvokeAI/development?icon=github
334
+ [latest release link]: https://github.com/invoke-ai/InvokeAI/releases/latest
335
+ [translation status badge]: https://hosted.weblate.org/widgets/invokeai/-/svg-badge.svg
336
+ [translation status link]: https://hosted.weblate.org/engage/invokeai/
@@ -39,6 +39,7 @@ invokeai/app/invocations/image.py
39
39
  invokeai/app/invocations/infill.py
40
40
  invokeai/app/invocations/ip_adapter.py
41
41
  invokeai/app/invocations/latent.py
42
+ invokeai/app/invocations/mask.py
42
43
  invokeai/app/invocations/math.py
43
44
  invokeai/app/invocations/metadata.py
44
45
  invokeai/app/invocations/model.py
@@ -224,11 +225,9 @@ invokeai/backend/image_util/infill_methods/tile.py
224
225
  invokeai/backend/image_util/realesrgan/__init__.py
225
226
  invokeai/backend/image_util/realesrgan/realesrgan.py
226
227
  invokeai/backend/ip_adapter/__init__.py
227
- invokeai/backend/ip_adapter/attention_processor.py
228
228
  invokeai/backend/ip_adapter/ip_adapter.py
229
229
  invokeai/backend/ip_adapter/ip_attention_weights.py
230
230
  invokeai/backend/ip_adapter/resampler.py
231
- invokeai/backend/ip_adapter/unet_patcher.py
232
231
  invokeai/backend/model_hash/model_hash.py
233
232
  invokeai/backend/model_manager/__init__.py
234
233
  invokeai/backend/model_manager/config.py
@@ -275,8 +274,11 @@ invokeai/backend/stable_diffusion/diffusers_pipeline.py
275
274
  invokeai/backend/stable_diffusion/seamless.py
276
275
  invokeai/backend/stable_diffusion/diffusion/__init__.py
277
276
  invokeai/backend/stable_diffusion/diffusion/conditioning_data.py
278
- invokeai/backend/stable_diffusion/diffusion/cross_attention_control.py
277
+ invokeai/backend/stable_diffusion/diffusion/custom_atttention.py
278
+ invokeai/backend/stable_diffusion/diffusion/regional_ip_data.py
279
+ invokeai/backend/stable_diffusion/diffusion/regional_prompt_data.py
279
280
  invokeai/backend/stable_diffusion/diffusion/shared_invokeai_diffusion.py
281
+ invokeai/backend/stable_diffusion/diffusion/unet_attention_patcher.py
280
282
  invokeai/backend/stable_diffusion/schedulers/__init__.py
281
283
  invokeai/backend/stable_diffusion/schedulers/schedulers.py
282
284
  invokeai/backend/tiles/__init__.py
@@ -284,10 +286,12 @@ invokeai/backend/tiles/tiles.py
284
286
  invokeai/backend/tiles/utils.py
285
287
  invokeai/backend/util/__init__.py
286
288
  invokeai/backend/util/attention.py
289
+ invokeai/backend/util/catch_sigint.py
287
290
  invokeai/backend/util/db_maintenance.py
288
291
  invokeai/backend/util/devices.py
289
292
  invokeai/backend/util/hotfixes.py
290
293
  invokeai/backend/util/logging.py
294
+ invokeai/backend/util/mask.py
291
295
  invokeai/backend/util/mps_fixes.py
292
296
  invokeai/backend/util/silence_warnings.py
293
297
  invokeai/backend/util/test_utils.py
@@ -295,6 +299,7 @@ invokeai/backend/util/util.py
295
299
  invokeai/configs/controlnet/cldm_v15.yaml
296
300
  invokeai/configs/controlnet/cldm_v21.yaml
297
301
  invokeai/configs/stable-diffusion/sd_xl_base.yaml
302
+ invokeai/configs/stable-diffusion/sd_xl_inpaint.yaml
298
303
  invokeai/configs/stable-diffusion/sd_xl_refiner.yaml
299
304
  invokeai/configs/stable-diffusion/v1-finetune.yaml
300
305
  invokeai/configs/stable-diffusion/v1-finetune_style.yaml
@@ -314,11 +319,11 @@ invokeai/frontend/install/__init__.py
314
319
  invokeai/frontend/install/import_images.py
315
320
  invokeai/frontend/web/__init__.py
316
321
  invokeai/frontend/web/dist/index.html
317
- invokeai/frontend/web/dist/assets/App-CSqsGtxM.js
318
- invokeai/frontend/web/dist/assets/App-DI6oCUg0.css
319
- invokeai/frontend/web/dist/assets/ThemeLocaleProvider-Bsx7ESc2.css
320
- invokeai/frontend/web/dist/assets/ThemeLocaleProvider-CwuwZXTI.js
321
- invokeai/frontend/web/dist/assets/index-7ad0WVcM.js
322
+ invokeai/frontend/web/dist/assets/App-BmN0HOJ3.js
323
+ invokeai/frontend/web/dist/assets/App-DEu4J2pT.css
324
+ invokeai/frontend/web/dist/assets/ThemeLocaleProvider-CLe3PvR9.js
325
+ invokeai/frontend/web/dist/assets/ThemeLocaleProvider-DzjsLZSc.css
326
+ invokeai/frontend/web/dist/assets/index-CFsX_oMr.js
322
327
  invokeai/frontend/web/dist/assets/inter-cyrillic-ext-wght-normal-DIEz8p5i.woff2
323
328
  invokeai/frontend/web/dist/assets/inter-cyrillic-wght-normal-BmJJXa8e.woff2
324
329
  invokeai/frontend/web/dist/assets/inter-greek-ext-wght-normal-D5AYLNiq.woff2
@@ -326,6 +331,7 @@ invokeai/frontend/web/dist/assets/inter-greek-wght-normal-DyIDNIyN.woff2
326
331
  invokeai/frontend/web/dist/assets/inter-latin-ext-wght-normal-CN1pIXkb.woff2
327
332
  invokeai/frontend/web/dist/assets/inter-latin-wght-normal-BgVq2Tq4.woff2
328
333
  invokeai/frontend/web/dist/assets/inter-vietnamese-wght-normal-_GQuwPVU.woff2
334
+ invokeai/frontend/web/dist/assets/images/invoke-alert-favicon.svg
329
335
  invokeai/frontend/web/dist/assets/images/invoke-avatar-circle.svg
330
336
  invokeai/frontend/web/dist/assets/images/invoke-avatar-square.svg
331
337
  invokeai/frontend/web/dist/assets/images/invoke-favicon.png
@@ -346,6 +352,7 @@ invokeai/frontend/web/dist/assets/images/invoke-tag-sml.svg
346
352
  invokeai/frontend/web/dist/assets/images/invoke-wordmark-charcoal.svg
347
353
  invokeai/frontend/web/dist/assets/images/invoke-wordmark-white.svg
348
354
  invokeai/frontend/web/dist/assets/images/mask.svg
355
+ invokeai/frontend/web/dist/assets/images/transparent_bg.png
349
356
  invokeai/frontend/web/dist/locales/ar.json
350
357
  invokeai/frontend/web/dist/locales/az.json
351
358
  invokeai/frontend/web/dist/locales/bg.json
@@ -1,4 +1,4 @@
1
- accelerate==0.28.0
1
+ accelerate==0.29.2
2
2
  clip_anytorch==2.5.2
3
3
  compel==2.0.2
4
4
  controlnet-aux==0.0.7
@@ -12,14 +12,14 @@ opencv-python==4.9.0.80
12
12
  pytorch-lightning==2.1.3
13
13
  safetensors==0.4.2
14
14
  timm==0.6.13
15
- torch==2.2.1
15
+ torch==2.2.2
16
16
  torchmetrics==0.11.4
17
17
  torchsde==0.2.6
18
- torchvision==0.17.1
19
- transformers==4.39.1
18
+ torchvision==0.17.2
19
+ transformers==4.39.3
20
20
  fastapi-events==0.11.0
21
21
  fastapi==0.110.0
22
- huggingface-hub==0.21.4
22
+ huggingface-hub==0.22.2
23
23
  pydantic-settings==2.2.1
24
24
  pydantic==2.6.3
25
25
  python-socketio==5.11.1
@@ -96,7 +96,7 @@ httpx
96
96
  [xformers]
97
97
 
98
98
  [xformers:sys_platform != "darwin"]
99
- xformers==0.0.25
99
+ xformers==0.0.25post1
100
100
 
101
101
  [xformers:sys_platform == "linux"]
102
102
  triton