Stable Diffusion Library
Project description
sdwss: Stable Diffusion Webui Spaghetti Shield
Example plugin that appends ", gloomy atmosphere" to any positive prompt.
import sdwss
plugin = sdwss.register_plugin("my-plugin")
@plugin.wrapper
def encode_prompt_schedule(params: sdwss.EncodePromptScheduleParams, original_function):
if params.is_positive:
if params.prompt.strip():
params.prompt += ", "
params.prompt += "gloomy atmosphere"
return original_function(params)
sdwss is a library that exposes many different components of the Stable Diffusion Webui through a stable programming interface. It takes care of much of the boilerplate so that extension developers can focus on writing useful code.
Motivation
Developing extensions for the webui is currently very error-prone. Monkey patching is commonplace, extensions break all the time shortly after a release. There are many extension repositories that are stale because they are updated less often than the webui.
sdwss intends to help stabilize the interface extension developers program against so that things stop breaking all the time.
Documentation
This guide provides basic documentation for plugins intercommunication.
TL;DR:
- Create a plugin using
plugin = sdwss.create_plugin("plugin_name", "0.0.1") - Define a function and register it to a plugin using the
@plugin.functiondecorator. - Use the
@plugin.wrapperdecorator to register a function wrapper. You can use the optionalafter=parameter to specify execution order.
Create a plugin
Any change in the plugin system (registering a new function, wrapping a function, etc.) must be done through a plugin.
Here's how to declare a plugin:
import sdwss
plugin = sdwss.register_plugin("my_awesome_plugin", api_version="0.0.1")
A plugin identifier is a series of underscores or lowercase letters ([a-z_]+).
The identifier of a plugin must be unique; two plugins cannot have the same identifier at the same time.
The version of a plugin is used to make sure the programming interface the code is written against stays consistent over time.
Defining a Function
A function in sdwss is a regular Python function that can be registered to a plugin. It performs a specific task and can be extended using wrappers.
Example:
@plugin.function
def eat(food):
return f"I eat {food}!"
Using the wrapper Decorator
The wrapper decorator is used to extend or modify the behavior of a registered function.
The wrapper function must have the same name as the target function, unless the name parameter is used.
Without Parameters:
@plugin.wrapper
def eat(food, original_function):
return original_function(food).upper()
In this example, eat is a wrapper that converts the eating message to uppercase, extending the original eat function defined earlier.
With Parameters:
@plugin.wrapper(name="eat", after="another_plugin")
def custom_eating(food, original_function):
return f"{original_function(food)} You should as well!"
In this example, custom_eating adds an additional message to the original one.
The parameters of the annotation tells the plugin system to:
- wrap the
eatfunction defined earlier instead of targeting an unknown entity named"custom_eating" - only wrap after any wraps provided by
another_plugin
Applying Wrappers
Wrappers are applied in the order they are defined, unless specified otherwise using the after parameter.
Using Generator Functions as Wrappers
Generator functions can also be used for wrappers.
In a generator wrapper, each yield statement calls the original function and receives its result.
Here’s how you can convert a regular function wrapper to a generator wrapper:
Regular Function Wrapper:
@plugin.wrapper
def eat(food, original_function):
return original_function(food).upper()
Generator Function Wrapper:
@plugin.wrapper
def eat(food):
result = yield food
return result.upper()
In this generator wrapper example, the eat function yields the food to the original function and then receives the original function’s result.
The wrapper then proceeds to modify the result by converting it to uppercase before returning it.
You can also use multiple yield statements in a generator wrapper, which allows for more intricate interactions with the original function.
Each yield results in a call to the original function, and the generator receives the result of that call.
Example with Multiple Yields:
@plugin.wrapper
def eat(food):
result1 = yield food
result2 = yield f"{result1} and it's delicious"
return result2
In this example, the eat function calls the original function twice, first with the original food argument, and then with an additional question.
The final result is derived from the second call to the original function.
Best Practices
- Make sure the parameter types of your wrappers match the original function definition.
- Use descriptive names for your functions and wrappers.
- When applicable, ensure that your wrapper does not accidentally override or disrupt the behavior of the original function.
Contributing
Contributions are welcome.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sdwss-0.0.1.tar.gz.
File metadata
- Download URL: sdwss-0.0.1.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cb3a098ffbc8f7587231cb2737780fbabd2fd2473999772fc9625f2f8041cca
|
|
| MD5 |
1a4567d97026faf9672dd79e9b7c681e
|
|
| BLAKE2b-256 |
84382786954feb15329c0658a76d4beb61e36e8df232af8fa09f8c4fb3c26052
|
File details
Details for the file sdwss-0.0.1-py3-none-any.whl.
File metadata
- Download URL: sdwss-0.0.1-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da285a6ea6ba1cbbc34239e115ec60198ee9ebbe2bc3365509f025c39c48cd13
|
|
| MD5 |
b426a90aad3afc37aefaeecf2ce67153
|
|
| BLAKE2b-256 |
912e4879b0bdcfe05f2e720ac4706ce1ee8d88d9e8c2066b4900775588b92abe
|