InvokeAI 6.9.0rc3__py3-none-any.whl → 6.10.0rc1__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.
Files changed (86) hide show
  1. invokeai/app/api/dependencies.py +2 -0
  2. invokeai/app/api/routers/model_manager.py +91 -2
  3. invokeai/app/api/routers/workflows.py +9 -0
  4. invokeai/app/invocations/fields.py +19 -0
  5. invokeai/app/invocations/image_to_latents.py +23 -5
  6. invokeai/app/invocations/latents_to_image.py +2 -25
  7. invokeai/app/invocations/metadata.py +9 -1
  8. invokeai/app/invocations/model.py +8 -0
  9. invokeai/app/invocations/primitives.py +12 -0
  10. invokeai/app/invocations/prompt_template.py +57 -0
  11. invokeai/app/invocations/z_image_control.py +112 -0
  12. invokeai/app/invocations/z_image_denoise.py +610 -0
  13. invokeai/app/invocations/z_image_image_to_latents.py +102 -0
  14. invokeai/app/invocations/z_image_latents_to_image.py +103 -0
  15. invokeai/app/invocations/z_image_lora_loader.py +153 -0
  16. invokeai/app/invocations/z_image_model_loader.py +135 -0
  17. invokeai/app/invocations/z_image_text_encoder.py +197 -0
  18. invokeai/app/services/model_install/model_install_common.py +14 -1
  19. invokeai/app/services/model_install/model_install_default.py +119 -19
  20. invokeai/app/services/model_records/model_records_base.py +12 -0
  21. invokeai/app/services/model_records/model_records_sql.py +17 -0
  22. invokeai/app/services/shared/graph.py +132 -77
  23. invokeai/app/services/workflow_records/workflow_records_base.py +8 -0
  24. invokeai/app/services/workflow_records/workflow_records_sqlite.py +42 -0
  25. invokeai/app/util/step_callback.py +3 -0
  26. invokeai/backend/model_manager/configs/controlnet.py +47 -1
  27. invokeai/backend/model_manager/configs/factory.py +26 -1
  28. invokeai/backend/model_manager/configs/lora.py +43 -1
  29. invokeai/backend/model_manager/configs/main.py +113 -0
  30. invokeai/backend/model_manager/configs/qwen3_encoder.py +156 -0
  31. invokeai/backend/model_manager/load/model_cache/torch_module_autocast/custom_modules/custom_diffusers_rms_norm.py +40 -0
  32. invokeai/backend/model_manager/load/model_cache/torch_module_autocast/custom_modules/custom_layer_norm.py +25 -0
  33. invokeai/backend/model_manager/load/model_cache/torch_module_autocast/torch_module_autocast.py +11 -2
  34. invokeai/backend/model_manager/load/model_loaders/lora.py +11 -0
  35. invokeai/backend/model_manager/load/model_loaders/z_image.py +935 -0
  36. invokeai/backend/model_manager/load/model_util.py +6 -1
  37. invokeai/backend/model_manager/metadata/metadata_base.py +12 -5
  38. invokeai/backend/model_manager/model_on_disk.py +3 -0
  39. invokeai/backend/model_manager/starter_models.py +70 -0
  40. invokeai/backend/model_manager/taxonomy.py +5 -0
  41. invokeai/backend/model_manager/util/select_hf_files.py +23 -8
  42. invokeai/backend/patches/layer_patcher.py +34 -16
  43. invokeai/backend/patches/layers/lora_layer_base.py +2 -1
  44. invokeai/backend/patches/lora_conversions/flux_aitoolkit_lora_conversion_utils.py +17 -2
  45. invokeai/backend/patches/lora_conversions/flux_xlabs_lora_conversion_utils.py +92 -0
  46. invokeai/backend/patches/lora_conversions/formats.py +5 -0
  47. invokeai/backend/patches/lora_conversions/z_image_lora_constants.py +8 -0
  48. invokeai/backend/patches/lora_conversions/z_image_lora_conversion_utils.py +155 -0
  49. invokeai/backend/quantization/gguf/ggml_tensor.py +27 -4
  50. invokeai/backend/quantization/gguf/loaders.py +47 -12
  51. invokeai/backend/stable_diffusion/diffusion/conditioning_data.py +13 -0
  52. invokeai/backend/util/devices.py +25 -0
  53. invokeai/backend/util/hotfixes.py +2 -2
  54. invokeai/backend/z_image/__init__.py +16 -0
  55. invokeai/backend/z_image/extensions/__init__.py +1 -0
  56. invokeai/backend/z_image/extensions/regional_prompting_extension.py +207 -0
  57. invokeai/backend/z_image/text_conditioning.py +74 -0
  58. invokeai/backend/z_image/z_image_control_adapter.py +238 -0
  59. invokeai/backend/z_image/z_image_control_transformer.py +643 -0
  60. invokeai/backend/z_image/z_image_controlnet_extension.py +531 -0
  61. invokeai/backend/z_image/z_image_patchify_utils.py +135 -0
  62. invokeai/backend/z_image/z_image_transformer_patch.py +234 -0
  63. invokeai/frontend/web/dist/assets/App-CYhlZO3Q.js +161 -0
  64. invokeai/frontend/web/dist/assets/{browser-ponyfill-CN1j0ARZ.js → browser-ponyfill-DHZxq1nk.js} +1 -1
  65. invokeai/frontend/web/dist/assets/index-dgSJAY--.js +530 -0
  66. invokeai/frontend/web/dist/index.html +1 -1
  67. invokeai/frontend/web/dist/locales/de.json +24 -6
  68. invokeai/frontend/web/dist/locales/en.json +70 -1
  69. invokeai/frontend/web/dist/locales/es.json +0 -5
  70. invokeai/frontend/web/dist/locales/fr.json +0 -6
  71. invokeai/frontend/web/dist/locales/it.json +17 -64
  72. invokeai/frontend/web/dist/locales/ja.json +379 -44
  73. invokeai/frontend/web/dist/locales/ru.json +0 -6
  74. invokeai/frontend/web/dist/locales/vi.json +7 -54
  75. invokeai/frontend/web/dist/locales/zh-CN.json +0 -6
  76. invokeai/version/invokeai_version.py +1 -1
  77. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/METADATA +3 -3
  78. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/RECORD +84 -60
  79. invokeai/frontend/web/dist/assets/App-Cn9UyjoV.js +0 -161
  80. invokeai/frontend/web/dist/assets/index-BDrf9CL-.js +0 -530
  81. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/WHEEL +0 -0
  82. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/entry_points.txt +0 -0
  83. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/licenses/LICENSE +0 -0
  84. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/licenses/LICENSE-SD1+SD2.txt +0 -0
  85. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/licenses/LICENSE-SDXL.txt +0 -0
  86. {invokeai-6.9.0rc3.dist-info → invokeai-6.10.0rc1.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,7 @@
18
18
  overflow: hidden;
19
19
  }
