Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 2.13 KB

stable_diffusion.md

File metadata and controls

62 lines (40 loc) · 2.13 KB

Stable Diffusion Plugin

To use Stable Diffusion with this project, you will need to download and install stable-diffusion-webui

  • Note: you need a compatible GPU. Nvidia is recommended, but there is no clear resource on incompatible GPUs. Any decent GPU should work.

1. Follow download and installation instructions from stable-diffusion-webui readme

2. Edit your run script settings

Windows

  • Edit your webui-user.bat file by adding the following line before the call command:

  • set COMMANDLINE_ARGS=--api

    • Your .bat file should like this with all other settings default
    @echo off
    
    set PYTHON=
    set GIT=
    set VENV_DIR=
    set COMMANDLINE_ARGS=--api
    
    call webui.bat

Others (not tested but should work)

  • Edit your webui-user.sh file by adding the following line:

  • export COMMANDLINE_ARGS="--api"

    • Your .sh file should like this with all other settings default
    export COMMANDLINE_ARGS="--api"
    
    #!/bin/bash
    #########################################################
    # Uncomment and change the variables below to your need:#
    #########################################################
    
    # ...rest

3. Run Stable Diffusion (either .sh or .bat file according to your operating system)

4. In the app, select the plugins endpoint, open the plugins store, and install Stable Diffusion

- You will need the stable diffusion webui API URL, which should be `http://127.0.0.1:7860`
- Alternatively: you (the admin) can set the value in `\.env` to bypass the prompt
    - `SD_WEBUI_URL=http://127.0.0.1:7860`

image image

5. Select the plugin and enjoy!

image