| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| InvokeAI 6.13.0 source code.tar.gz | 2026-05-27 | 56.3 MB | |
| InvokeAI 6.13.0 source code.zip | 2026-05-27 | 58.1 MB | |
| README.md | 2026-05-27 | 27.8 kB | |
| Totals: 3 Items | 114.4 MB | 4 | |
This release of InvokeAI offers support for a variety of new models, including those that are remotely hosted by external providers such as GPT Image. In addition, it provides a host of new and improved features as well as bug fixes.
New Locally-Hosted Models
We've added support for the popular Qwen Image models, both the txt2img and edit versions, as well as Anima.
Qwen Image 2.5
This is a high quality txt2img model that can be run either on your local hardware are on a remotely hosted service (see Hosted Models. We provide starters for the full model (~40 GB!) as well as multiple smaller quantized models. For best results, we recommend 30-40 steps and a CFG of 3-4. We also provide two "turbo" LoRA models, Qwen Image Lightning (4-steps) and Qwen_Image_Lightning (8-steps). These LoRAs provide fast rendering and high accuracy, but loss of diversity. Use a CFG of 1 and a Shift of 3 when applying either of these LoRAs.
Qwen Image Edit 2.5
This is a version of Qwen Image that is optimized for image editing. Add up to three reference images and tell the model on how to combine and alter them using declarative statements such as "Pose the duck on the table". We provide the full model as a starter, along with multiple quantized versions and two Qwen Image Edit Lightning LoRAs for turbo mode.
See Qwen-Image-Edit: Image Editing with Higher Quality and Efficiency for tips on using Qwen Image Edit effectively.
Anima Preview 3
Anima is an anime-themed model created by a collaboration between CircleStone Labs and Comfy Org. It is able to produce a wide variety of illustration styles. There is also an Anima Turbo LoRA that can be used to speed up rendering using a CFG of 1 and 8-12 steps.
You'll find Anima and its support models in the Starter Models tab.
New Externally-Hosted Models
This version of InvokeAI offers the ability to generate using externally-hosted models, such as those provided by OpenAI, Google and cloud-based AI generation hosting services. You "install" these models by providing an API key provided by a service that you subscribe to. Typically image generation services will provide a number of generations for free and then start charging on a pay-as-you-go basis. We support externally-hosted models from OpenAI, Gemini (Google), BytePlus, and Alibaba Cloud.
An externally-hosted model works much like a locally-hosted one but with restrictions. In general, you cannot adust steps, scheduler or CFG, and only a limited number of image dimensions are supported. Both txt2img and img2img modes are supported, and the models can be applied to the Canvas and Workflow editor. However inpainting, outpainting, controlnets, LoRAs, regional guidance, and the ability to apply different levels of denoising to img2img are not available. These are limitations imposed by the hosting service and not by InvokeAI.
To get started with externally-hosted models, go to the Models tab and select External Providers. Select the hosting service you wish to use and enter your API key. Click Save and the models supported by this provider will be added to your collection of models.
Models available from OpenAI
- GPT Image 1
- GPT Image 1.5
- GPT Image 1 Mini
- DALL-E 3
Models available from Gemini (Google)
- Gemini 2.5 Flash Image
- Gemini 3 Pro Image Preview
- Gemini 3.1 Flash Image Preview
Models available from BytePlus
- Seedream 3.0 T2I
- Seedream 4.0
- Seedream 4.5
- Seedream 5.0 Lite
Models available from Alibaba Cloud
- Qwen Image 2.0 Pro
- Qwen Image 2.0
- Qwen Image Max
- Qwen Image Edit Max
- Wan 2.6 Text-to-Image
Model Manager Improvements
This version improves the Model Manager in several ways. When installing a new model, the installation queue display and progress bars have been completely rewritten to be more functional and attractive. A new bulk reidentify action has been implemented, and it is now possible to sort the model listing in multiple ways.
Image Generation Improvements
Users now have access to LLM-powered prompt expansion and image-to-prompt features. You will find two new buttons in the prompt textfield:
- Expand Prompt uses a local TextLLM model to expand brief prompts into detailed image generation prompts. This button will replace a simple prompt with a complex one that is well-suited for producing high quality imagery.
- Image to Prompt Generates descriptive prompts from uploaded images. Use it as a supplement to reference images.
To use these features, you must first install a causal LM model, such as Qwen/Qwen2.5-1.5B-Instruct via the Model Manager (enter this repo name into the HuggingFace tab). The LLaVA vision model needed for image to prompt should already be installed.
In addition, this release corrects many small bugs and performance bottlenecks in image generation.
Image Gallery Improvements
You can now automatically create "virtual" boards that group images according to their characteristics. The only grouping currently available is by date, but more options are on their way.
Canvas Improvements
There have been several new features added to the Canvas. One frequently-requested feature is the ability to hide and show the preview stage thumbnails that can obscure the bottom of the canvas. Another feature is the addition of a Lasso Tool with freehand and polygon modes for creating inpaint masks and selecting raster image regions.
Also among multiple new features is the ability to apply custom workflows directly to a Canvas image. First create a workflow with an image input field in the Form Builder and a Canvas Output node. Right click on the canvas and select Run Workflow. The workflow will run on the input image and create a new layer containing the output of the Canvas Output node.
Workflow Editor and Nodes
There is now a Custom Node Manager tab in the left-hand panel which allows you to install and manage related groups of nodes organized into node packs. Node packs can be installed from local files or URLs.
When adding a node to a workflow, you will find that the nodes are now organized by function with an easy to navigate node picker. Another convenient new feature is the workflow connector, a new type of edge that can be used to connect two or more input/output fields in a highly flexible fashion. To start using this feature, right click on the canvas and select Add Connector.
Internally the workflow execution engine has been overhauled and optimized to improve performance and stability. In addition, there are a number of new user-visible features. There are new generation nodes for running external models, new denoising nodes for the Qwen Image and Anima local models, and a node for decoding invisible watermarks in images. The Collect node now supports chaining to enable deterministic iteration over the items in a collection. A new If mode allows for conditional branching of workflows.
Multiuser Features
When running in Multiuser Mode each logged-in user can create private (only visible to the owner), shared (writable by the owner, readable by everyone else) and public (read/write for everyone) image boards. Similarly, users can now create private and shared workflows.
Documentation
The Documentation Site has been completely redesigned and overhauled.
What's Changed in Detail
Below is a log of all changes from the previous version. Many thanks to all the authors who contributed to this release.
Models and Model Manager
- External models (Gemini Nano Banana & OpenAI GPT Image) (#8633) by @CypherNaught-0x in https://github.com/invoke-ai/InvokeAI/pull/8884
- Feat[model support]: Qwen Image — full pipeline with edit, generate LoRA, GGUF, quantization, and UI by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9000
- feat: add Anima model support by @4pointoh in https://github.com/invoke-ai/InvokeAI/pull/8961
- feat: add bulk reidentify action for models (#8951) by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8952
- feat: add support for OneTrainer BFL Flux LoRA format by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8984
- fix(mm): detect FLUX.2 Klein 9B Base variant via filename heuristic by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9011
- fix: correct inaccurate download size estimates in starter models by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8968
- Redesign Model Manager Installation Queue by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/8910
- fix(ui) Anima model encoder & vae auto-selection by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9035
- feat:(model-manager) add sorting capabilities for models by @skunkworxdark in https://github.com/invoke-ai/InvokeAI/pull/9024
- fix: remove directory entry sizes from directory_size() to report accurate file totals by @kuishou68 in https://github.com/invoke-ai/InvokeAI/pull/9040
- fix(flux2-vae): support FLUX.2 small-decoder VAE variant by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9032
- feat(ui): show progress bar animation while models are loading by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9058
- feat(mm): add editable source_url field to model config by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8997
- fix(mm): identify Qwen2.5/Qwen3 causal LMs as Text LLM, not Qwen3 encoder by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9097
- feat(apionly): add Alibaba Cloud Models by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9055
- feat(apionly): seedream provider by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9054
- fix(ui): wrap starter bundle buttons instead of overflowing by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9131
- Feat:(model) qwen image vae checkpoint by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9108
- fix(mm): Fix Anima model identification for ComfyUI checkpoint format by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9113
- fix(mm): identify Qwen2.5/Qwen3 causal LMs as Text LLM, not Qwen3 encoder by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9097
- feat(apionly): add Alibaba Cloud Models by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9055
- feat(config): enable partial model loading by default by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9092
- feat(mm): swap Anima Preview 3 starter for Anima Base 1.0 by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9172
- fix(mm): show Anima Qwen3 0.6B encoders in Model Manager list by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9173
- fix(mm): support diffusers FLUX LoRAs on NF4/8-bit quantized base models by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9118
- fix(external-providers): admin guard, validation, locale keys by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9171
- feat(mm): add gpt-image-2 as a starter model by @stellarfeline in https://github.com/invoke-ai/InvokeAI/pull/9096
- Remove OpenAPI target by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9203
Image Generation
- Feat(UI): Add LLM-powered prompt expansion and image-to-prompt features by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8899
- Fix(frontend): Make ordering of multiple FLUX.2 reference images deterministic by @lstein in https://github.com/invoke-ai/InvokeAI/pull/8989
- Upgrade spandrel version by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/8996
- fix: detect Z-Image LoRAs with transformer.layers prefix by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8986
- Fix partial-load device recovery across CLIP, T5, and Qwen text encoders by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9034
- feat: add configurable shift parameter for Z-Image by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9004
- Feature: Add optional setting to prune queue on startup by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8861
- Handle mixed-dtype mismatches in autocast linear and conv wrappers by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9006
- fix(ui): FLUX.2 Klein VAE/Qwen3 readiness checks and diffusers source auto-detection by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9041
- Fix: Preserve reference image panel state and selection on recall by @ufuksarp in https://github.com/invoke-ai/InvokeAI/pull/9010
- Fix: Z-Image LoRA detection for Kohya and ComfyUI formats by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9007
- [Fix] remove anima optimized denoise by @dunkeroni in https://github.com/invoke-ai/InvokeAI/pull/9072
- fix: SDXL DoRA LoRA fails with enable_partial_loading=true by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9063
- fix(flux2): remove inert guidance UI, add Klein 4B Base variant, fix metadata recall by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8995
- Align DyPE with the paper as much as possible by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/8980
- feat(recall): support direct model reference images in recall API by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9045
- feat(ui): drag-and-drop reordering for reference images by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9081
- feat(model): Add ER SDE / DPM++ 2M Scheduler Support For Anima by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9125
- Add OKLab and Oklch image utilities and nodes, refactor color space nodes by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/8999
- feat: add per-model FP8 layerwise casting for VRAM reduction by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8945
- fix(qwen): fix ghosting artifacts Qwen Image Edit by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9155
- fix(anima): correct RoPE configuration to restore Anima image quality by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9189
- feat(anima): Make Anima respect the
precisionproperty in Invoke.yaml by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9183 - fix(metadata): recall z_image_shift correctly by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9139
- fix(anima): ignore community checkpoint pos_embedder runtime buffers by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9201
- Add universal noise and optional denoiser noise inputs by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9044
- fix(fp8): route ModelMixin through hook-based path to survive partialload by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9231
- fix(flux): support .weight variant for attention norm parameter mappings by @Fortyseven in https://github.com/invoke-ai/InvokeAI/pull/9190
- (UI): add latents preview estimation to anima denoise by @dunkeroni in https://github.com/invoke-ai/InvokeAI/pull/9219
Image Gallery & Image Storage
- feat: Add virtual boards that dynamically group images by date by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8971
- feat: add configurable image subfolder strategies by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8969
- feat: add image subfolder strategy setting UI by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9133
- fix(ui): auto-add newly created boards by @YUHAO-corn in https://github.com/invoke-ai/InvokeAI/pull/9193
- feat(nodes): add Save Image (Gallery + File Export) node by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9077
Canvas
- Feat(Canvas): Add button to hide preview stage thumbnails by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8963
- feat(UI): add Inpaint Mask as drag & drop target on canvas by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8942
- Fix(Canvas): Retain layer opacity on mode change. by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8879
- Feature(UI): Canvas Workflow Integration - Run Workflow on Raster Layer by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8665
- Feat(canvas): Add Lasso Tool with Freehand and Polygon modes by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8908
- feat(ui): add canvas project save/load (.invk format) by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8917
- perf(canvas): detach hidden layers from DOM, throttle onscreen check, increase cache by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8939
- feat(canvas): add per-layer lock transparency option by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8943
- feat(ui): add canvas snapshot save/restore functionality by @GGSSKK in https://github.com/invoke-ai/InvokeAI/pull/8978
- Feat(canvas): Add hotkey for Merge Down and Merge Visible layers by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9106
- Feat(Canvas): Add canvas zoom on Ctrl/Cmd+MMB drag. by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8965
- Feat(canvas): Replace Rectangle tool with new Shapes tool by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9082
- Fix (UI): Hide optimized image-to-image toggle from UI for Z-Image by @ufuksarp in https://github.com/invoke-ai/InvokeAI/pull/9114
- Feat(canvas): add contextual tool hints to header bar by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9117
- fix(canvas): restore toolbar option layout and control alignment by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9236
Workflow Editor and Nodes
- feat: add Custom Node Manager by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9047
- Add chaining to Collect node by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/8933
- Feature (frontend): Add invisible watermark decoder node. by @lstein in https://github.com/invoke-ai/InvokeAI/pull/8967
- Fix workflows info copy focus by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9015
- Added
Ifnode and ability to link anAnyoutput to a node input if cardinality matches by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/8869 graph.pyrefactoring andIfnode optimization by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9030- Added workflow connectors by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9027
- feat(ui): group nodes by category in add-node dialog by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/8912
- Prevent stale queue snapshots from regressing workflow completion state by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9043
- fix(ui): stabilize workflow node execution state updates by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9029
- Fix graph execution state resume after JSON round-trip by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9042
- Fix lazy If branch pruning and skipped-parent handling in graph runtime by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9079
- Fix node corners by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9102
- Fix connector node hit targets by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9105
- Fix connector context menu handling by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9107
- Fix connector handle size + change move cursor by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9128
Multiuser
- Fix (multiuser): Ask user to log back in when security token has expired by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9017
- feat(multiuser): Shared/private workflows and image boards in multiuser mode by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9018
- fix(multiuser): make preexisting workflows visible after migration by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9049
- Harden/router auth and bugfixes by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9200
Internationalizaton
- fix(ui): replace all hardcoded frontend strings with i18n translation keys by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9013
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/8985
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/8992
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9028
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9036
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9051
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9075
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9078
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9178
- ui: translations update from weblate by @weblate in https://github.com/invoke-ai/InvokeAI/pull/9088
- translationBot(ui): update translation files (with lint fix) by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9205
- fix(i18n): replace "(s)" parenthetical plurals flagged by Weblate by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9179
Thanks to Dmitry Warkentin, Gohsuke Shimada, and Riccardo Giovanetti (@Harvester62) for contributing Russian, Japanese, and Italian translations, respectively.
Documentation
- List Supported Models In Readme by @kappacommit in https://github.com/invoke-ai/InvokeAI/pull/9038
- Docs Overhaul by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/8896
- New Documentation Fixes by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9061
- fix(docs): deployment paths mismatch by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9067
- fix(docs): urls respect baseurl + better deployment scheduling by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9069
- fix(docs): deploy targets by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9070
- fix(docs): address bad links by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9074
- fix(docs): anticipate more redirects and update more links by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9076
- Fix docs rate limit action error by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9098
- docs: add Plausible analytics to invoke.ai site by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9140
- feat(docs): upgrade deps, add translation page, fix bad links by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9157
- feat(docs): upgrade deps, add translation page, fix bad links by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9160
- fix(docs): clarify Shapes tool description by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9176
- docs: Add multiuser documentation and reposition Workflows by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9099
- docs: add lasso tool and gradient guides by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9175
- docs: load Plausible on invoke.ai (custom), not ghpages by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9161
- docs: cover Canvas, Workflow, Gallery, and Model Manager features by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9196
- Docs: Housekeeping + Remove docs-old by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9166
Miscellaneous
- chore: bump version to 6.12.0.post1 by @lstein in https://github.com/invoke-ai/InvokeAI/pull/8990
- Fix SIGINT shutdown during active inference by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/8993
- Run vitest during frontend build by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9022
- feat(frontend): suppress tooltips on touch devices by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9001
- fix: patch openapi-typescript enum generation to match OpenAPI schema by @lstein in https://github.com/invoke-ai/InvokeAI/pull/9037
- Feat(UI): Replace prompt window resize handle with bottom edge drag handle. by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8975
- Feat(UI): Reintroduce middle click to open image in new tab by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/8998
- chore(CI/CD): Prevent agents from running npm by @lstein in https://github.com/invoke-ai/InvokeAI/pull/8930
- feat(config): enable partial model loading by default by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9092
- fix(UI): keep resize handle out of prompt textarea by @DustyShoe in https://github.com/invoke-ai/InvokeAI/pull/9119
- Fix tooltip display on desktop by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9129
- chore: remove ad-hoc planning and PR review markdown files by @Pfannkuchensack in https://github.com/invoke-ai/InvokeAI/pull/9132
- Add OpenAPI schema check workflow to CI by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9177
- chore: openapi.json by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9181
- Add the
frontend-openapitarget to Makefile by @JPPhoto in https://github.com/invoke-ai/InvokeAI/pull/9184 - fix(docs): encourage uv sync over uv pip install by @joshistoast in https://github.com/invoke-ai/InvokeAI/pull/9238
New Contributors
- @kyhavlov made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8613
- @aleyan made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8722
- @Copilot made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8693
- @girlyoulookthebest made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8851
- @hjohn made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8866
- @Mr-Neutr0n made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8871
- @haosenwang1018 made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8948
- @4pointoh made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8961
- @kappacommit made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/9038
- @CypherNaught-0x made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8884
- @ufuksarp made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/9010
- @kuishou68 made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/9040
- @GGSSKK made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/8978
- @stellarfeline made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/9096
- @YUHAO-corn made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/9193
- @Fortyseven made their first contribution in https://github.com/invoke-ai/InvokeAI/pull/9190
Full Changelog: https://github.com/invoke-ai/InvokeAI/compare/v6.8.0...v6.13.0