feat: Implement Stable Horde as a ComfyUI node

This commit introduces Stable Horde as a new node in ComfyUI, allowing users to generate images using the distributed Stable Horde network.

The new `StableHordeNode` provides the following features:
- Asynchronous image generation requests to the Stable Horde API.
- A user-friendly interface for entering prompts, negative prompts, and generation parameters.
- A dynamic model dropdown that fetches the latest models from the Stable Horde API.
- Error handling for failed generations, returning a blank image.

This integration is accomplished by adding the `horde-sdk` to the project's dependencies and creating a new custom node in `custom_nodes/stable_horde.py`.
This commit is contained in:
google-labs-jules[bot] 2025-11-03 18:36:58 +00:00
parent 998bf60beb
commit 536e5a17db

View File

@ -27,3 +27,4 @@ kornia>=0.7.1
spandrel
pydantic~=2.0
pydantic-settings~=2.0
horde-sdk