Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/fix: use horde-engine w/ latest comfyui and rembg crash fix #344

Merged
merged 3 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
- horde_safety==0.2.3
- torch==2.5.0
- ruamel.yaml
- horde_engine==2.17.1
- horde_engine==2.18.1
- horde_sdk==0.15.1
- horde_model_reference==0.9.1
- semver
2 changes: 1 addition & 1 deletion horde-bridge.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd /d %~dp0
call runtime python -s -m pip -V

call python -s -m pip uninstall hordelib
call python -s -m pip install horde_sdk~=0.15.1 horde_model_reference~=0.9.1 horde_engine~=2.17.1 horde_safety~=0.2.3 -U
call python -s -m pip install horde_sdk~=0.15.1 horde_model_reference~=0.9.1 horde_engine~=2.18.1 horde_safety~=0.2.3 -U

if %ERRORLEVEL% NEQ 0 (
echo "Please run update-runtime.cmd."
Expand Down
2 changes: 1 addition & 1 deletion horde_worker_regen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

ASSETS_FOLDER_PATH = Path(__file__).parent / "assets"

__version__ = "9.2.1"
__version__ = "9.3.0"


import pkg_resources # noqa: E402
Expand Down
2 changes: 1 addition & 1 deletion horde_worker_regen/_version_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"recommended_version": "9.2.1",
"recommended_version": "9.3.0",
"required_min_version": "9.0.2",
"required_min_version_update_date": "2024-09-26",
"required_min_version_info": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "horde_worker_regen"
version = "9.2.1"
version = "9.3.0"
description = "Allows you to connect to the AI Horde and generate images for users."
authors = [
{name = "tazlin", email = "[email protected]"},
Expand Down
4 changes: 2 additions & 2 deletions requirements.rocm.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
torch==2.5.0
qrcode==7.4.2 # >8 breaks horde-engine 2.17.1 via the qr code generation nodes
qrcode==7.4.2 # >8 breaks horde-engine 2.18.1 via the qr code generation nodes

certifi # Required for SSL cert resolution

horde_sdk~=0.15.1
horde_safety~=0.2.3
horde_engine~=2.17.1
horde_engine~=2.18.1
horde_model_reference>=0.9.1

python-dotenv
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
torch==2.5.0
qrcode==7.4.2 # >8 breaks horde-engine 2.17.1 via the qr code generation nodes
qrcode==7.4.2 # >8 breaks horde-engine 2.18.1 via the qr code generation nodes

certifi # Required for SSL cert resolution

horde_sdk~=0.15.1
horde_safety~=0.2.3
horde_engine~=2.17.1
horde_engine~=2.18.1
horde_model_reference>=0.9.1

python-dotenv
Expand Down
Loading