20
20
  </style>
21
- <script type="module" crossorigin src="./assets/index-BDrf9CL-.js"></script>
21
+ <script type="module" crossorigin src="./assets/index-dgSJAY--.js"></script>
22
22
  </head>
23
23
 
24
24
  <body dir="ltr">
@@ -185,9 +185,33 @@
185
185
  "imagesSettings": "Galeriebildereinstellungen"
186
186
  },
187
187
  "hotkeys": {
188
+ "hotkeys": "Tastenkombinationen",
188
189
  "noHotkeysFound": "Kein Hotkey gefunden",
189
190
  "searchHotkeys": "Hotkeys durchsuchen",
190
191
  "clearSearch": "Suche leeren",
192
+ "editMode": "Bearbeitungsmodus",
193
+ "viewMode": "Ansichtsmodus",
194
+ "editHotkey": "Hotkey bearbeiten",
195
+ "resetToDefault": "Auf Standard zurücksetzen",
196
+ "resetAll": "Alle auf Standard zurücksetzen",
197
+ "enterHotkeys": "Tastenkombination(en) eingeben, mit Komma getrennt",
198
+ "save": "Speichern",
199
+ "cancel": "Abbrechen",
200
+ "modifiers": "Modifikatoren",
201
+ "syntaxHelp": "Syntax-Hilfe",
202
+ "combineWith": "Kombinieren mit +",
203
+ "multipleHotkeys": "Mehrere Hotkeys mit Komma",
204
+ "validKeys": "Gültige Tasten",
205
+ "help": "Hilfe",
206
+ "noHotkeysRecorded": "Noch keine Hotkeys aufgenommen",
207
+ "pressKeys": "Tasten drücken...",
208
+ "setHotkey": "SETZEN",
209
+ "setAnother": "WEITEREN SETZEN",
210
+ "removeLastHotkey": "Letzten Hotkey entfernen",
211
+ "clearAll": "Alle löschen",
212
+ "duplicateWarning": "Dieser Hotkey wurde bereits aufgenommen",
213
+ "conflictWarning": "wird bereits von \"{{hotkeyTitle}}\" verwendet",
214
+ "thisHotkey": "diesem Hotkey",
191
215
  "canvas": {
192
216
  "fitBboxToCanvas": {
193
217
  "desc": "Skalierung und Positionierung der Ansicht auf Bbox-Größe.",
@@ -1630,12 +1654,6 @@
1630
1654
  "showNonRasterLayers": "Nicht-Rasterebenen anzeigen (Umschalt+H)",
1631
1655
  "hideNonRasterLayers": "Nicht-Rasterebenen ausblenden (Umschalt+H)"
1632
1656
  },
1633
- "upsell": {
1634
- "shareAccess": "Zugang teilen",
1635
- "professional": "Professionell",
1636
- "inviteTeammates": "Teamkollegen einladen",
1637
- "professionalUpsell": "Verfügbar in der Professional Edition von Invoke. Klicken Sie hier oder besuchen Sie invoke.com/pricing für weitere Details."
1638
- },
1639
1657
  "upscaling": {
1640
1658
  "creativity": "Kreativität",
1641
1659
  "structure": "Struktur",
@@ -428,6 +428,31 @@
428
428
  "searchHotkeys": "Search Hotkeys",
429
429
  "clearSearch": "Clear Search",
430
430
  "noHotkeysFound": "No Hotkeys Found",
431
+ "editMode": "Edit Mode",
432
+ "viewMode": "View Mode",
433
+ "editHotkey": "Edit Hotkey",
434
+ "addHotkey": "Add Hotkey",
435
+ "resetToDefault": "Reset to Default",
436
+ "resetAll": "Reset All to Default",
437
+ "resetAllConfirmation": "Are you sure you want to reset all hotkeys to their default values? This cannot be undone.",
438
+ "enterHotkeys": "Enter hotkey(s), separated by commas",
439
+ "save": "Save",
440
+ "cancel": "Cancel",
441
+ "modifiers": "Modifiers",
442
+ "syntaxHelp": "Syntax Help",
443
+ "combineWith": "Combine with +",
444
+ "multipleHotkeys": "Multiple hotkeys with comma",
445
+ "validKeys": "Valid keys",
446
+ "help": "Help",
447
+ "noHotkeysRecorded": "No hotkeys recorded yet",
448
+ "pressKeys": "Press keys...",
449
+ "setHotkey": "SET",
450
+ "setAnother": "SET ANOTHER",
451
+ "removeLastHotkey": "Remove last hotkey",
452
+ "clearAll": "Clear All",
453
+ "duplicateWarning": "This hotkey is already recorded",
454
+ "conflictWarning": "is already used by \"{{hotkeyTitle}}\"",
455
+ "thisHotkey": "this hotkey",
431
456
  "app": {
432
457
  "title": "App",
433
458
  "invoke": {
@@ -478,6 +503,14 @@
478
503
  "title": "Next Prompt in History",
479
504
  "desc": "When the prompt is focused, move to the next (newer) prompt in your history."
480
505
  },
506
+ "promptWeightUp": {
507
+ "title": "Increase Weight of Prompt Selection",
508
+ "desc": "When the prompt is focused and text is selected, increase the weight of the selected prompt."
509
+ },
510
+ "promptWeightDown": {
511
+ "title": "Decrease Weight of Prompt Selection",
512
+ "desc": "When the prompt is focused and text is selected, decrease the weight of the selected prompt."
513
+ },
481
514
  "toggleLeftPanel": {
482
515
  "title": "Toggle Left Panel",
483
516
  "desc": "Show or hide the left panel."
@@ -816,6 +849,7 @@
816
849
  "parameterSet": "Parameter {{parameter}} set",
817
850
  "parsingFailed": "Parsing Failed",
818
851
  "positivePrompt": "Positive Prompt",
852
+ "qwen3Encoder": "Qwen3 Encoder",
819
853
  "recallParameters": "Recall Parameters",
820
854
  "recallParameter": "Recall {{label}}",
821
855
  "scheduler": "Scheduler",
@@ -832,6 +866,7 @@
832
866
  },
833
867
  "modelManager": {
834
868
  "active": "active",
869
+ "actions": "Bulk Actions",
835
870
  "addModel": "Add Model",
836
871
  "addModels": "Add Models",
837
872
  "advanced": "Advanced",
@@ -844,6 +879,20 @@
844
879
  "clipLEmbed": "CLIP-L Embed",
845
880
  "clipGEmbed": "CLIP-G Embed",
846
881
  "config": "Config",
882
+ "reidentify": "Reidentify",
883
+ "reidentifyTooltip": "If a model didn't install correctly (e.g. it has the wrong type or doesn't work), you can try reidentifying it. This will reset any custom settings you may have applied.",
884
+ "reidentifySuccess": "Model reidentified successfully",
885
+ "reidentifyUnknown": "Unable to identify model",
886
+ "reidentifyError": "Error reidentifying model",
887
+ "updatePath": "Update Path",
888
+ "updatePathTooltip": "Update the file path for this model if you have moved the model files to a new location.",
889
+ "updatePathDescription": "Enter the new path to the model file or directory. Use this if you have manually moved the model files on disk.",
890
+ "currentPath": "Current Path",
891
+ "newPath": "New Path",
892
+ "newPathPlaceholder": "Enter new path...",
893
+ "pathUpdated": "Model path updated successfully",
894
+ "pathUpdateFailed": "Failed to update model path",
895
+ "invalidPathFormat": "Path must be an absolute path (e.g., C:\\Models\\... or /home/user/models/...)",
847
896
  "convert": "Convert",
848
897
  "convertingModelBegin": "Converting Model. Please wait.",
849
898
  "convertToDiffusers": "Convert To Diffusers",
@@ -862,6 +911,7 @@
862
911
  "delete": "Delete",
863
912
  "deleteConfig": "Delete Config",
864
913
  "deleteModel": "Delete Model",
914
+ "deleteModels": "Delete Models",
865
915
  "deleteModelImage": "Delete Model Image",
866
916
  "deleteMsg1": "Are you sure you want to delete this model from InvokeAI?",
867
917
  "deleteMsg2": "This WILL delete the model from disk if it is in the InvokeAI root folder. If you are using a custom location, then the model WILL NOT be deleted from disk.",
@@ -993,8 +1043,16 @@
993
1043
  "triggerPhrases": "Trigger Phrases",
994
1044
  "loraTriggerPhrases": "LoRA Trigger Phrases",
995
1045
  "mainModelTriggerPhrases": "Main Model Trigger Phrases",
1046
+ "selectAll": "Select All",
996
1047
  "typePhraseHere": "Type phrase here",
997
1048
  "t5Encoder": "T5 Encoder",
1049
+ "qwen3Encoder": "Qwen3 Encoder",
1050
+ "zImageVae": "VAE (optional)",
1051
+ "zImageVaePlaceholder": "From Qwen3 Source (leave empty)",
1052
+ "zImageQwen3Encoder": "Qwen3 Encoder (optional)",
1053
+ "zImageQwen3EncoderPlaceholder": "From Qwen3 Source (leave empty)",
1054
+ "zImageQwen3Source": "Qwen3 Source (Diffusers Z-Image)",
1055
+ "zImageQwen3SourcePlaceholder": "Required if VAE/Encoder empty",
998
1056
  "upcastAttention": "Upcast Attention",
999
1057
  "uploadImage": "Upload Image",
1000
1058
  "urlOrLocalPath": "URL or Local Path",
@@ -1276,6 +1334,8 @@
1276
1334
  "noT5EncoderModelSelected": "No T5 Encoder model selected for FLUX generation",
1277
1335
  "noFLUXVAEModelSelected": "No VAE model selected for FLUX generation",
1278
1336
  "noCLIPEmbedModelSelected": "No CLIP Embed model selected for FLUX generation",
1337
+ "noZImageVaeSourceSelected": "No VAE source: Select VAE (FLUX) or Qwen3 Source model",
1338
+ "noZImageQwen3EncoderSourceSelected": "No Qwen3 Encoder source: Select Qwen3 Encoder or Qwen3 Source model",
1279
1339
  "fluxModelIncompatibleBboxWidth": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), bbox width is {{width}}",
1280
1340
  "fluxModelIncompatibleBboxHeight": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), bbox height is {{height}}",
1281
1341
  "fluxModelIncompatibleScaledBboxWidth": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), scaled bbox width is {{width}}",
@@ -1312,6 +1372,7 @@
1312
1372
  "scheduler": "Scheduler",
1313
1373
  "seamlessXAxis": "Seamless X Axis",
1314
1374
  "seamlessYAxis": "Seamless Y Axis",
1375
+ "colorCompensation": "Color Compensation",
1315
1376
  "seed": "Seed",
1316
1377
  "imageActions": "Image Actions",
1317
1378
  "sendToCanvas": "Send To Canvas",
@@ -1855,6 +1916,10 @@
1855
1916
  "heading": "Seamless Tiling Y Axis",
1856
1917
  "paragraphs": ["Seamlessly tile an image along the vertical axis."]
1857
1918
  },
1919
+ "colorCompensation": {
1920
+ "heading": "Color Compensation",
1921
+ "paragraphs": ["Adjust the input image to reduce color shifts during inpainting or img2img (SDXL Only)."]
1922
+ },
1858
1923
  "upscaleModel": {
1859
1924
  "heading": "Upscale Model",
1860
1925
  "paragraphs": [
@@ -1920,6 +1985,7 @@
1920
1985
  "allLoaded": "All Workflows Loaded",
1921
1986
  "searchPlaceholder": "Search by name, description or tags",
1922
1987
  "filterByTags": "Filter by Tags",
1988
+ "tags": "Tags",
1923
1989
  "yourWorkflows": "Your Workflows",
1924
1990
  "recentlyOpened": "Recently Opened",
1925
1991
  "noRecentWorkflows": "No Recent Workflows",
@@ -2101,6 +2167,7 @@
2101
2167
  "clearCaches": "Clear Caches",
2102
2168
  "recalculateRects": "Recalculate Rects",
2103
2169
  "clipToBbox": "Clip Strokes to Bbox",
2170
+ "extractRegion": "Extract Region",
2104
2171
  "outputOnlyMaskedRegions": "Output Only Generated Regions",
2105
2172
  "addLayer": "Add Layer",
2106
2173
  "duplicate": "Duplicate",
@@ -2610,7 +2677,9 @@
2610
2677
  "useForTemplate": "Use For Prompt Template",
2611
2678
  "viewList": "View Template List",
2612
2679
  "viewModeTooltip": "This is how your prompt will look with your currently selected template. To edit your prompt, click anywhere in the text box.",
2613
- "togglePromptPreviews": "Toggle Prompt Previews"
2680
+ "togglePromptPreviews": "Toggle Prompt Previews",
2681
+ "selectPreset": "Select Style Preset",
2682
+ "noMatchingPresets": "No matching presets"
2614
2683
  },
2615
2684
 
2616
2685
  "ui": {
@@ -466,11 +466,6 @@
466
466
  "prompts_other": "Prompts",
467
467
  "prune": "Eliminar"
468
468
  },
469
- "upsell": {
470
- "inviteTeammates": "Invitar compañeros de equipo",
471
- "shareAccess": "Compartir acceso",
472
- "professionalUpsell": "Disponible en la edición profesional de Invoke. Haga clic aquí o visite invoke.com/pricing para obtener más detalles."
473
- },
474
469
  "controlLayers": {
475
470
  "layer_one": "Capa",
476
471
  "layer_many": "Capas",
@@ -2249,12 +2249,6 @@
2249
2249
  "toGetStartedLocal": "Pour commencer, assurez-vous de télécharger ou d'importer des modèles nécessaires pour exécuter Invoke. Ensuite, saisissez le prompt dans la boîte et cliquez sur <StrongComponent>Invoke</StrongComponent> pour générer votre première image. Sélectionnez un template de prompt pour améliorer les résultats. Vous pouvez choisir de sauvegarder vos images directement sur <StrongComponent>Galerie</StrongComponent> ou les modifier sur la <StrongComponent>Toile</StrongComponent>.",
2250
2250
  "lowVRAMMode": "Pour de meilleures performances, suivez notre <LinkComponent>guide Low VRAM</LinkComponent>."
2251
2251
  },
2252
- "upsell": {
2253
- "shareAccess": "Partager l'accès",
2254
- "inviteTeammates": "Inviter des collègues",
2255
- "professionalUpsell": "Disponible dans l'édition professionnelle d'Invoke. Cliquez ici ou visitez invoke.com/pricing pour plus de détails.",
2256
- "professional": "Professionnel"
2257
- },
2258
2252
  "supportVideos": {
2259
2253
  "watch": "Regarder",
2260
2254
  "gettingStarted": "Commencer",
@@ -197,14 +197,7 @@
197
197
  "assets": "Risorse",
198
198
  "images": "Immagini",
199
199
  "useForPromptGeneration": "Usa per generare il prompt",
200
- "deleteVideo_one": "Elimina video",
201
- "deleteVideo_many": "Elimina {{count}} video",
202
- "deleteVideo_other": "Elimina {{count}} video",
203
- "deleteVideoPermanent": "I video eliminati non possono essere ripristinati.",
204
- "videos": "Video",
205
- "videosTab": "Video creati e salvati in Invoke.",
206
200
  "jump": "Salta",
207
- "noVideoSelected": "Nessun video selezionato",
208
201
  "noImagesInGallery": "Nessuna immagine da visualizzare",
209
202
  "unableToLoad": "Impossibile caricare la Galleria",
210
203
  "selectAnImageToCompare": "Seleziona un'immagine da confrontare",
@@ -276,10 +269,6 @@
276
269
  "title": "Seleziona la scheda Genera",
277
270
  "desc": "Seleziona la scheda Genera."
278
271
  },
279
- "selectVideoTab": {
280
- "title": "Seleziona la scheda Video",
281
- "desc": "Seleziona la scheda Video."
282
- },
283
272
  "promptHistoryPrev": {
284
273
  "title": "Prompt precedente nella cronologia",
285
274
  "desc": "Quando il prompt è attivo, passa al prompt precedente (più vecchio) nella cronologia."
@@ -579,9 +568,6 @@
579
568
  "desc": "Aggiungi/Rimuovi contrassegno all'immagine selezionata.",
580
569
  "title": "Aggiungi / Rimuovi contrassegno immagine"
581
570
  }
582
- },
583
- "video": {
584
- "title": "Video"
585
571
  }
586
572
  },
