Skip to content

Commit

Permalink
Beta!
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Mar 10, 2024
1 parent f2a3d16 commit f84fe0d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# StableSwarmUI

**StableSwarmUI 0.6.1 Alpha**.
**StableSwarmUI 0.6.1 Beta**.

A Modular Stable Diffusion Web-User-Interface, with an emphasis on making powertools easily accessible, high performance, and extensibility.

Expand All @@ -10,13 +10,16 @@ Follow the [Feature Announcements Thread](https://github.com/Stability-AI/Stable

# Status

This project is in **ALPHA** status, preparing to move to **BETA** very soon. That means most things work, but there's a lot more planned before it's truly "ready for primetime". it's currently at a point where it's safe to recommend for general users, though you may need at times to use the integrated Comfy tab as a backup way to execute some things that would ideally be on the main UI. There are some known bugs and quality-of-life limits still be worked out.
This project is in **Beta** status. That means most things work, but there's a lot more planned before it's truly "ready for primetime". it's currently at a point where it's safe to recommend for general users, though you may need at times to use the integrated Comfy tab as a backup way to execute some things that would ideally be on the main UI. There are some known bugs and quality-of-life limits still be worked out.

Those interested in helping push to a Full ready-for-anything Release status are welcome to submit PRs (read the [Contributing](/CONTRIBUTING.md) document first), and you can contact us here on GitHub or on [Discord](https://discord.gg/stablediffusion) in the `#stableswarmui` channel. I highly recommended reaching out to ask about plans for a feature before PRing it. There may already be specific plans or even a work in progress.

Key feature targets not yet implemented:
- Mobile browser formatting
- full detail "Current Model" display in UI, separate from the model selector (probably as a tab within the batch sidebar?)
- potentially even a way to dynamically shift tabs around between spots for convenience
- LLM-assisted prompting
- convenient direct-distribution of Swarm as a program (Electron app?)

# Try It On Google Colab

Expand Down
10 changes: 10 additions & 0 deletions install-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd $SCRIPT_DIR

# Accidental run prevention
if [ -d "StableSwarmUI" ]; then
echo "StableSwarmUI already exists in this directory. Please remove it before installing."
exit 1
fi
if [ -f "StableSwarmUI.sln" ]; then
echo "StableSwarmUI already exists in this directory. Please remove it before installing."
exit 1
fi

# Download swarm
git clone https://github.com/Stability-AI/StableSwarmUI
cd StableSwarmUI
Expand Down

0 comments on commit f84fe0d

Please sign in to comment.