CivArchive
    A1111 To Comfyui workflow (My version) - v1.5
    NSFW
    Preview 90801823
    Preview 90801826
    Preview 90801824
    Preview 90801825

    DISCLAIMER

    I only know this works for manual installation and forks.

    I run AMD so I can't use the desktop variant of Comfyui called Comfyui-Zluda made by patientx.

    So my version would be considered Comfyui portable

    This workflow model is an attempt to give someone who is directly coming from A1111 to Comfyui a similar setup as what they would be used to, with a few extras.

    This is just for the Text to Image section of A1111, nothing else.

    Workflow includes

    Resolution 2D picker that will attempt to snap the output to 8 different ratios.

    Wildcard support

    Slides for Steps, CFG, CLIP stop, and batch size

    Controls for various options Such as Upscaler and a function like the hi-res option avalible in A1111

    Ram Cleaning (both vram and system)

    This is the workflow I came up with overtime, taking inspiration from other workflows I have used or seen. It's by no means perfect or the best.

    Please read the notes included inside the work flow, and feel free to comment and ask questions on this post about the workflow, I'm constantly trying to improve.

    Installing the Workflow JSON

    1. Drag the .json file into your Comfyui installation.

    2. You'll likely see errors about missing custom nodes, Comfyui will prompt you to install them.

    • Accept and proceed.

    3. If missing node errors persist after relaunch:

    • Click Manager at the top of the UI.

    • Select Install Missing Custom Nodes to retry installation.

    (No longer True as of version 2.2 of the workflow) v v v

    This workflow includes the Comfyui-styles_csv_loader extension, which allows you to import prompt styles from a styles.csv file—perfect for users coming from A1111.

    To Use:

    Click the Style Loader node in the workflow

    Choose from your saved styles. That's it, the workflow handles the rest.

    How to Move Styles from A1111 to Comfyui

    1. Locate styles.csv in A1111

    • Open your A1111 folder.

    • Look for styles.csv in the root, the same place where webui-user.bat is.

    2. Copy the File to Comfyui

    • Paste styles.csv into the root directory of your Comfyui install, where Comfyui.bat is.

    3. Restart Comfyui (optional)

    • This step assumes you already had Comfyui running, if so you need to restart it so it

    • can load your styles.

    If you don't have a styles.csv or don't want to migrate yours the work flow does require one, I've included a blank styles.csv with the upload for you to grab if you wish.

    (No longer True as of version 2.2 of the workflow) ^^^

    If you already have models from A1111 or another setup—checkpoints, LoRAs, VAEs, or upscalers you don’t need to download them all over again. Comfyui supports custom paths through extra_model_paths.yaml.

    How to Set It Up:

    1. Find or Create the File

    • If using Comfyui Portable, rename the example:

      extra_model_paths.yaml.example → extra_model_paths.yaml

    • If using Comfyui Desktop (installer version), create or edit:

      %APPDATA%\Comfyui\extra_model_paths.yaml

    2. Edit the File to Point to Your Existing Models using Notepad. Here’s an example, if your A1111 models live in C:/A1111/models/:

    yaml

    Comfyui:

    is_default: true

    base_path: c:/A1111/models

    checkpoints: Stable-diffusion/

    loras: Lora/

    vae: VAE/

    upscale_models: ESRGAN/

    clip_vision: CLIP-Vision/

    controlnet: ControlNet/

    3. Restart Comfyui Your existing models should now appear in the node dropdowns as if they were local.

    This section below is if you have a Lora loader asyncio error, I had to fix this myself because Im using a Comfyui fork," Comfyui-zluda".

    If you come across the Lora Loader "(LoraManager) asyncio.run() cannot be called from a running event loop" error after trying to load a lora.

    Follow these steps:

    1. Install the required packages inside Comfyui's embedded environment

    Navigate to Comfyui\venv\Scripts

    type cmd into the file explorer bar to open a terminal there, then run both:

    python -m pip install nest_asyncio

    python -m pip install asyncio

    2. Patch your main.py for nested async compatibility In your Comfyui install folder:

    Locate main.py, right-click → Open in Notepad.

    Add the following at the top:

    import nest_asyncio

    nest_asyncio.apply()

    3. Then save and close the file, Hit control+s to quick save.

    This change patches the event loop so that Comfyui can handle async operations (like LoRA loading) without throwing runtime errors.

    Description

    Changed some things around, and used a split sampler to maybe reduce render times a little. The styles included is blank, so there won't be issues.

    FAQ

    Comments (7)

    HG0Apr 29, 2026
    CivitAI

    Hello again. I hope I’m not bothering you with this kind of question, but I’ve been using your workflow for quite a while. Over the past few days, I haven’t been able to use it due to an error in the Checkpoint Loader (ComfyUI-Image-Saver) node.

    I managed to fix the error, but now when I run the workflow, it doesn’t generate any images or output.

    Could you please help me understand what might be causing this issue?

    dersum6456
    Author
    Apr 30, 2026

    my best guess is that your using an updated version and something changed on in the custom node, or it got corrupted maybe, Im not too sure to be honest.

    dersum6456
    Author
    Apr 30, 2026

    what is the specific error?

    HG0May 1, 2026

    Yes, after the update it actually stopped working. I managed to get the workflow generating images again, but only with the Meta Scheduler node disabled. When it’s enabled, it doesn’t show any errors, but when I run the workflow, nothing is generated. I apologize if my explanation is a bit vague. The Meta Scheduler is located right below the Checkpoint Selector.

    dersum6456
    Author
    May 1, 2026

    @HG0 so part of the meta data saver chain for easy civitai upload is bugged got it. Ill look into it, but no promises, I personally dont updated my nodes that often. Mainly due to lazyness, and no real need to unless there is a error.

    HG0May 2, 2026

    Got it, thanks for the clarification. I don’t upload to Civitai, so that part isn’t really an issue for me. Can I just leave the node disabled and continue using the workflow normally, or do I need to remove that part completely? I’ll also keep in mind not to update nodes unless it’s necessary. Thanks for the help.

    dersum6456
    Author
    May 2, 2026

    @HG0 soo ya its part of the meta data saver,and if you can still change you scheduler with it disabled you shouldn't have an issue.I mainly had it in there because I upload to the site semi often. I wanted to keep that ability for anyone else who wanted to as well without the headace of coping all that info over on every upload,plus it makes it way easier to return to a prompt you liked while looking through the images at a later date if you couldnt remember the exact prompt used

    TLDR: Yes your good to disable that node, It was only for meta data saving for uploading.
    NGL i havnt used this version of my workflow for a while, ive been tinkering with an alteration of it for a while.

    Workflows
    Other

    Details

    Downloads
    208
    Platform
    CivitAI
    Platform Status
    Available
    Created
    7/27/2025
    Updated
    9/9/2026
    Deleted
    -

    Files

    a1111ToComfyuiWorkflow_v15.zip

    Mirrors