587
573
  "modelManager": {
@@ -664,7 +650,7 @@
664
650
  "loraTriggerPhrases": "Frasi Trigger LoRA",
665
651
  "mainModelTriggerPhrases": "Frasi Trigger del modello principale",
666
652
  "inplaceInstall": "Installazione sul posto",
667
- "inplaceInstallDesc": "Installa i modelli senza copiare i file. Quando si utilizza il modello, verrà caricato da questa posizione. Se disabilitato, i file del modello verranno copiati nella directory dei modelli gestiti da Invoke durante l'installazione.",
653
+ "inplaceInstallDesc": "Installa i modelli senza spostare i file. Quando si utilizza il modello, verrà caricato dalla posizione originale. Se disabilitato, i file del modello verranno spostati nella directory dei modelli gestiti da Invoke durante l'installazione.",
668
654
  "installQueue": "Coda di installazione",
669
655
  "install": "Installa",
670
656
  "installRepo": "Installa Repository",
@@ -752,7 +738,17 @@
752
738
  "filterModels": "Filtra i modelli",
753
739
  "ipAdapters": "Adattatori IP",
754
740
  "showOnlyRelatedModels": "Correlati",
755
- "starterModelsInModelManager": "I modelli di avvio possono essere trovati in Gestione Modelli"
741
+ "starterModelsInModelManager": "I modelli di avvio possono essere trovati in Gestione Modelli",
742
+ "unidentifiedModelTitle": "Impossibile identificare il modello",
743
+ "unidentifiedModelMessage": "Non siamo riusciti a identificare il tipo, la base e/o il formato del modello installato. Prova a modificare il modello e a selezionare le impostazioni appropriate.",
744
+ "unidentifiedModelMessage2": "Se non vedi le impostazioni corrette o il modello non funziona dopo averle modificate, chiedi aiuto su <DiscordLink /> o crea un problema su <GitHubIssuesLink />.",
745
+ "modelFormat": "Formato del modello",
746
+ "modelSettingsWarning": "Queste impostazioni indicano a Invoke di che tipo di modello si tratta e come caricarlo. Se Invoke non le ha rilevate correttamente durante l'installazione del modello, o se il modello è classificato come Sconosciuto, potrebbe essere necessario modificarle manualmente.",
747
+ "reidentify": "Reidentificare",
748
+ "reidentifyTooltip": "Se un modello non è stato installato correttamente (ad esempio, ha il tipo sbagliato o non funziona), puoi provare a identificarlo nuovamente. Questo reimposterà tutte le impostazioni personalizzate che potresti aver applicato.",
749
+ "reidentifySuccess": "Modello reidentificato con successo",
750
+ "reidentifyUnknown": "Impossibile identificare il modello",
751
+ "reidentifyError": "Errore durante la reidentificazione del modello"
756
752
  },
