InvokeAI 6.9.0rc3__py3-none-any.whl → 6.10.0__py3-none-any.whl
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/app/api/dependencies.py +2 -0
- invokeai/app/api/routers/model_manager.py +91 -2
- invokeai/app/api/routers/workflows.py +9 -0
- invokeai/app/invocations/fields.py +19 -0
- invokeai/app/invocations/flux_denoise.py +15 -1
- invokeai/app/invocations/image_to_latents.py +23 -5
- invokeai/app/invocations/latents_to_image.py +2 -25
- invokeai/app/invocations/metadata.py +9 -1
- invokeai/app/invocations/metadata_linked.py +47 -0
- invokeai/app/invocations/model.py +8 -0
- invokeai/app/invocations/pbr_maps.py +59 -0
- invokeai/app/invocations/primitives.py +12 -0
- invokeai/app/invocations/prompt_template.py +57 -0
- invokeai/app/invocations/z_image_control.py +112 -0
- invokeai/app/invocations/z_image_denoise.py +770 -0
- invokeai/app/invocations/z_image_image_to_latents.py +102 -0
- invokeai/app/invocations/z_image_latents_to_image.py +103 -0
- invokeai/app/invocations/z_image_lora_loader.py +153 -0
- invokeai/app/invocations/z_image_model_loader.py +135 -0
- invokeai/app/invocations/z_image_text_encoder.py +197 -0
- invokeai/app/services/config/config_default.py +3 -1
- invokeai/app/services/model_install/model_install_common.py +14 -1
- invokeai/app/services/model_install/model_install_default.py +119 -19
- invokeai/app/services/model_manager/model_manager_default.py +7 -0
- invokeai/app/services/model_records/model_records_base.py +12 -0
- invokeai/app/services/model_records/model_records_sql.py +17 -0
- invokeai/app/services/shared/graph.py +132 -77
- invokeai/app/services/workflow_records/workflow_records_base.py +8 -0
- invokeai/app/services/workflow_records/workflow_records_sqlite.py +42 -0
- invokeai/app/util/step_callback.py +3 -0
- invokeai/backend/flux/denoise.py +196 -11
- invokeai/backend/flux/schedulers.py +62 -0
- invokeai/backend/image_util/pbr_maps/architecture/block.py +367 -0
- invokeai/backend/image_util/pbr_maps/architecture/pbr_rrdb_net.py +70 -0
- invokeai/backend/image_util/pbr_maps/pbr_maps.py +141 -0
- invokeai/backend/image_util/pbr_maps/utils/image_ops.py +93 -0
- invokeai/backend/model_manager/configs/controlnet.py +47 -1
- invokeai/backend/model_manager/configs/factory.py +26 -1
- invokeai/backend/model_manager/configs/lora.py +79 -1
- invokeai/backend/model_manager/configs/main.py +113 -0
- invokeai/backend/model_manager/configs/qwen3_encoder.py +156 -0
- invokeai/backend/model_manager/load/model_cache/model_cache.py +104 -2
- invokeai/backend/model_manager/load/model_cache/torch_module_autocast/custom_modules/custom_diffusers_rms_norm.py +40 -0
- invokeai/backend/model_manager/load/model_cache/torch_module_autocast/custom_modules/custom_layer_norm.py +25 -0
- invokeai/backend/model_manager/load/model_cache/torch_module_autocast/torch_module_autocast.py +11 -2
- invokeai/backend/model_manager/load/model_loaders/cogview4.py +2 -1
- invokeai/backend/model_manager/load/model_loaders/flux.py +13 -6
- invokeai/backend/model_manager/load/model_loaders/generic_diffusers.py +4 -2
- invokeai/backend/model_manager/load/model_loaders/lora.py +11 -0
- invokeai/backend/model_manager/load/model_loaders/onnx.py +1 -0
- invokeai/backend/model_manager/load/model_loaders/stable_diffusion.py +2 -1
- invokeai/backend/model_manager/load/model_loaders/z_image.py +969 -0
- invokeai/backend/model_manager/load/model_util.py +6 -1
- invokeai/backend/model_manager/metadata/metadata_base.py +12 -5
- invokeai/backend/model_manager/model_on_disk.py +3 -0
- invokeai/backend/model_manager/starter_models.py +79 -0
- invokeai/backend/model_manager/taxonomy.py +5 -0
- invokeai/backend/model_manager/util/select_hf_files.py +23 -8
- invokeai/backend/patches/layer_patcher.py +34 -16
- invokeai/backend/patches/layers/lora_layer_base.py +2 -1
- invokeai/backend/patches/lora_conversions/flux_aitoolkit_lora_conversion_utils.py +17 -2
- invokeai/backend/patches/lora_conversions/flux_xlabs_lora_conversion_utils.py +92 -0
- invokeai/backend/patches/lora_conversions/formats.py +5 -0
- invokeai/backend/patches/lora_conversions/z_image_lora_constants.py +8 -0
- invokeai/backend/patches/lora_conversions/z_image_lora_conversion_utils.py +189 -0
- invokeai/backend/quantization/gguf/ggml_tensor.py +38 -4
- invokeai/backend/quantization/gguf/loaders.py +47 -12
- invokeai/backend/stable_diffusion/diffusion/conditioning_data.py +13 -0
- invokeai/backend/util/devices.py +25 -0
- invokeai/backend/util/hotfixes.py +2 -2
- invokeai/backend/z_image/__init__.py +16 -0
- invokeai/backend/z_image/extensions/__init__.py +1 -0
- invokeai/backend/z_image/extensions/regional_prompting_extension.py +205 -0
- invokeai/backend/z_image/text_conditioning.py +74 -0
- invokeai/backend/z_image/z_image_control_adapter.py +238 -0
- invokeai/backend/z_image/z_image_control_transformer.py +643 -0
- invokeai/backend/z_image/z_image_controlnet_extension.py +531 -0
- invokeai/backend/z_image/z_image_patchify_utils.py +135 -0
- invokeai/backend/z_image/z_image_transformer_patch.py +234 -0
- invokeai/frontend/web/dist/assets/App-BBELGD-n.js +161 -0
- invokeai/frontend/web/dist/assets/{browser-ponyfill-CN1j0ARZ.js → browser-ponyfill-4xPFTMT3.js} +1 -1
- invokeai/frontend/web/dist/assets/index-vCDSQboA.js +530 -0
- invokeai/frontend/web/dist/index.html +1 -1
- invokeai/frontend/web/dist/locales/de.json +24 -6
- invokeai/frontend/web/dist/locales/en-GB.json +1 -0
- invokeai/frontend/web/dist/locales/en.json +78 -3
- invokeai/frontend/web/dist/locales/es.json +0 -5
- invokeai/frontend/web/dist/locales/fr.json +0 -6
- invokeai/frontend/web/dist/locales/it.json +17 -64
- invokeai/frontend/web/dist/locales/ja.json +379 -44
- invokeai/frontend/web/dist/locales/ru.json +0 -6
- invokeai/frontend/web/dist/locales/vi.json +7 -54
- invokeai/frontend/web/dist/locales/zh-CN.json +0 -6
- invokeai/version/invokeai_version.py +1 -1
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/METADATA +4 -4
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/RECORD +102 -71
- invokeai/frontend/web/dist/assets/App-Cn9UyjoV.js +0 -161
- invokeai/frontend/web/dist/assets/index-BDrf9CL-.js +0 -530
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/WHEEL +0 -0
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/entry_points.txt +0 -0
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/licenses/LICENSE +0 -0
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/licenses/LICENSE-SD1+SD2.txt +0 -0
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/licenses/LICENSE-SDXL.txt +0 -0
- {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0.dist-info}/top_level.txt +0 -0
|
@@ -1909,12 +1909,6 @@
|
|
|
1909
1909
|
"shared": "Общий",
|
|
1910
1910
|
"promptTemplateCleared": "Шаблон запроса создан"
|
|
1911
1911
|
},
|
|
1912
|
-
"upsell": {
|
|
1913
|
-
"inviteTeammates": "Пригласите членов команды",
|
|
1914
|
-
"professional": "Профессионал",
|
|
1915
|
-
"professionalUpsell": "Доступно в профессиональной версии Invoke. Нажмите здесь или посетите invoke.com/pricing для получения более подробной информации.",
|
|
1916
|
-
"shareAccess": "Поделиться доступом"
|
|
1917
|
-
},
|
|
1918
1912
|
"system": {
|
|
1919
1913
|
"logNamespaces": {
|
|
1920
1914
|
"canvas": "Холст",
|
|
@@ -56,9 +56,7 @@
|
|
|
56
56
|
"locateInGalery": "Vị Trí Ở Thư Viện Ảnh",
|
|
57
57
|
"deletedImagesCannotBeRestored": "Ảnh đã xóa không thể khôi phục lại.",
|
|
58
58
|
"hideBoards": "Ẩn Bảng",
|
|
59
|
-
"
|
|
60
|
-
"viewBoards": "Xem Bảng",
|
|
61
|
-
"videosWithCount_other": "{{count}} video"
|
|
59
|
+
"viewBoards": "Xem Bảng"
|
|
62
60
|
},
|
|
63
61
|
"gallery": {
|
|
64
62
|
"swapImages": "Đổi Hình Ảnh",
|
|
@@ -121,17 +119,12 @@
|
|
|
121
119
|
"assets": "Tài Nguyên",
|
|
122
120
|
"images": "Hình Ảnh",
|
|
123
121
|
"useForPromptGeneration": "Dùng Để Tạo Sinh Lệnh",
|
|
124
|
-
"deleteVideo_other": "Xóa {{count}} Video",
|
|
125
|
-
"deleteVideoPermanent": "Video đã xóa không thể khôi phục lại.",
|
|
126
122
|
"jump": "Nhảy Đến",
|
|
127
|
-
"noVideoSelected": "Không Có Video Được Chọn",
|
|
128
123
|
"noImagesInGallery": "Không Có Ảnh Để Hiển Thị",
|
|
129
124
|
"unableToLoad": "Không Thể Tải Thư Viện Ảnh",
|
|
130
125
|
"selectAnImageToCompare": "Chọn Ảnh Để So Sánh",
|
|
131
126
|
"openViewer": "Mở Trình Xem",
|
|
132
|
-
"closeViewer": "Đóng Trình Xem"
|
|
133
|
-
"videos": "Video",
|
|
134
|
-
"videosTab": "Video bạn tạo và được lưu trong Invoke."
|
|
127
|
+
"closeViewer": "Đóng Trình Xem"
|
|
135
128
|
},
|
|
136
129
|
"common": {
|
|
137
130
|
"ipAdapter": "IP Adapter",
|
|
@@ -717,19 +710,12 @@
|
|
|
717
710
|
"title": "Chọn Tab Tạo Sinh",
|
|
718
711
|
"desc": "Chọn tab Tạo Sinh.",
|
|
719
712
|
"key": "1"
|
|
720
|
-
},
|
|
721
|
-
"selectVideoTab": {
|
|
722
|
-
"title": "Chọn Thẻ Video",
|
|
723
|
-
"desc": "Chọn thẻ Video."
|
|
724
713
|
}
|
|
725
714
|
},
|
|
726
715
|
"searchHotkeys": "Tìm Phím tắt",
|
|
727
716
|
"noHotkeysFound": "Không Tìm Thấy Phím Tắt",
|
|
728
717
|
"clearSearch": "Làm Sạch Thanh Tìm Kiếm",
|
|
729
|
-
"hotkeys": "Phím Tắt"
|
|
730
|
-
"video": {
|
|
731
|
-
"title": "Video"
|
|
732
|
-
}
|
|
718
|
+
"hotkeys": "Phím Tắt"
|
|
733
719
|
},
|
|
734
720
|
"modelManager": {
|
|
735
721
|
"modelConverted": "Model Đã Được Chuyển Đổi",
|
|
@@ -936,14 +922,8 @@
|
|
|
936
922
|
"noMetaData": "Không tìm thấy metadata",
|
|
937
923
|
"imageDimensions": "Kích Thước Ảnh",
|
|
938
924
|
"clipSkip": "$t(parameters.clipSkip)",
|
|
939
|
-
"videoDetails": "Chi Tiết Video",
|
|
940
|
-
"noVideoDetails": "Không tìm thấy chi tiết video",
|
|
941
925
|
"parsingFailed": "Lỗi Cú Pháp",
|
|
942
|
-
"recallParameter": "Gợi Nhớ {{label}}"
|
|
943
|
-
"videoModel": "Model",
|
|
944
|
-
"videoDuration": "Thời Lượng",
|
|
945
|
-
"videoAspectRatio": "Tỉ Lệ",
|
|
946
|
-
"videoResolution": "Độ Phân Giải"
|
|
926
|
+
"recallParameter": "Gợi Nhớ {{label}}"
|
|
947
927
|
},
|
|
948
928
|
"accordions": {
|
|
949
929
|
"generation": {
|
|
@@ -1689,8 +1669,7 @@
|
|
|
1689
1669
|
"fluxModelIncompatibleBboxHeight": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), chiều cao hộp giới hạn là {{height}}",
|
|
1690
1670
|
"fluxModelIncompatibleScaledBboxWidth": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), tỉ lệ chiều rộng hộp giới hạn là {{width}}",
|
|
1691
1671
|
"fluxModelIncompatibleScaledBboxHeight": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), tỉ lệ chiều cao hộp giới hạn là {{height}}",
|
|
1692
|
-
"incompatibleLoRAs": "LoRA không tương thích bị thêm vào"
|
|
1693
|
-
"videoIsDisabled": "Trình tạo sinh Video không được mở cho tài khoản {{accountType}}."
|
|
1672
|
+
"incompatibleLoRAs": "LoRA không tương thích bị thêm vào"
|
|
1694
1673
|
},
|
|
1695
1674
|
"cfgScale": "Thang CFG",
|
|
1696
1675
|
"useSeed": "Dùng Hạt Giống",
|
|
@@ -1757,12 +1736,7 @@
|
|
|
1757
1736
|
"duration": "Thời Lượng",
|
|
1758
1737
|
"downloadImage": "Tải Xuống Hình Ảnh",
|
|
1759
1738
|
"images_withCount_other": "Hình Ảnh",
|
|
1760
|
-
"videos_withCount_other": "Video",
|
|
1761
|
-
"startingFrameImage": "Khung Hình Bắt Đầu",
|
|
1762
|
-
"videoActions": "Hành Động Với Video",
|
|
1763
|
-
"sendToVideo": "Gửi Vào Video",
|
|
1764
1739
|
"showOptionsPanel": "Hiển Thị Bảng Bên Cạnh (O hoặc T)",
|
|
1765
|
-
"video": "Video",
|
|
1766
1740
|
"resolution": "Độ Phân Giải"
|
|
1767
1741
|
},
|
|
1768
1742
|
"dynamicPrompts": {
|
|
@@ -2479,8 +2453,7 @@
|
|
|
2479
2453
|
"queue": "Queue (Hàng Đợi)",
|
|
2480
2454
|
"workflows": "Workflow (Luồng Làm Việc)",
|
|
2481
2455
|
"workflowsTab": "$t(common.tab) $t(ui.tabs.workflows)",
|
|
2482
|
-
"generate": "Tạo Sinh"
|
|
2483
|
-
"video": "Video"
|
|
2456
|
+
"generate": "Tạo Sinh"
|
|
2484
2457
|
},
|
|
2485
2458
|
"launchpad": {
|
|
2486
2459
|
"workflowsTitle": "Đi sâu hơn với Workflow.",
|
|
@@ -2558,23 +2531,13 @@
|
|
|
2558
2531
|
"generate": {
|
|
2559
2532
|
"canvasCalloutTitle": "Đang tìm cách để điều khiển, chỉnh sửa, và làm lại ảnh?",
|
|
2560
2533
|
"canvasCalloutLink": "Vào Canvas cho nhiều tính năng hơn."
|
|
2561
|
-
},
|
|
2562
|
-
"videoTitle": "Tạo sinh video từ lệnh chữ.",
|
|
2563
|
-
"video": {
|
|
2564
|
-
"startingFrameCalloutTitle": "Thêm Khung Hình Bắt Đầu",
|
|
2565
|
-
"startingFrameCalloutDesc": "Thêm ảnh nhằm điều khiển khung hình đầu của video."
|
|
2566
|
-
},
|
|
2567
|
-
"addStartingFrame": {
|
|
2568
|
-
"title": "Thêm Khung Hình Bắt Đầu",
|
|
2569
|
-
"description": "Thêm ảnh nhằm điều khiển khung hình đầu của video."
|
|
2570
2534
|
}
|
|
2571
2535
|
},
|
|
2572
2536
|
"panels": {
|
|
2573
2537
|
"launchpad": "Launchpad",
|
|
2574
2538
|
"workflowEditor": "Trình Biên Tập Workflow",
|
|
2575
2539
|
"imageViewer": "Trình Xem",
|
|
2576
|
-
"canvas": "Canvas"
|
|
2577
|
-
"video": "Video"
|
|
2540
|
+
"canvas": "Canvas"
|
|
2578
2541
|
}
|
|
2579
2542
|
},
|
|
2580
2543
|
"workflows": {
|
|
@@ -2753,12 +2716,6 @@
|
|
|
2753
2716
|
],
|
|
2754
2717
|
"watchUiUpdatesOverview": "Xem Tổng Quan Về Những Cập Nhật Cho Giao Diện Người Dùng"
|
|
2755
2718
|
},
|
|
2756
|
-
"upsell": {
|
|
2757
|
-
"professional": "Chuyên Nghiệp",
|
|
2758
|
-
"inviteTeammates": "Thêm Đồng Đội",
|
|
2759
|
-
"shareAccess": "Chia Sẻ Quyền Truy Cập",
|
|
2760
|
-
"professionalUpsell": "Không có sẵn Phiên Bản Chuyên Nghiệp cho Invoke. Bấm vào đây hoặc đến invoke.com/pricing để thêm chi tiết."
|
|
2761
|
-
},
|
|
2762
2719
|
"supportVideos": {
|
|
2763
2720
|
"supportVideos": "Video Hỗ Trợ",
|
|
2764
2721
|
"gettingStarted": "Bắt Đầu Làm Quen",
|
|
@@ -2782,9 +2739,5 @@
|
|
|
2782
2739
|
},
|
|
2783
2740
|
"lora": {
|
|
2784
2741
|
"weight": "Trọng Lượng"
|
|
2785
|
-
},
|
|
2786
|
-
"video": {
|
|
2787
|
-
"noVideoSelected": "Không có video được chọn",
|
|
2788
|
-
"selectFromGallery": "Chọn một video trong thư viện để xem"
|
|
2789
2742
|
}
|
|
2790
2743
|
}
|
|
@@ -1709,12 +1709,6 @@
|
|
|
1709
1709
|
"exceedsMaxSizeDetails": "最大放大限制是 {{maxUpscaleDimension}}x{{maxUpscaleDimension}} 像素.请尝试一个较小的图像或减少您的缩放选择.",
|
|
1710
1710
|
"upscale": "放大"
|
|
1711
1711
|
},
|
|
1712
|
-
"upsell": {
|
|
1713
|
-
"inviteTeammates": "邀请团队成员",
|
|
1714
|
-
"professional": "专业",
|
|
1715
|
-
"professionalUpsell": "可在 Invoke 的专业版中使用.点击此处或访问 invoke.com/pricing 了解更多详情.",
|
|
1716
|
-
"shareAccess": "共享访问权限"
|
|
1717
|
-
},
|
|
1718
1712
|
"stylePresets": {
|
|
1719
1713
|
"positivePrompt": "正向提示词",
|
|
1720
1714
|
"preview": "预览",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "6.
|
|
1
|
+
__version__ = "6.10.0"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: InvokeAI
|
|
3
|
-
Version: 6.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 6.10.0
|
|
4
|
+
Summary: A full-featured AI-assisted image generation environment designed for creatives and enthusiasts.
|
|
5
5
|
Author-email: Invoke <support@invoke.ai>
|
|
6
6
|
License: Apache License
|
|
7
7
|
Version 2.0, January 2004
|
|
@@ -204,7 +204,7 @@ Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
|
|
|
204
204
|
Classifier: Topic :: Multimedia :: Graphics
|
|
205
205
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
206
206
|
Classifier: Topic :: Scientific/Engineering :: Image Processing
|
|
207
|
-
Requires-Python: <3.13,>=3.
|
|
207
|
+
Requires-Python: <3.13,>=3.11
|
|
208
208
|
Description-Content-Type: text/markdown
|
|
209
209
|
License-File: LICENSE
|
|
210
210
|
License-File: LICENSE-SD1+SD2.txt
|
|
@@ -212,7 +212,7 @@ License-File: LICENSE-SDXL.txt
|
|
|
212
212
|
Requires-Dist: accelerate
|
|
213
213
|
Requires-Dist: bitsandbytes; sys_platform != "darwin"
|
|
214
214
|
Requires-Dist: compel==2.1.1
|
|
215
|
-
Requires-Dist: diffusers[torch]==0.
|
|
215
|
+
Requires-Dist: diffusers[torch]==0.36.0
|
|
216
216
|
Requires-Dist: gguf
|
|
217
217
|
Requires-Dist: mediapipe==0.10.14
|
|
218
218
|
Requires-Dist: numpy<2.0.0
|