diff --git a/README.md b/README.md index 7e98fd3..7266730 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ -# stable-diffusion-webui-stable-horde -Stable Horde client integration to AUTOMATIC1111's Stable Diffusion web UI +# Stable Horde for Web UI +Stable Horde client for AUTOMATIC1111's Stable Diffusion Web UI -To prevent loading the local models, add `--ui-debug-mode` to `COMMANDLINE_ARGS`. +## How to use it + +**To prevent loading the local models, add `--ui-debug-mode` to `COMMANDLINE_ARGS`**. + +1. If you [registered an account](https://stablehorde.net/register), go to the `Stable Horde Settings` tab and set your `API key`. Leaving the default value will connect anonymously, which is limited. +2. Go to either the `txt2img` or the `img2img` tab and select `Run on Stable Horde` in the `Script` option. Without this option, it will run locally. +3. Set all parameters, both regular and Stable Horde's, and click `Generate`. diff --git a/scripts/main.py b/scripts/main.py index fa74ac4..97247ec 100644 --- a/scripts/main.py +++ b/scripts/main.py @@ -1,4 +1,4 @@ -# stable-diffusion-webui-stable-horde, a Stable Horde client integration to AUTOMATIC1111's Stable Diffusion web UI +# Stable Horde for Web UI, a Stable Horde client for AUTOMATIC1111's Stable Diffusion Web UI # Copyright (C) 2022 Natan Junges # # This program is free software: you can redistribute it and/or modify @@ -33,7 +33,7 @@ class FakeModel: sd_model_hash="" class Main(scripts.Script): - TITLE = "Run with Stable Horde" + TITLE = "Run on Stable Horde" SAMPLERS = { "LMS": "k_lms", "LMS Karras": "k_lms", diff --git a/scripts/settings.py b/scripts/settings.py index 8705d21..2b79cbe 100644 --- a/scripts/settings.py +++ b/scripts/settings.py @@ -1,4 +1,4 @@ -# stable-diffusion-webui-stable-horde, a Stable Horde client integration to AUTOMATIC1111's Stable Diffusion web UI +# Stable Horde for Web UI, a Stable Horde client for AUTOMATIC1111's Stable Diffusion Web UI # Copyright (C) 2022 Natan Junges # # This program is free software: you can redistribute it and/or modify