mirror of
https://github.com/idrirap/ComfyUI-Lora-Auto-Trigger-Words.git
synced 2026-03-21 21:22:12 -03:00
Merge pull request #39 from idrirap/dev/issue38
fix: no longer crash when internet is unavailable
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "comfyui-lora-auto-trigger-words"
|
name = "comfyui-lora-auto-trigger-words"
|
||||||
description = "The aim of these custom nodes is to get an easy access to the tags used to trigger a lora / lycoris. Extract the tags from civitai or from the safetensors metadatas when available."
|
description = "The aim of these custom nodes is to get an easy access to the tags used to trigger a lora / lycoris. Extract the tags from civitai or from the safetensors metadatas when available."
|
||||||
version = "1.0.3"
|
version = "1.0.4"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
|||||||
7
utils.py
7
utils.py
@@ -83,8 +83,11 @@ def save_dict_to_json(data_dict, file_path):
|
|||||||
|
|
||||||
def get_model_version_info(hash_value):
|
def get_model_version_info(hash_value):
|
||||||
api_url = f"https://civitai.com/api/v1/model-versions/by-hash/{hash_value}"
|
api_url = f"https://civitai.com/api/v1/model-versions/by-hash/{hash_value}"
|
||||||
response = requests.get(api_url)
|
try:
|
||||||
|
response = requests.get(api_url)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[Lora-Auto-Trigger] {e}")
|
||||||
|
return None
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
return response.json()
|
return response.json()
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user