757
753
  "parameters": {
758
754
  "images": "Immagini",
@@ -835,7 +831,6 @@
835
831
  "promptExpansionResultPending": "Accetta o ignora il risultato dell'espansione del prompt",
836
832
  "promptExpansionPending": "Espansione del prompt in corso",
837
833
  "noStartingFrameImage": "Nessuna immagine del fotogramma iniziale",
838
- "videoIsDisabled": "La generazione di video non è abilitata per gli account {{accountType}}.",
839
834
  "incompatibleLoRAs": "Aggiunti LoRA incompatibili",
840
835
  "emptyBatches": "lotti vuoti",
841
836
  "fluxModelIncompatibleBboxWidth": "$t(parameters.invoke.fluxRequiresDimensionsToBeMultipleOf16), la larghezza del riquadro è {{width}}",
@@ -875,17 +870,9 @@
875
870
  "images_withCount_one": "Immagine",
876
871
  "images_withCount_many": "Immagini",
877
872
  "images_withCount_other": "Immagini",
878
- "videos_withCount_one": "Video",
879
- "videos_withCount_many": "Video",
880
- "videos_withCount_other": "Video",
881
- "startingFrameImage": "Fotogramma iniziale",
882
- "videoActions": "Azioni video",
883
- "sendToVideo": "Invia al Video",
884
- "video": "Video",
885
873
  "resolution": "Risoluzione",
886
874
  "downloadImage": "Scarica l'immagine",
887
- "showOptionsPanel": "Mostra pannello laterale (O o T)",
888
- "startingFrameImageAspectRatioWarning": "Le proporzioni dell'immagine non corrispondono alle proporzioni del video ({{videoAspectRatio}}). Ciò potrebbe causare ritagli imprevisti durante la generazione del video."
875
+ "showOptionsPanel": "Mostra pannello laterale (O o T)"
889
876
  },
