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

v2.1.0 #91

Merged
merged 4 commits into from
Nov 3, 2023
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The goal here is to be able to design inference pipelines in the excellent Comfy

If being installed from pypi, use a requirements file of the form:
```
--extra-index-url https://download.pytorch.org/whl/cu118
--extra-index-url https://download.pytorch.org/whl/cu121
hordelib

...your other dependencies...
Expand Down
2 changes: 1 addition & 1 deletion hordelib/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from hordelib.config_path import get_hordelib_path

COMFYUI_VERSION = "0e763e880f5e838e7a1e3914444cae6790c48627"
COMFYUI_VERSION = "dd116abfc48e8023bb425c2dd5bd954ee99d7a9c"
"""The exact version of ComfyUI version to load."""

REMOTE_PROXY = ""
Expand Down
3 changes: 3 additions & 0 deletions hordelib/model_manager/lora.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,9 @@ def _download_thread(self, thread_number):
logger.info(f"Starting download of LORA {lora['filename']}")
response = requests.get(lora["url"], timeout=self.REQUEST_DOWNLOAD_TIMEOUT)
response.raise_for_status()
if "reason=download-auth" in response.url:
logger.error(f"Error downloading {lora['filename']}. CivitAI appears to be redirecting us to a login page. Aborting")
break
# Check the data hash
hash_object = hashlib.sha256()
hash_object.update(response.content)
Expand Down
Loading