890
877
  "settings": {
891
878
  "models": "Modelli",
@@ -1283,12 +1270,6 @@
1283
1270
  "uncategorizedImages": "Immagini non categorizzate",
1284
1271
  "deleteAllUncategorizedImages": "Elimina tutte le immagini non categorizzate",
1285
1272
  "locateInGalery": "Trova nella Galleria",
1286
- "movingVideosToBoard_one": "Spostamento di {{count}} video sulla bacheca:",
1287
- "movingVideosToBoard_many": "Spostamento di {{count}} video sulla bacheca:",
1288
- "movingVideosToBoard_other": "Spostamento di {{count}} video sulla bacheca:",
1289
- "videosWithCount_one": "{{count}} video",
1290
- "videosWithCount_many": "{{count}} video",
1291
- "videosWithCount_other": "{{count}} video",
1292
1273
  "deletedImagesCannotBeRestored": "Le immagini eliminate non possono essere ripristinate.",
1293
1274
  "hideBoards": "Nascondi bacheche",
1294
1275
  "viewBoards": "Visualizza le bacheche"
@@ -1919,12 +1900,6 @@
1919
1900
  "seamlessXAxis": "Asse X senza giunte",
1920
1901
  "seamlessYAxis": "Asse Y senza giunte",
1921
1902
  "vae": "VAE",
1922
- "videoDetails": "Dettagli video",
1923
- "noVideoDetails": "Nessun dettaglio video trovato",
1924
- "videoModel": "Modello",
1925
- "videoDuration": "Durata",
1926
- "videoAspectRatio": "Proporzioni",
1927
- "videoResolution": "Risoluzione",
1928
1903
  "parsingFailed": "Analisi non riuscita",
1929
1904
  "recallParameter": "Richiama {{label}}"
1930
1905
  },
@@ -2618,8 +2593,7 @@
2618
2593
  "upscaling": "Amplia",
2619
2594
  "upscalingTab": "$t(ui.tabs.upscaling) $t(common.tab)",
2620
2595
  "gallery": "Galleria",
2621
- "generate": "Genera",
2622
- "video": "Video"
2596
+ "generate": "Genera"
2623
2597
  },
2624
2598
  "launchpad": {
2625
2599
  "workflowsTitle": "Approfondisci i flussi di lavoro.",
@@ -2697,23 +2671,13 @@
2697
2671
  "generate": {
2698
2672
  "canvasCalloutTitle": "Vuoi avere più controllo, modificare e affinare le tue immagini?",
2699
2673
  "canvasCalloutLink": "Per ulteriori funzionalità, vai su Tela."
2700
- },
2701
- "videoTitle": "Genera video da prompt testuale.",
2702
- "addStartingFrame": {
2703
- "title": "Aggiungi un fotogramma iniziale",
2704
- "description": "Aggiungi un'immagine per controllare il primo fotogramma del tuo video."
2705
- },
2706
- "video": {
2707
- "startingFrameCalloutTitle": "Aggiungi un fotogramma iniziale",
2708
- "startingFrameCalloutDesc": "Aggiungi un'immagine per controllare il primo fotogramma del tuo video."
2709
2674
  }
2710
2675
  },
2711
2676
  "panels": {
2712
2677
  "launchpad": "Rampa di lancio",
2713
2678
  "workflowEditor": "Editor del flusso di lavoro",
2714
2679
  "imageViewer": "Visualizzatore",
2715
- "canvas": "Tela",
2716
- "video": "Video"
2680
+ "canvas": "Tela"
2717
2681
  }
2718
2682
  },
2719
2683
  "upscaling": {
@@ -2739,12 +2703,6 @@
2739
2703
  "tileSize": "Dimensione del riquadro",
2740
2704
  "tileOverlap": "Sovrapposizione riquadro"
2741
2705
  },
2742
- "upsell": {
2743
- "inviteTeammates": "Invita collaboratori",
2744
- "shareAccess": "Condividi l'accesso",
2745
- "professional": "Professionale",
2746
- "professionalUpsell": "Disponibile nell'edizione Professional di Invoke. Fai clic qui o visita invoke.com/pricing per ulteriori dettagli."
2747
- },
2748
2706
  "stylePresets": {
2749
2707
  "active": "Attivo",
2750
2708
  "choosePromptTemplate": "Scegli un modello di prompt",
@@ -2803,9 +2761,8 @@
2803
2761
  "readReleaseNotes": "Leggi le note di rilascio",
2804
2762
  "watchRecentReleaseVideos": "Guarda i video su questa versione",
2805
2763
  "items": [
2806
- "Seleziona oggetto v2: selezione degli oggetti migliorata con input di punti e riquadri o prompt di testo.",
2807
- "Regolazioni del livello raster: regola facilmente la luminosità, il contrasto, la saturazione, le curve e altro ancora del livello.",
2808
- "Cronologia prompt: rivedi e richiama rapidamente i tuoi ultimi 100 prompt."
2764
+ "Gestione modelli: se non è possibile identificare un modello durante l'installazione, ora è possibile selezionare manualmente il tipo di modello e l'architettura.",
2765
+ "Interno: sistema di identificazione dei modelli migliorato, che semplifica per i collaboratori l'aggiunta del supporto per nuovi modelli."
2809
2766
  ],
2810
2767
  "watchUiUpdatesOverview": "Guarda la panoramica degli aggiornamenti dell'interfaccia utente"
2811
2768
  },
@@ -2858,9 +2815,5 @@
2858
2815
  },
2859
2816
  "lora": {
2860
2817
  "weight": "Peso"
2861
- },
2862
- "video": {
2863
- "noVideoSelected": "Nessun video selezionato",
2864
- "selectFromGallery": "Seleziona un video dalla galleria per riprodurlo"
2865
2818
  }
2866
2819
  }