DiffuseCraftMod / modutils.py
John6666's picture
Upload 23 files
13ea36e verified
import spaces
import json
import gradio as gr
import os
import re
from pathlib import Path
from PIL import Image
import numpy as np
import shutil
import requests
from requests.adapters import HTTPAdapter
from urllib3.util import Retry
import urllib.parse
import pandas as pd
from typing import Any
from huggingface_hub import HfApi, hf_hub_download, snapshot_download
from translatepy import Translator
from unidecode import unidecode
import copy
from datetime import datetime, timezone, timedelta
FILENAME_TIMEZONE = timezone(timedelta(hours=9)) # JST
import torch
from safetensors import safe_open
import gc
import html as html_lib
import subprocess
import tempfile
import time
from env import (HF_LORA_PRIVATE_REPOS1, HF_LORA_PRIVATE_REPOS2,
HF_MODEL_USER_EX, HF_MODEL_USER_LIKES, DIFFUSERS_FORMAT_LORAS,
DIRECTORY_LORAS, HF_READ_TOKEN, HF_TOKEN, CIVITAI_API_KEY)
MODEL_TYPE_DICT = {
"diffusers:StableDiffusionPipeline": "SD 1.5",
"diffusers:StableDiffusionXLPipeline": "SDXL",
"diffusers:FluxPipeline": "FLUX",
}
def log_info(message: str):
print(str(message))
def log_warning(message: str):
print(str(message))
def log_error(message: str):
print(str(message))
def get_user_agent():
return 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0'
def to_list(s):
return [x.strip() for x in s.split(",") if not s == ""]
def list_uniq(l):
return sorted(set(l), key=l.index)
def list_sub(a, b):
return [e for e in a if e not in b]
def is_repo_name(s):
return re.fullmatch(r'^[^/]+?/[^/]+?$', s)
DEFAULT_STATE = {
"show_diffusers_model_list_detail": False,
}
def get_state(state: dict, key: str):
if key in state:
return state[key]
if key in DEFAULT_STATE:
log_info(f"State '{key}' not found. Use default value.")
return DEFAULT_STATE[key]
log_warning(f"State '{key}' not found.")
return None
def set_state(state: dict, key: str, value: Any):
state[key] = value
translator = Translator()
def translate_to_en(input: str):
try:
output = str(translator.translate(input, 'English'))
except Exception as e:
output = input
log_warning(e)
return output
def get_local_model_list(dir_path):
model_list = []
valid_extensions = ('.ckpt', '.pt', '.pth', '.safetensors', '.bin')
dir_path = Path(dir_path)
for file in dir_path.glob("*"):
if file.suffix in valid_extensions:
file_path = str(dir_path / file.name)
model_list.append(file_path)
#print('\033[34mFILE: ' + file_path + '\033[0m')
return model_list
HF_FOLDER_TOKEN = ""
def get_token():
return HF_FOLDER_TOKEN
def set_token(token):
global HF_FOLDER_TOKEN
HF_FOLDER_TOKEN = token
set_token(HF_TOKEN)
def get_hf_api(token: str = ""):
return HfApi(token=token) if token else HfApi()
HF_HOST_ALIASES = frozenset({"huggingface.co", "www.huggingface.co", "hf.co"})
def parse_hf_file_url(url: str):
raw = str(url or "").strip()
if not raw:
return {}
try:
parts = urllib.parse.urlsplit(raw)
except Exception:
return {}
if str(parts.netloc or "").strip().lower() not in HF_HOST_ALIASES:
return {}
path_segments = [seg for seg in str(parts.path or "").split("/") if seg]
if not path_segments:
return {}
repo_type = "model"
if path_segments[0] in ["datasets", "spaces"]:
repo_type = "dataset" if path_segments[0] == "datasets" else "space"
path_segments = path_segments[1:]
if len(path_segments) < 5:
return {}
namespace, repo_name, action, revision = path_segments[:4]
if action not in ["resolve", "blob"]:
return {}
file_segments = [urllib.parse.unquote(seg) for seg in path_segments[4:]]
if not file_segments:
return {}
filename = file_segments[-1]
subfolder = "/".join(file_segments[:-1]) if len(file_segments) > 1 else None
return {
"repo_id": f"{namespace}/{repo_name}",
"filename": filename,
"subfolder": subfolder,
"repo_type": repo_type,
"revision": urllib.parse.unquote(revision),
}
def split_hf_url(url: str):
parsed = parse_hf_file_url(url)
if not parsed:
return "", "", "", ""
return parsed["repo_id"], parsed["filename"], parsed["subfolder"], parsed["repo_type"]
def download_hf_file(directory, url, force_filename="", hf_token="", progress=gr.Progress(track_tqdm=True)):
parsed = parse_hf_file_url(url)
if not parsed:
log_download_error("hf", "parse_url", url=url)
return None
kwargs = {}
if parsed["subfolder"] is not None:
kwargs["subfolder"] = parsed["subfolder"]
if parsed.get("revision"):
kwargs["revision"] = parsed["revision"]
try:
print(
f"Start HF download: repo={parsed['repo_id']} rev={parsed.get('revision') or '-'} "
f"file={parsed['filename']} to {directory}"
)
path = hf_hub_download(
repo_id=parsed["repo_id"],
filename=parsed["filename"],
repo_type=parsed["repo_type"],
local_dir=directory,
token=hf_token,
**kwargs,
)
forced_path = str(Path(directory) / force_filename) if force_filename else ""
if forced_path:
return move_downloaded_file_to_target(path, forced_path)
return path
except Exception as e:
log_download_error("hf", "hub_download", url=url, error=e)
forced_path = str(Path(directory) / force_filename) if force_filename else ""
if forced_path and Path(forced_path).exists():
return forced_path
return None
USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0'
CIVITAI_DEFAULT_ORIGIN = "https://civitai.com"
CIVITAI_CANONICAL_WEB_ORIGIN = CIVITAI_DEFAULT_ORIGIN
CIVITAI_RED_ORIGIN = "https://civitai.red"
CIVITAI_GREEN_HOST_ALIASES = frozenset({"civitai.green", "www.civitai.green"})
CIVITAI_RED_HOST_ALIASES = frozenset({"civitai.red", "www.civitai.red"})
CIVITAI_HOST_ALIASES = frozenset({"civitai.com", "www.civitai.com", *CIVITAI_GREEN_HOST_ALIASES, *CIVITAI_RED_HOST_ALIASES})
CIVITAI_API_ORIGIN_CANDIDATES = (CIVITAI_RED_ORIGIN, CIVITAI_DEFAULT_ORIGIN)
CIVITAI_REFERER = f"{CIVITAI_CANONICAL_WEB_ORIGIN}/"
CIVITAI_RETRY_TOTAL = 5
CIVITAI_RETRY_BACKOFF = 1.0
CIVITAI_RESOLVE_RETRY_TOTAL = 4
CIVITAI_RESOLVE_RETRY_BACKOFF = 0.8
CIVITAI_STATUS_FORCELIST = [429, 500, 502, 503, 504]
CIVITAI_RESOLVE_TIMEOUT = (7.0, 25.0)
CIVITAI_METADATA_TIMEOUT = (3.0, 15.0)
CIVITAI_SEARCH_TIMEOUT = (3.0, 30.0)
CIVITAI_NEGATIVE_CACHE_LIMIT = 256
CIVITAI_RESOLVE_CACHE: dict[str, str] = {}
CIVITAI_RESOLVE_NEGATIVE_CACHE: dict[str, str] = {}
CIVITAI_VERSION_JSON_CACHE: dict[str, dict] = {}
CIVITAI_VERSION_NEGATIVE_CACHE: dict[str, str] = {}
CIVITAI_WGET_FRESH_RETRY_LIMIT = 1
CIVITAI_API_PROBE_TIMEOUT = (3.0, 8.0)
CIVITAI_API_RETRYABLE_STATUSES = frozenset([404, 405, 429, 500, 502, 503, 504])
CIVITAI_ACTIVE_API_ORIGIN = ""
CIVITAI_ACTIVE_API_BASE = ""
def create_retry_session(total=CIVITAI_RETRY_TOTAL, backoff_factor=CIVITAI_RETRY_BACKOFF):
session = requests.Session()
retries = Retry(total=total, backoff_factor=backoff_factor, status_forcelist=CIVITAI_STATUS_FORCELIST)
session.mount("https://", HTTPAdapter(max_retries=retries))
session.mount("http://", HTTPAdapter(max_retries=retries))
return session
def cache_put(cache: dict, key: str, value):
key = str(key or "").strip()
if not key:
return
if key in cache:
cache.pop(key, None)
elif len(cache) >= CIVITAI_NEGATIVE_CACHE_LIMIT:
try:
cache.pop(next(iter(cache)))
except Exception:
cache.clear()
cache[key] = value
def get_civitai_headers(api_key: str = ""):
headers = {'User-Agent': USER_AGENT, 'content-type': 'application/json'}
if api_key:
headers['Authorization'] = f'Bearer {api_key}'
return headers
def get_civitai_url_parts(url: str):
try:
return urllib.parse.urlsplit(str(url or "").strip())
except Exception:
return urllib.parse.urlsplit("")
def sanitize_url_for_log(url: str):
raw = str(url or "").strip()
if not raw:
return raw
parts = get_civitai_url_parts(raw)
if not parts.netloc:
return raw
pairs = [
(k, v)
for k, v in urllib.parse.parse_qsl(parts.query, keep_blank_values=True)
if str(k).lower() != "token"
]
query = urllib.parse.urlencode(pairs)
return urllib.parse.urlunsplit((parts.scheme, parts.netloc, parts.path, query, parts.fragment))
def canonicalize_civitai_netloc(netloc: str):
host = str(netloc or "").strip().lower()
if host in CIVITAI_GREEN_HOST_ALIASES:
return "civitai.com"
if host == "www.civitai.com":
return "civitai.com"
if host == "www.civitai.red":
return "civitai.red"
return host
def is_civitai_host(netloc: str):
return canonicalize_civitai_netloc(netloc) in {"civitai.com", "civitai.red"}
def is_civitai_url(url: str):
return is_civitai_host(get_civitai_url_parts(url).netloc)
def get_civitai_canonical_web_origin():
return CIVITAI_CANONICAL_WEB_ORIGIN
def build_civitai_api_base(origin: str):
raw = str(origin or "").strip().rstrip("/")
return f"{raw}/api/v1" if raw else ""
def set_civitai_active_api_origin(origin: str):
global CIVITAI_ACTIVE_API_ORIGIN, CIVITAI_ACTIVE_API_BASE
raw = str(origin or "").strip().rstrip("/")
if not raw:
raw = CIVITAI_DEFAULT_ORIGIN
CIVITAI_ACTIVE_API_ORIGIN = raw
CIVITAI_ACTIVE_API_BASE = build_civitai_api_base(raw)
return CIVITAI_ACTIVE_API_BASE
def probe_civitai_api_origin(session, origin: str, api_key: str = ""):
headers = get_civitai_headers(api_key or CIVITAI_API_KEY)
base_url = build_civitai_api_base(origin)
if not base_url:
return False
response = None
try:
response = session.get(
f"{base_url}/tags",
params={"limit": 1},
headers=headers,
stream=True,
timeout=CIVITAI_API_PROBE_TIMEOUT,
)
if not response.ok:
return False
content_type = str(response.headers.get("content-type") or "").lower()
if "json" not in content_type:
return False
data = response.json()
return isinstance(data, dict) and "items" in data
except Exception:
return False
finally:
try:
if response is not None:
response.close()
except Exception:
pass
def get_civitai_active_api_origin(force_refresh: bool = False, api_key: str = ""):
global CIVITAI_ACTIVE_API_ORIGIN
if CIVITAI_ACTIVE_API_ORIGIN and not force_refresh:
return CIVITAI_ACTIVE_API_ORIGIN
session = create_retry_session(total=2, backoff_factor=0.5)
for origin in CIVITAI_API_ORIGIN_CANDIDATES:
if probe_civitai_api_origin(session, origin, api_key=api_key):
set_civitai_active_api_origin(origin)
print(f"[civitai] selected api origin: {CIVITAI_ACTIVE_API_ORIGIN}")
return CIVITAI_ACTIVE_API_ORIGIN
set_civitai_active_api_origin(CIVITAI_DEFAULT_ORIGIN)
print(f"[civitai] api probe fallback origin: {CIVITAI_ACTIVE_API_ORIGIN}")
return CIVITAI_ACTIVE_API_ORIGIN
def get_civitai_active_api_base(force_refresh: bool = False, api_key: str = ""):
if CIVITAI_ACTIVE_API_BASE and not force_refresh:
return CIVITAI_ACTIVE_API_BASE
get_civitai_active_api_origin(force_refresh=force_refresh, api_key=api_key)
return CIVITAI_ACTIVE_API_BASE
def iter_civitai_api_bases(api_key: str = ""):
preferred = get_civitai_active_api_base(api_key=api_key)
bases = [preferred] if preferred else []
for origin in CIVITAI_API_ORIGIN_CANDIDATES:
base = build_civitai_api_base(origin)
if base and base not in bases:
bases.append(base)
return bases
def is_retryable_civitai_api_status(status):
try:
return int(status) in CIVITAI_API_RETRYABLE_STATUSES
except Exception:
return False
def request_civitai_api_response(path: str, params=None, headers=None, timeout=CIVITAI_METADATA_TIMEOUT,
api_key: str = "", session=None, stream: bool = True, allow_not_found: bool = False):
effective_api_key = api_key or CIVITAI_API_KEY
request_headers = headers or get_civitai_headers(effective_api_key)
request_session = session or create_retry_session()
last_response = None
last_url = ""
last_error = None
bases = iter_civitai_api_bases(api_key=effective_api_key)
for idx, base_url in enumerate(bases):
url = f"{base_url}/{str(path or '').lstrip('/')}"
try:
response = request_session.get(url, params=params, headers=request_headers, stream=stream, timeout=timeout)
if response.ok or (allow_not_found and response.status_code == 404):
set_civitai_active_api_origin(base_url.rsplit('/api/v1', 1)[0])
return response, url
last_response = response
last_url = url
if idx + 1 < len(bases) and is_retryable_civitai_api_status(response.status_code):
try:
response.close()
except Exception:
pass
continue
return response, url
except Exception as e:
last_error = e
last_url = url
if idx + 1 < len(bases):
continue
raise
if last_response is not None:
return last_response, last_url
if last_error is not None:
raise last_error
raise RuntimeError(f"Failed to request Civitai API path: {path}")
def get_civitai_api_origin_from_url(url: str):
raw = str(url or "").strip()
if not raw:
return ""
if raw.endswith('/api/v1'):
raw = raw.rsplit('/api/v1', 1)[0]
parts = get_civitai_url_parts(raw)
netloc = canonicalize_civitai_netloc(parts.netloc)
if not netloc:
return ""
scheme = parts.scheme or 'https'
return f"{scheme}://{netloc}"
def request_civitai_api_json(path: str, params=None, headers=None, timeout=CIVITAI_METADATA_TIMEOUT,
api_key: str = "", session=None, stream: bool = True, allow_not_found: bool = False,
non_json_fallback_origin: str = CIVITAI_DEFAULT_ORIGIN):
effective_api_key = api_key or CIVITAI_API_KEY
request_headers = headers or get_civitai_headers(effective_api_key)
request_session = session or create_retry_session()
result, endpoint_url = request_civitai_api_response(
path,
params=params,
headers=request_headers,
timeout=timeout,
api_key=effective_api_key,
session=request_session,
stream=stream,
allow_not_found=allow_not_found,
)
if allow_not_found and result.status_code == 404:
return None, endpoint_url, result
result.raise_for_status()
try:
return result.json(), endpoint_url, result
except Exception:
current_origin = get_civitai_api_origin_from_url(endpoint_url)
fallback_origin = str(non_json_fallback_origin or CIVITAI_DEFAULT_ORIGIN).strip().rstrip('/')
if fallback_origin and current_origin and current_origin != fallback_origin:
print(f"[retry] Civitai API non-json response from {current_origin}: {str(path or '').lstrip('/')}")
try:
result.close()
except Exception:
pass
fallback_base = build_civitai_api_base(fallback_origin)
fallback_url = f"{fallback_base}/{str(path or '').lstrip('/')}"
fallback_response = request_session.get(
fallback_url,
params=params,
headers=request_headers,
stream=stream,
timeout=timeout,
)
if allow_not_found and fallback_response.status_code == 404:
return None, fallback_url, fallback_response
fallback_response.raise_for_status()
fallback_json = fallback_response.json()
set_civitai_active_api_origin(fallback_origin)
return fallback_json, fallback_url, fallback_response
raise
try:
get_civitai_active_api_base()
except Exception as e:
print(f"[civitai] startup api probe failed: {type(e).__name__}: {e}")
set_civitai_active_api_origin(CIVITAI_DEFAULT_ORIGIN)
def is_civitai_download_api_path(path: str):
return re.match(r'^/api/download/models/\d+$', str(path or "").strip()) is not None
def extract_civitai_model_version_id(url: str):
try:
parts = get_civitai_url_parts(url)
for pattern in [r'^/api/download/models/(\d+)$', r'^/api/v1/model-versions/(\d+)$']:
m = re.match(pattern, str(parts.path or "").strip())
if m:
return m.group(1)
qs = urllib.parse.parse_qs(parts.query)
for key in ["modelVersionId", "modelversionid", "versionId", "versionid"]:
values = qs.get(key, [])
if not values:
continue
value = str(values[0]).strip()
if value.isdigit():
return value
except Exception:
return ""
return ""
def get_civitai_query_filters(url: str):
try:
parts = get_civitai_url_parts(url)
qs = urllib.parse.parse_qs(parts.query)
except Exception:
return {}
filters = {}
for key in ["type", "format", "size", "fp"]:
values = qs.get(key, [])
if values:
filters[key] = str(values[0]).strip()
return filters
def normalize_civitai_filter_value(key: str, value):
if value is None:
return ""
text = str(value).strip()
if not text:
return ""
if key == "fp":
return text.replace("-", "").replace("_", "").replace(" ", "").lower()
return text.lower()
def describe_civitai_file_for_log(file_info):
if not isinstance(file_info, dict):
return ""
parts = []
for key in ["name", "type", "format", "size", "fp"]:
value = file_info.get(key)
if value is None:
continue
text = str(value).strip()
if text:
parts.append(f"{key}={text}")
hashes = file_info.get("hashes") if isinstance(file_info.get("hashes"), dict) else {}
sha256 = str(hashes.get("SHA256") or "").strip()
if sha256:
parts.append(f"sha256={sha256[:12]}...")
return ", ".join(parts)
def build_civitai_download_query_from_url(url: str):
try:
parts = get_civitai_url_parts(url)
except Exception:
return ""
blocked = {"modelversionid", "versionid"}
pairs = [
(k, v)
for k, v in urllib.parse.parse_qsl(parts.query, keep_blank_values=True)
if str(k).lower() not in blocked
]
return urllib.parse.urlencode(pairs)
def to_civitai_default_download_url(version_id: str, query: str = ""):
if not str(version_id or "").isdigit():
return ""
base = f"{get_civitai_active_api_origin()}/api/download/models/{version_id}"
return f"{base}?{query}" if query else base
def normalize_civitai_download_api_url(url: str):
parts = get_civitai_url_parts(url)
if not is_civitai_host(parts.netloc) or not is_civitai_download_api_path(parts.path):
return str(url or "").strip()
host = canonicalize_civitai_netloc(parts.netloc)
return urllib.parse.urlunsplit(("https", host, parts.path, parts.query, ""))
def extract_first_civitai_download_url_from_html(html: str):
if not html:
return ""
page = html_lib.unescape(str(html))
patterns = [
r'https?://(?:www\.)?(?:civitai\.com|civitai\.green|civitai\.red)/api/download/models/\d+[^\s\'\"<>\)\]\}]*',
r'["\'](/api/download/models/\d+[^"\']*)["\']',
]
for pattern in patterns:
try:
m = re.search(pattern, page, flags=re.IGNORECASE)
except re.error:
m = None
if not m:
continue
candidate = m.group(1) if m.lastindex else m.group(0)
candidate = str(candidate or "").strip("\"'")
if candidate.startswith("/"):
candidate = urllib.parse.urljoin(get_civitai_canonical_web_origin(), candidate)
return normalize_civitai_download_api_url(candidate)
return ""
def resolve_civitai_model_page_to_download_url(url: str, api_key: str = ""):
raw = str(url or "").strip()
if not raw:
return raw
cached = CIVITAI_RESOLVE_CACHE.get(raw)
if cached:
return cached
if raw in CIVITAI_RESOLVE_NEGATIVE_CACHE:
return raw
parts = get_civitai_url_parts(raw)
if not is_civitai_host(parts.netloc):
return raw
if is_civitai_download_api_path(parts.path):
normalized = normalize_civitai_download_api_url(raw)
cache_put(CIVITAI_RESOLVE_CACHE, raw, normalized)
return normalized
if not re.match(r'^/models/\d+(?:/[^/?#]+)?/?$', parts.path or ""):
return raw
version_id = extract_civitai_model_version_id(raw)
if version_id:
normalized = to_civitai_default_download_url(version_id, query=build_civitai_download_query_from_url(raw))
cache_put(CIVITAI_RESOLVE_CACHE, raw, normalized)
return normalized
headers = get_civitai_headers(api_key if parts.netloc.lower().endswith("civitai.com") else "")
headers['Referer'] = f"{parts.scheme or 'https'}://{parts.netloc}/"
session = create_retry_session(total=CIVITAI_RESOLVE_RETRY_TOTAL, backoff_factor=CIVITAI_RESOLVE_RETRY_BACKOFF)
try:
r = session.get(raw, headers=headers, timeout=CIVITAI_RESOLVE_TIMEOUT)
if not r.ok:
print(f"Civitai model page resolve failed: {sanitize_url_for_log(raw)} status={r.status_code}")
if r.status_code in [400, 401, 403, 404]:
cache_put(CIVITAI_RESOLVE_NEGATIVE_CACHE, raw, f"status={r.status_code}")
return raw
extracted = extract_first_civitai_download_url_from_html(r.text)
if extracted:
normalized = normalize_civitai_download_api_url(extracted)
cache_put(CIVITAI_RESOLVE_CACHE, raw, normalized)
return normalized
return raw
except Exception as e:
print(f"Failed to resolve Civitai model page URL: {sanitize_url_for_log(raw)} {type(e).__name__}: {sanitize_sensitive_log_text(e)}")
return raw
def normalize_civitai_input_url(url: str, api_key: str = ""):
raw = str(url or "").strip()
if not raw or not is_civitai_url(raw):
return raw
normalized = resolve_civitai_model_page_to_download_url(raw, api_key=api_key)
if normalized != raw:
print(f"Normalized Civitai URL: {sanitize_url_for_log(raw)} -> {sanitize_url_for_log(normalized)}")
return normalized
def append_civitai_token(url: str, api_key: str = ""):
raw = str(url or "").strip()
if not raw or not api_key:
return raw
parts = get_civitai_url_parts(raw)
pairs = [(k, v) for k, v in urllib.parse.parse_qsl(parts.query, keep_blank_values=True) if k.lower() != "token"]
pairs.append(("token", api_key))
query = urllib.parse.urlencode(pairs)
return urllib.parse.urlunsplit((parts.scheme or "https", parts.netloc, parts.path, query, parts.fragment))
def get_civitai_request_context(url: str, api_key: str = ""):
raw_url = str(url or "").strip()
normalized_url = normalize_civitai_input_url(raw_url, api_key=api_key)
model_version_id = extract_civitai_model_version_id(normalized_url) or extract_civitai_model_version_id(raw_url)
return {
"raw_url": raw_url,
"normalized_url": normalized_url,
"model_version_id": model_version_id,
"filters": get_civitai_query_filters(raw_url),
}
def resolve_civitai_download_url(url: str, civitai_api_key: str = "", max_tries: int = 3):
raw = normalize_civitai_download_api_url(str(url or "").strip())
if not raw:
return raw
headers = get_civitai_headers(civitai_api_key)
headers["Referer"] = CIVITAI_REFERER
dl_url = append_civitai_token(raw, civitai_api_key)
last_error = None
for attempt in range(1, max_tries + 1):
response = None
try:
response = create_retry_session(total=3, backoff_factor=1.0).get(
dl_url,
headers=headers,
allow_redirects=False,
stream=True,
timeout=CIVITAI_RESOLVE_TIMEOUT,
)
status = int(response.status_code)
location = str(response.headers.get("Location") or "").strip()
resolved_url = str(location or response.url or dl_url).strip()
resolved_host = get_civitai_url_parts(resolved_url).netloc
print(
f"[civitai] resolve signed url attempt={attempt}/{max_tries} status={status} "
f"host={resolved_host or '-'} url={sanitize_url_for_log(raw)}"
)
if status in (301, 302, 303, 307, 308) and location:
return resolved_url
if response.ok and resolved_url and not is_civitai_host(resolved_host):
return resolved_url
last_error = RuntimeError(f"status={status}")
except Exception as e:
last_error = e
print(
f"[civitai] resolve signed url failed attempt={attempt}/{max_tries} "
f"url={sanitize_url_for_log(raw)} error={type(e).__name__}: {sanitize_sensitive_log_text(e)}"
)
finally:
try:
if response is not None:
response.close()
except Exception:
pass
if attempt < max_tries:
time.sleep(min(3.0, 0.8 * attempt))
if last_error is not None:
raise last_error
raise RuntimeError("Failed to resolve Civitai signed download URL")
def pick_civitai_file_from_version_json(json_data, source_url: str = ""):
files = json_data.get("files", []) if isinstance(json_data, dict) else []
if not isinstance(files, list) or not files:
return {}
version_id = str((json_data or {}).get("id") or "")
filters = get_civitai_query_filters(source_url)
candidates = []
fallback = []
for idx, file_info in enumerate(files):
if not isinstance(file_info, dict):
continue
mismatch = False
matched_filter_count = 0
for key, expected in filters.items():
actual = file_info.get(key)
expected_norm = normalize_civitai_filter_value(key, expected)
actual_norm = normalize_civitai_filter_value(key, actual)
if actual_norm:
if actual_norm != expected_norm:
mismatch = True
break
matched_filter_count += 1
download_url = str(file_info.get("downloadUrl") or "")
score = 0
if matched_filter_count:
score += matched_filter_count * 3
if version_id and version_id in download_url:
score += 4
if download_url:
score += 2
if file_info.get("name"):
score += 1
hashes = file_info.get("hashes") if isinstance(file_info.get("hashes"), dict) else {}
if str(hashes.get("SHA256") or "").strip():
score += 1
target = fallback if mismatch else candidates
target.append((score, idx, file_info))
pool = candidates if candidates else fallback
if not pool:
return {}
pool.sort(key=lambda item: (item[0], item[1]), reverse=True)
return dict(pool[0][2])
def move_downloaded_file_to_target(downloaded_path: str, target_path: str):
source = Path(str(downloaded_path or "")).expanduser()
target = Path(str(target_path or "")).expanduser()
if not str(target):
return str(source)
if not source.exists():
return str(target) if target.exists() else str(source)
try:
if source.resolve() == target.resolve():
return str(target)
except Exception:
pass
try:
target.parent.mkdir(parents=True, exist_ok=True)
if target.exists() and target.is_file():
target.unlink()
shutil.move(str(source), str(target))
return str(target)
except Exception as e:
print(f"HF local rename failed: {source} -> {target} {type(e).__name__}: {sanitize_sensitive_log_text(e)}")
return str(source)
def request_json_data(url, api_key: str = ""):
effective_api_key = api_key or CIVITAI_API_KEY
context = get_civitai_request_context(url, api_key=effective_api_key)
raw_url = context["raw_url"]
normalized_url = context["normalized_url"]
model_version_id = context["model_version_id"]
if not model_version_id:
print(f"Civitai metadata lookup skipped: modelVersionId not found for {sanitize_url_for_log(raw_url)}")
cache_put(CIVITAI_RESOLVE_NEGATIVE_CACHE, raw_url, "missing_model_version_id")
return None
cached_json = CIVITAI_VERSION_JSON_CACHE.get(model_version_id)
if cached_json:
return copy.deepcopy(cached_json)
if model_version_id in CIVITAI_VERSION_NEGATIVE_CACHE:
return None
endpoint_path = f"/model-versions/{model_version_id}"
headers = get_civitai_headers(effective_api_key)
session = create_retry_session()
try:
json_data, endpoint_url, result = request_civitai_api_json(
endpoint_path,
headers=headers,
timeout=CIVITAI_METADATA_TIMEOUT,
api_key=effective_api_key,
session=session,
stream=True,
allow_not_found=True,
)
if result.status_code == 404:
print(f"Civitai metadata lookup status=404: {endpoint_url}")
cache_put(CIVITAI_VERSION_NEGATIVE_CACHE, model_version_id, "status=404")
return None
if not json_data:
print(f"Civitai metadata lookup returned empty JSON: {endpoint_url}")
cache_put(CIVITAI_VERSION_NEGATIVE_CACHE, model_version_id, "empty_json")
return None
cache_put(CIVITAI_VERSION_JSON_CACHE, model_version_id, copy.deepcopy(json_data))
if normalized_url and normalized_url != raw_url:
cache_put(CIVITAI_RESOLVE_CACHE, raw_url, normalized_url)
return json_data
except Exception as e:
print(f"Civitai metadata lookup failed: {endpoint_url} {type(e).__name__}: {sanitize_sensitive_log_text(e)}")
return None
class ModelInformation:
def __init__(self, json_data, source_url: str = ""):
selected_file = pick_civitai_file_from_version_json(json_data, source_url=source_url)
self.model_version_id = json_data.get("id", "")
self.model_id = json_data.get("modelId", "")
self.download_url = selected_file.get("downloadUrl", "") or json_data.get("downloadUrl", "")
self.model_url = f"{get_civitai_canonical_web_origin()}/models/{self.model_id}?modelVersionId={self.model_version_id}"
self.filename_url = selected_file.get("name", "") or ""
self.description = json_data.get("description", "")
if self.description is None:
self.description = ""
self.model_name = json_data.get("model", {}).get("name", "")
self.model_type = json_data.get("model", {}).get("type", "")
self.nsfw = json_data.get("model", {}).get("nsfw", False)
self.poi = json_data.get("model", {}).get("poi", False)
self.images = [img.get("url", "") for img in json_data.get("images", [])]
self.example_prompt = json_data.get("trainedWords", [""])[0] if json_data.get("trainedWords") else ""
self.original_json = copy.deepcopy(json_data)
self.selected_file = copy.deepcopy(selected_file)
def retrieve_model_info(url, api_key: str = ""):
json_data = request_json_data(url, api_key=api_key)
if not json_data:
return None
model_descriptor = ModelInformation(json_data, source_url=url)
filters = get_civitai_query_filters(url)
if filters:
selected_summary = describe_civitai_file_for_log(model_descriptor.selected_file)
if selected_summary:
print(f"Civitai selected file: filters={filters} {selected_summary}")
else:
print(f"Civitai selected file: filters={filters} using model-level downloadUrl")
return model_descriptor
def list_downloaded_candidate_files(directory):
try:
return {
str(path.resolve())
for path in Path(directory).iterdir()
if path.is_file()
}
except Exception:
return set()
def sanitize_civitai_log_text(text: str):
output = str(text or "")
if not output:
return output
output = re.sub(r"([?&]token=)[^&\s\"']+", r"\1***", output, flags=re.IGNORECASE)
output = re.sub(r"([?&]Authorization=)[^&\s\"']+", r"\1***", output, flags=re.IGNORECASE)
return output
def sanitize_sensitive_log_text(text):
output = sanitize_civitai_log_text(text)
if not output:
return output
output = re.sub(r"(authorization:\s*bearer\s+)[^\s\"']+", r"\1***", output, flags=re.IGNORECASE)
output = re.sub(r"(bearer\s+)[^\s\"']+", r"\1***", output, flags=re.IGNORECASE)
return output
def log_download_error(scope: str, kind: str, url: str = "", status=None, error=None, detail: str = ""):
parts = [f"[{scope}] error={kind}"]
if status is not None:
parts.append(f"status={status}")
if url:
parts.append(f"url={sanitize_url_for_log(url)}")
if error is not None:
parts.append(f"exc={type(error).__name__}: {sanitize_sensitive_log_text(error)}")
elif detail:
parts.append(str(detail))
print(" ".join(parts))
def terminate_subprocess_safely(process, label: str = "subprocess"):
if process is None:
return
try:
if process.poll() is not None:
return
process.terminate()
process.wait(timeout=3)
except subprocess.TimeoutExpired:
try:
process.kill()
process.wait(timeout=3)
except Exception as e:
print(f"[{label}] kill failed: {type(e).__name__}: {sanitize_sensitive_log_text(e)}")
except Exception as e:
print(f"[{label}] terminate failed: {type(e).__name__}: {sanitize_sensitive_log_text(e)}")
def run_subprocess_capture(args, cwd=None, label: str = "subprocess"):
process = subprocess.Popen(
list(args),
cwd=str(cwd) if cwd else None,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
)
try:
stdout, stderr = process.communicate()
except BaseException:
terminate_subprocess_safely(process, label=label)
raise
output = "\n".join([part for part in [stdout, stderr] if part]).strip()
return int(process.returncode or 0), output
def build_civitai_wget_args(directory, download_url: str, filename: str = ""):
args = [
"wget",
"-c",
"-nv",
"--user-agent", USER_AGENT,
"--referer", CIVITAI_REFERER,
]
if filename:
args.extend(["-O", str(Path(directory) / filename)])
else:
args.extend(["-P", str(directory)])
args.append(str(download_url))
return args
def run_civitai_wget(directory, download_url: str, filename: str = ""):
args = build_civitai_wget_args(directory, download_url, filename=filename)
return run_subprocess_capture(args, cwd=None, label="civitai-wget")
def build_generic_wget_args(directory, download_url: str):
return [
"wget",
"-c",
"-nv",
"-P", str(directory),
str(download_url),
]
def run_generic_wget(directory, download_url: str):
args = build_generic_wget_args(directory, download_url)
return run_subprocess_capture(args, cwd=None, label="generic-wget")
def classify_civitai_download_failure(output_text: str):
text = str(output_text or "")
lower = text.lower()
if "status=403" in lower and "b2.civitai.com" in lower:
return "b2_403"
if "status=403" in lower and "civitai.com/api/download/models/" in lower:
return "api_403"
if "status=403" in lower:
return "http_403"
if "timed out" in lower or "timeout" in lower:
return "timeout"
return "other"
def cleanup_civitai_download_artifacts(directory, filename: str = ""):
removed = []
if not filename:
return removed
target = Path(directory) / filename
for candidate in [target]:
try:
if candidate.exists() and candidate.is_file():
candidate.unlink()
removed.append(str(candidate))
except Exception as e:
print(f"[civitai] cleanup failed path={candidate} {type(e).__name__}: {e}")
return removed
def guess_downloaded_file_path(directory, before_files, expected_filename=""):
expected_path = str(Path(directory) / expected_filename) if expected_filename else ""
if expected_path and Path(expected_path).exists():
return expected_path
after_files = list_downloaded_candidate_files(directory)
new_files = sorted(list(after_files - set(before_files)))
if len(new_files) == 1:
return new_files[0]
if expected_filename:
expected_name = str(expected_filename).strip()
stem = Path(expected_name).stem
suffix = Path(expected_name).suffix.lower()
matched = []
for path_str in new_files:
path_obj = Path(path_str)
if suffix and path_obj.suffix.lower() != suffix:
continue
if stem and (path_obj.stem == stem or path_obj.name == expected_name):
matched.append(path_str)
if len(matched) == 1:
return matched[0]
return None
def get_existing_completed_download_path(directory, expected_filename=""):
expected_name = str(expected_filename or "").strip()
if not expected_name:
return ""
directory_path = Path(directory)
expected_path = directory_path / expected_name
candidate_paths = [expected_path]
directory_name = directory_path.name.strip()
if directory_name:
legacy_nested_path = directory_path / directory_name / expected_name
if legacy_nested_path != expected_path:
candidate_paths.append(legacy_nested_path)
for candidate_path in candidate_paths:
if candidate_path.exists() and candidate_path.is_file():
return str(candidate_path)
return ""
def download_things(directory, url, hf_token="", civitai_api_key="", romanize=False):
hf_token = get_token()
url = url.strip()
downloaded_file_path = None
if "drive.google.com" in url:
before_files = list_downloaded_candidate_files(directory)
download_status, download_output = run_subprocess_capture(["gdown", "--fuzzy", str(url)], cwd=directory, label="gdown")
if download_status != 0:
log_download_error("gdown", "command_failed", url=url, status=download_status)
if download_output:
print(sanitize_sensitive_log_text(download_output))
downloaded_file_path = guess_downloaded_file_path(directory, before_files)
elif "huggingface.co" in url or "hf.co" in url:
url = url.replace("?download=true", "")
if "/blob/" in url:
url = url.replace("/blob/", "/resolve/")
parsed_hf = parse_hf_file_url(url)
filename = parsed_hf.get("filename", "") if parsed_hf else ""
if not filename:
filename = urllib.parse.unquote(url.split('/')[-1])
if romanize:
filename = unidecode(filename)
before_files = list_downloaded_candidate_files(directory)
downloaded_file_path = download_hf_file(directory, url, filename, hf_token) or ""
if not downloaded_file_path or not Path(downloaded_file_path).exists():
downloaded_file_path = guess_downloaded_file_path(directory, before_files, expected_filename=filename)
elif is_civitai_url(url):
if not civitai_api_key:
print("You need an API key to download Civitai models.")
civitai_context = get_civitai_request_context(url, api_key=civitai_api_key)
normalized_url = civitai_context["normalized_url"]
if normalized_url != url:
print(f"Civitai download URL normalized: {sanitize_url_for_log(url)} -> {sanitize_url_for_log(normalized_url)}")
model_profile = retrieve_model_info(normalized_url, api_key=civitai_api_key)
if model_profile and model_profile.download_url:
url = model_profile.download_url
filename = model_profile.filename_url or ""
if filename and romanize:
filename = unidecode(filename)
else:
url = normalize_civitai_download_api_url(normalized_url)
if not is_civitai_download_api_path(get_civitai_url_parts(url).path):
print(f"Civitai download URL unresolved: {sanitize_url_for_log(normalized_url)}")
return None
filename = ""
signed_url = ""
try:
signed_url = resolve_civitai_download_url(url, civitai_api_key, max_tries=2)
except Exception as e:
print(f"[civitai] failed to resolve signed download url: {sanitize_url_for_log(url)} {type(e).__name__}: {e}")
return None
signed_host = get_civitai_url_parts(signed_url).netloc
print(f"Filename: {filename}")
print(f"[civitai] resolved signed host={signed_host or '-'} url={sanitize_url_for_log(url)}")
existing_completed_path = get_existing_completed_download_path(directory, expected_filename=filename)
if existing_completed_path:
print(f"[civitai] using existing completed file path={existing_completed_path}")
downloaded_file_path = existing_completed_path
download_status, download_output = 0, ""
else:
before_files = list_downloaded_candidate_files(directory)
download_status, download_output = run_civitai_wget(directory, signed_url, filename=filename)
if download_status != 0:
failure_kind = classify_civitai_download_failure(download_output)
print(
f"[civitai] download failed kind={failure_kind} status={download_status} "
f"filename={filename or '-'} url={sanitize_url_for_log(url)}"
)
if download_output:
print(sanitize_civitai_log_text(download_output))
if failure_kind == "b2_403":
retry_count = 0
while retry_count < CIVITAI_WGET_FRESH_RETRY_LIMIT and download_status != 0:
retry_count += 1
removed = cleanup_civitai_download_artifacts(directory, filename=filename)
stale_hint = "yes" if removed or filename else "unknown"
print(
f"[civitai] retrying fresh api/download request after b2_403 "
f"attempt={retry_count}/{CIVITAI_WGET_FRESH_RETRY_LIMIT} stale_resume={stale_hint} "
f"filename={filename or '-'}"
)
if removed:
print(f"[civitai] removed stale partials: {removed}")
try:
signed_url = resolve_civitai_download_url(url, civitai_api_key, max_tries=2)
signed_host = get_civitai_url_parts(signed_url).netloc
print(f"[civitai] resolved retry signed host={signed_host or '-'} url={sanitize_url_for_log(url)}")
except Exception as e:
print(f"[civitai] retry resolve failed url={sanitize_url_for_log(url)} error={type(e).__name__}: {sanitize_sensitive_log_text(e)}")
break
download_status, download_output = run_civitai_wget(directory, signed_url, filename=filename)
if download_status == 0:
print(f"[civitai] download recovered after fresh retry: {filename or sanitize_url_for_log(url)}")
break
retry_kind = classify_civitai_download_failure(download_output)
print(
f"[civitai] retry failed kind={retry_kind} status={download_status} "
f"filename={filename or '-'} url={sanitize_url_for_log(url)}"
)
if download_output:
print(sanitize_civitai_log_text(download_output))
if download_status != 0:
log_download_error("civitai", "command_failed", url=url, status=download_status)
if not downloaded_file_path:
downloaded_file_path = guess_downloaded_file_path(directory, before_files, expected_filename=filename)
if not downloaded_file_path:
existing_completed_path = get_existing_completed_download_path(directory, expected_filename=filename)
if existing_completed_path:
print(f"[civitai] using existing completed file path={existing_completed_path}")
downloaded_file_path = existing_completed_path
if not downloaded_file_path:
log_download_error("civitai", "path_unresolved", url=url)
else:
before_files = list_downloaded_candidate_files(directory)
download_status, download_output = run_generic_wget(directory, url)
if download_status != 0:
log_download_error("download", "command_failed", url=url, status=download_status)
if download_output:
print(sanitize_sensitive_log_text(download_output))
downloaded_file_path = guess_downloaded_file_path(directory, before_files)
if downloaded_file_path and os.path.exists(downloaded_file_path):
print(f"Downloaded file path: {downloaded_file_path}")
return downloaded_file_path
def get_download_file(temp_dir, url, civitai_key="", progress=gr.Progress(track_tqdm=True)):
parsed_hf = parse_hf_file_url(url) if ("huggingface.co" in str(url) or "hf.co" in str(url)) else {}
local_name_hint = parsed_hf.get("filename", "") if parsed_hf else urllib.parse.unquote(Path(urllib.parse.urlsplit(str(url or "")).path).name)
cached_local_path = Path(temp_dir) / local_name_hint if local_name_hint else None
if not "http" in url and is_repo_name(url) and not Path(url).exists():
log_info(f"Use HF Repo: {url}")
new_file = url
elif not "http" in url and Path(url).exists():
log_info(f"Use local file: {url}")
new_file = url
elif cached_local_path and cached_local_path.exists():
log_info(f"File to download already exists: {url}")
new_file = str(cached_local_path)
else:
log_info(f"Start downloading: {url}")
before = get_local_model_list(temp_dir)
downloaded_path = ""
try:
downloaded_path = download_things(temp_dir, url.strip(), HF_TOKEN, civitai_key) or ""
except Exception:
log_error(f"Download failed: {url}")
return ""
after = get_local_model_list(temp_dir)
fallback_files = list_sub(after, before)
new_file = downloaded_path if downloaded_path and Path(downloaded_path).exists() else (fallback_files[0] if fallback_files else "")
if not new_file:
log_error(f"Download failed: {url}")
return ""
log_info(f"Download completed: {url}")
return new_file
def normalize_lora_basename(value: str):
basename = str(value or "").strip()
return basename.replace(".", "_").replace(" ", "_").replace(",", "")
def escape_lora_basename(basename: str):
return normalize_lora_basename(basename)
def to_lora_key(path: str):
return normalize_lora_basename(Path(path).stem)
def to_lora_path(key: str):
if Path(key).is_file(): return key
path = Path(f"{DIRECTORY_LORAS}/{normalize_lora_basename(key)}.safetensors")
return str(path)
def safe_float(input):
output = 1.0
try:
value = input.strip() if isinstance(input, str) else input
output = float(value)
except Exception:
output = 1.0
return output
def valid_model_name(model_name: str):
normalized = re.sub(r"\s+", " ", str(model_name or "").strip())
return normalized.split(" ")[0] if normalized else ""
def create_temp_png_path(prefix: str = "modutils_", suffix: str = ".png"):
fd, temp_path = tempfile.mkstemp(prefix=prefix, suffix=suffix)
os.close(fd)
return str(Path(temp_path).resolve())
def save_images(images: list[Image.Image], metadatas: list[str]):
from PIL import PngImagePlugin
try:
output_images = []
for image, metadata in zip(images, metadatas):
info = PngImagePlugin.PngInfo()
info.add_text("parameters", metadata)
savefile = create_temp_png_path(prefix="modimg_")
image.save(savefile, "PNG", pnginfo=info)
output_images.append(str(Path(savefile).resolve()))
return output_images
except Exception as e:
log_error(f"Failed to save image file: {e}")
raise Exception("Failed to save image file:") from e
def save_gallery_images(images, model_name="", progress=gr.Progress(track_tqdm=True)):
progress(0, desc="Updating gallery...")
basename = f"{model_name.split('/')[-1]}_{datetime.now(FILENAME_TIMEZONE).strftime('%Y%m%d_%H%M%S')}_"
if not images: return images, gr.update()
output_images = []
output_paths = []
for i, image in enumerate(images):
filename = f"{basename}{str(i + 1)}.png"
oldpath = Path(image[0])
newpath = oldpath.resolve() if oldpath.exists() else oldpath
try:
if oldpath.exists():
source_path = oldpath.resolve()
target_path = Path(filename).resolve()
if source_path != target_path:
shutil.copy2(str(source_path), str(target_path))
newpath = target_path
else:
newpath = source_path
except Exception as e:
log_error(e)
newpath = oldpath.resolve() if oldpath.exists() else oldpath
finally:
output_paths.append(str(newpath))
output_images.append((str(newpath), str(filename)))
progress(1, desc="Gallery updated.")
return gr.update(value=output_images), gr.update(value=output_paths, visible=True)
def save_gallery_history(images, files, history_gallery, history_files, progress=gr.Progress(track_tqdm=True)):
if not images or not files: return gr.update(), gr.update()
if not history_gallery: history_gallery = []
if not history_files: history_files = []
output_gallery = images + history_gallery
output_files = files + history_files
return gr.update(value=output_gallery), gr.update(value=output_files, visible=True)
def save_image_history(image, gallery, files, model_name: str, progress=gr.Progress(track_tqdm=True)):
if not gallery: gallery = []
if not files: files = []
temp_path = ""
try:
basename = f"{model_name.split('/')[-1]}_{datetime.now(FILENAME_TIMEZONE).strftime('%Y%m%d_%H%M%S')}"
if image is None or not isinstance(image, (str, Image.Image, np.ndarray, tuple)): return gr.update(), gr.update()
filename = f"{basename}.png"
if isinstance(image, tuple): image = image[0]
if isinstance(image, str):
oldpath = image
elif isinstance(image, Image.Image):
temp_path = create_temp_png_path(prefix="history_")
image.save(temp_path)
oldpath = temp_path
elif isinstance(image, np.ndarray):
temp_path = create_temp_png_path(prefix="history_")
Image.fromarray(image).convert('RGBA').save(temp_path)
oldpath = temp_path
oldpath = Path(oldpath)
newpath = oldpath
if oldpath.exists():
shutil.copy2(str(oldpath.resolve()), str(Path(filename).resolve()))
newpath = Path(filename).resolve()
files.insert(0, str(newpath))
gallery.insert(0, (str(newpath), str(filename)))
except Exception as e:
log_error(e)
finally:
if temp_path:
try:
safe_clean(temp_path)
except Exception:
pass
return gr.update(value=gallery), gr.update(value=files, visible=True)
def download_private_repo(repo_id, dir_path, is_replace):
if not HF_READ_TOKEN: return
try:
snapshot_download(repo_id=repo_id, local_dir=dir_path, allow_patterns=['*.ckpt', '*.pt', '*.pth', '*.safetensors', '*.bin'], token=HF_READ_TOKEN)
except Exception as e:
log_error(f"Error: Failed to download {repo_id}.")
log_warning(e)
return
if is_replace:
for file in Path(dir_path).glob("*"):
if file.exists() and "." in file.stem or " " in file.stem and file.suffix in ['.ckpt', '.pt', '.pth', '.safetensors', '.bin']:
newpath = Path(f'{file.parent.name}/{escape_lora_basename(file.stem)}{file.suffix}')
file.resolve().rename(newpath.resolve())
private_model_path_repo_dict = {} # {"local filepath": "huggingface repo_id", ...}
def get_private_model_list(repo_id, dir_path):
global private_model_path_repo_dict
if not HF_READ_TOKEN:
return []
api = get_hf_api(HF_READ_TOKEN)
try:
files = api.list_repo_files(repo_id)
except Exception as e:
print(f"Error: Failed to list {repo_id}.")
log_warning(e)
return []
dir_path_obj = Path(dir_path)
model_list = []
for file in files:
file_path = dir_path_obj / file
if file_path.suffix in ['.ckpt', '.pt', '.pth', '.safetensors', '.bin']:
model_list.append(str(file_path))
for model in model_list:
private_model_path_repo_dict[model] = repo_id
return model_list
def download_private_file(repo_id, path, is_replace):
file = Path(path)
newpath = Path(f'{file.parent.name}/{escape_lora_basename(file.stem)}{file.suffix}') if is_replace else file
if not HF_READ_TOKEN or newpath.exists(): return
filename = file.name
dirname = file.parent.name
try:
hf_hub_download(repo_id=repo_id, filename=filename, local_dir=dirname, token=HF_READ_TOKEN)
except Exception as e:
print(f"Error: Failed to download {filename}.")
log_warning(e)
return
if is_replace:
file.resolve().rename(newpath.resolve())
def download_private_file_from_somewhere(path, is_replace):
if path not in private_model_path_repo_dict:
return
repo_id = private_model_path_repo_dict.get(path, None)
download_private_file(repo_id, path, is_replace)
model_id_list = []
def get_model_id_list():
global model_id_list
if model_id_list: return model_id_list
api = get_hf_api()
model_ids = []
try:
models_likes = []
for author in HF_MODEL_USER_LIKES:
models_likes.extend(api.list_models(author=author, pipeline_tag="text-to-image", cardData=True, sort="likes"))
models_ex = []
for author in HF_MODEL_USER_EX:
models_ex = api.list_models(author=author, pipeline_tag="text-to-image", cardData=True, sort="last_modified")
except Exception as e:
print(f"Error: Failed to list {author}'s models.")
log_warning(e)
return model_ids
for model in models_likes:
model_ids.append(model.id) if not model.private else ""
anime_models = []
real_models = []
anime_models_flux = []
real_models_flux = []
for model in models_ex:
if not model.private and not model.gated:
if "diffusers:FluxPipeline" in model.tags: anime_models_flux.append(model.id) if "anime" in model.tags else real_models_flux.append(model.id)
else: anime_models.append(model.id) if "anime" in model.tags else real_models.append(model.id)
model_ids.extend(anime_models)
model_ids.extend(real_models)
model_ids.extend(anime_models_flux)
model_ids.extend(real_models_flux)
model_id_list = model_ids.copy()
return model_ids
model_id_list = get_model_id_list()
def is_public_diffusers_model(model) -> bool:
if model is None:
return False
if getattr(model, "private", False) or getattr(model, "gated", False):
return False
tags = getattr(model, "tags", None)
if tags is None:
return False
return "diffusers" in tags
def get_model_info_tags(model) -> list[str]:
tags = list(getattr(model, "tags", None) or [])
info = []
for k, v in MODEL_TYPE_DICT.items():
if k in tags:
info.append(v)
card_data = getattr(model, "card_data", None)
card_tags = getattr(card_data, "tags", None) if card_data else None
if card_tags:
info.extend(list_sub(card_tags, ['text-to-image', 'stable-diffusion', 'stable-diffusion-api', 'safetensors', 'stable-diffusion-xl']))
return info
def build_tupled_model_name(repo_id: str, info: list[str]) -> str:
info = list(info or [])
if "pony" in info:
info.remove("pony")
return f"{repo_id} (Pony🐴, {', '.join(info)})"
return f"{repo_id} ({', '.join(info)})"
def get_t2i_model_info(repo_id: str):
api = get_hf_api(HF_TOKEN)
try:
if not is_repo_name(repo_id): return ""
model = api.model_info(repo_id=repo_id, timeout=5.0)
except Exception as e:
print(f"Error: Failed to get {repo_id}'s info.")
log_warning(e)
return ""
if not is_public_diffusers_model(model): return ""
info = get_model_info_tags(model)
url = f"https://huggingface.co/{repo_id}/"
info.append(f"DLs: {model.downloads}")
info.append(f"likes: {model.likes}")
info.append(model.last_modified.strftime("lastmod: %Y-%m-%d"))
md = f"Model Info: {', '.join(info)}, [Model Repo]({url})"
return gr.update(value=md)
MAX_MODEL_INFO = 100
def get_tupled_model_list(model_list):
if not model_list: return []
#return [(x, x) for x in model_list] # for skipping this function
tupled_list = []
api = get_hf_api()
for i, repo_id in enumerate(model_list):
if i > MAX_MODEL_INFO:
tupled_list.append((repo_id, repo_id))
continue
try:
if not api.repo_exists(repo_id): continue
model = api.model_info(repo_id=repo_id, timeout=0.5)
except Exception as e:
print(f"{repo_id}: {e}")
tupled_list.append((repo_id, repo_id))
continue
if not is_public_diffusers_model(model):
continue
info = get_model_info_tags(model)
name = build_tupled_model_name(repo_id, info)
tupled_list.append((name, repo_id))
return tupled_list
private_lora_dict = {}
try:
with open('lora_dict.json', encoding='utf-8') as f:
d = json.load(f)
for k, v in d.items():
private_lora_dict[escape_lora_basename(k)] = v
except Exception as e:
print(e)
loras_dict = {"None": ["", "", "", "", ""], "": ["", "", "", "", ""]} | private_lora_dict.copy()
civitai_not_exists_list = []
loras_url_to_path_dict = {} # {"URL to download": "local filepath", ...}
civitai_last_results = {} # {"URL to download": {search results}, ...}
civitai_last_choices = [("", "")]
civitai_last_gallery = []
all_lora_list = []
private_lora_model_list = []
def get_private_lora_model_lists():
global private_lora_model_list
if len(private_lora_model_list) != 0: return private_lora_model_list
models1 = []
models2 = []
for repo in HF_LORA_PRIVATE_REPOS1:
models1.extend(get_private_model_list(repo, DIRECTORY_LORAS))
for repo in HF_LORA_PRIVATE_REPOS2:
models2.extend(get_private_model_list(repo, DIRECTORY_LORAS))
models = list_uniq(models1 + sorted(models2))
private_lora_model_list = models.copy()
return models
private_lora_model_list = get_private_lora_model_lists()
def get_lora_model_list():
loras = list_uniq(get_private_lora_model_lists() + DIFFUSERS_FORMAT_LORAS + get_local_model_list(DIRECTORY_LORAS))
loras.insert(0, "None")
loras.insert(0, "")
return loras
def get_all_lora_list():
global all_lora_list
loras = get_lora_model_list()
all_lora_list = loras.copy()
return loras
def get_all_lora_tupled_list():
global loras_dict
models = get_all_lora_list()
if not models: return []
tupled_list = []
for model in models:
#if not model: continue # to avoid GUI-related bug
basename = Path(model).stem
key = to_lora_key(model)
items = None
if key in loras_dict:
items = loras_dict.get(key, None)
else:
items = get_civitai_info(model)
if items != None:
loras_dict[key] = items
name = basename
value = model
if items and items[2] != "":
if items[1] == "Pony":
name = f"{basename} (for {items[1]}🐴, {items[2]})"
else:
name = f"{basename} (for {items[1]}, {items[2]})"
tupled_list.append((name, value))
return tupled_list
def update_lora_dict(path):
global loras_dict
key = escape_lora_basename(Path(path).stem)
if key in loras_dict: return
items = get_civitai_info(path)
if items == None: return
loras_dict[key] = items
def finalize_downloaded_lora_path(file_path: str, source_url: str = ""):
global loras_url_to_path_dict
if not file_path:
return ""
path = Path(file_path)
if not path.exists():
return ""
new_path = Path(f'{path.parent.name}/{escape_lora_basename(path.stem)}{path.suffix}')
try:
if path.resolve() != new_path.resolve():
if new_path.exists():
new_path = new_path.resolve()
else:
new_path = path.resolve().rename(new_path.resolve())
else:
new_path = path.resolve()
except Exception as e:
log_error(f"Failed to normalize downloaded lora path: {file_path} {e}")
new_path = path.resolve()
final_path = str(new_path)
if source_url:
loras_url_to_path_dict[source_url] = final_path
if is_civitai_url(source_url):
normalized_url = get_civitai_request_context(source_url, api_key=CIVITAI_API_KEY).get("normalized_url", "")
if normalized_url:
loras_url_to_path_dict[normalized_url] = final_path
update_lora_dict(final_path)
return final_path
def download_lora(dl_urls: str):
global loras_url_to_path_dict
dl_path = ""
for url in [url.strip() for url in dl_urls.split(',') if url.strip()]:
cached_path = loras_url_to_path_dict.get(url, "")
if cached_path and Path(cached_path).exists():
dl_path = cached_path
continue
if is_civitai_url(url):
normalized_url = get_civitai_request_context(url, api_key=CIVITAI_API_KEY).get("normalized_url", "")
cached_path = loras_url_to_path_dict.get(normalized_url, "") if normalized_url else ""
if cached_path and Path(cached_path).exists():
loras_url_to_path_dict[url] = cached_path
dl_path = cached_path
continue
downloaded_path = download_things(DIRECTORY_LORAS, url, HF_TOKEN, CIVITAI_API_KEY)
final_path = finalize_downloaded_lora_path(downloaded_path or "", source_url=url)
if final_path:
dl_path = final_path
return dl_path
def copy_lora(path: str, new_path: str):
if path == new_path: return new_path
cpath = Path(path)
npath = Path(new_path)
if cpath.exists():
try:
shutil.copy(str(cpath.resolve()), str(npath.resolve()))
except Exception as e:
log_warning(e)
return None
update_lora_dict(str(npath))
return new_path
else:
return None
def download_my_lora(dl_urls: str, lora1: str, lora2: str, lora3: str, lora4: str, lora5: str, lora6: str, lora7: str):
path = download_lora(dl_urls)
if path:
if not lora1 or lora1 == "None":
lora1 = path
elif not lora2 or lora2 == "None":
lora2 = path
elif not lora3 or lora3 == "None":
lora3 = path
elif not lora4 or lora4 == "None":
lora4 = path
elif not lora5 or lora5 == "None":
lora5 = path
#elif not lora6 or lora6 == "None":
# lora6 = path
#elif not lora7 or lora7 == "None":
# lora7 = path
choices = get_all_lora_tupled_list()
return gr.update(value=lora1, choices=choices), gr.update(value=lora2, choices=choices), gr.update(value=lora3, choices=choices),\
gr.update(value=lora4, choices=choices), gr.update(value=lora5, choices=choices), gr.update(value=lora6, choices=choices), gr.update(value=lora7, choices=choices)
def get_valid_lora_name(query: str, model_name: str):
path = "None"
if not query or query == "None": return "None"
if to_lora_key(query) in loras_dict: return query
if query in loras_url_to_path_dict:
path = loras_url_to_path_dict[query]
else:
path = to_lora_path(query.strip().split('/')[-1])
if Path(path).exists():
return path
elif "http" in query:
dl_file = download_lora(query)
if dl_file and Path(dl_file).exists(): return dl_file
else:
dl_file = find_similar_lora(query, model_name)
if dl_file and Path(dl_file).exists(): return dl_file
return "None"
def get_valid_lora_path(query: str):
path = None
if not query or query == "None":
return None
if to_lora_key(query) in loras_dict:
return query
if query in loras_url_to_path_dict:
path = loras_url_to_path_dict[query]
else:
path = to_lora_path(query.strip().split('/')[-1])
if path and Path(path).exists():
return path
else:
return None
def get_valid_lora_wt(prompt: str, lora_path: str, lora_wt: float):
wt = lora_wt
result = re.findall(f'<lora:{to_lora_key(lora_path)}:(.+?)>', prompt)
if not result: return wt
wt = safe_float(result[0][0])
return wt
LORA_SLOT_COUNT = 7
def _choices_only_updates(choices, count=LORA_SLOT_COUNT):
return tuple(gr.update(choices=choices) for _ in range(count))
def set_prompt_loras(prompt, prompt_syntax, model_name, lora1, lora1_wt, lora2, lora2_wt, lora3, lora3_wt, lora4, lora4_wt, lora5, lora5_wt, lora6, lora6_wt, lora7, lora7_wt):
if not "Classic" in str(prompt_syntax): return lora1, lora1_wt, lora2, lora2_wt, lora3, lora3_wt, lora4, lora4_wt, lora5, lora5_wt, lora6, lora6_wt, lora7, lora7_wt
lora1 = get_valid_lora_name(lora1, model_name)
lora2 = get_valid_lora_name(lora2, model_name)
lora3 = get_valid_lora_name(lora3, model_name)
lora4 = get_valid_lora_name(lora4, model_name)
lora5 = get_valid_lora_name(lora5, model_name)
#lora6 = get_valid_lora_name(lora6, model_name)
#lora7 = get_valid_lora_name(lora7, model_name)
if not "<lora" in prompt: return lora1, lora1_wt, lora2, lora2_wt, lora3, lora3_wt, lora4, lora4_wt, lora5, lora5_wt, lora6, lora6_wt, lora7, lora7_wt
lora1_wt = get_valid_lora_wt(prompt, lora1, lora1_wt)
lora2_wt = get_valid_lora_wt(prompt, lora2, lora2_wt)
lora3_wt = get_valid_lora_wt(prompt, lora3, lora3_wt)
lora4_wt = get_valid_lora_wt(prompt, lora4, lora4_wt)
lora5_wt = get_valid_lora_wt(prompt, lora5, lora5_wt)
#lora6_wt = get_valid_lora_wt(prompt, lora6, lora5_wt)
#lora7_wt = get_valid_lora_wt(prompt, lora7, lora5_wt)
on1, label1, tag1, md1 = get_lora_info(lora1)
on2, label2, tag2, md2 = get_lora_info(lora2)
on3, label3, tag3, md3 = get_lora_info(lora3)
on4, label4, tag4, md4 = get_lora_info(lora4)
on5, label5, tag5, md5 = get_lora_info(lora5)
#on6, label6, tag6, md6 = get_lora_info(lora6)
#on7, label7, tag7, md7 = get_lora_info(lora7)
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
prompts = prompt.split(",") if prompt else []
for p in prompts:
p = str(p).strip()
if "<lora" in p:
result = re.findall(r'<lora:(.+?):(.+?)>', p)
if not result: continue
key = result[0][0]
wt = result[0][1]
path = to_lora_path(key)
if not key in loras_dict.keys() or not Path(path).exists():
path = get_valid_lora_name(path, model_name)
if not path or path == "None": continue
if path in lora_paths or key in lora_paths:
continue
elif not on1:
lora1 = path
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
lora1_wt = safe_float(wt)
on1 = True
elif not on2:
lora2 = path
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
lora2_wt = safe_float(wt)
on2 = True
elif not on3:
lora3 = path
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
lora3_wt = safe_float(wt)
on3 = True
elif not on4:
lora4 = path
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
lora4_wt = safe_float(wt)
on4 = True
elif not on5:
lora5 = path
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
lora5_wt = safe_float(wt)
on5 = True
#elif not on6:
# lora6 = path
# lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
# lora6_wt = safe_float(wt)
# on6 = True
#elif not on7:
# lora7 = path
# lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
# lora7_wt = safe_float(wt)
# on7 = True
return lora1, lora1_wt, lora2, lora2_wt, lora3, lora3_wt, lora4, lora4_wt, lora5, lora5_wt, lora6, lora6_wt, lora7, lora7_wt
def get_lora_info(lora_path: str):
is_valid = False
tag = ""
label = ""
md = "None"
if not lora_path or lora_path == "None":
print("LoRA file not found.")
return is_valid, label, tag, md
path = Path(lora_path)
new_path = Path(f'{path.parent.name}/{escape_lora_basename(path.stem)}{path.suffix}')
if not to_lora_key(str(new_path)) in loras_dict.keys() and str(path) not in set(get_all_lora_list()):
print("LoRA file is not registered.")
return tag, label, tag, md
if not new_path.exists():
download_private_file_from_somewhere(str(path), True)
basename = new_path.stem
label = f'Name: {basename}'
items = loras_dict.get(basename, None)
if items == None:
items = get_civitai_info(str(new_path))
if items != None:
loras_dict[basename] = items
if items and items[2] != "":
tag = items[0]
label = f'Name: {basename}'
if items[1] == "Pony":
label = f'Name: {basename} (for Pony🐴)'
if items[4]:
md = f'<img src="{items[4]}" alt="thumbnail" width="150" height="240"><br>[LoRA Model URL]({items[3]})'
elif items[3]:
md = f'[LoRA Model URL]({items[3]})'
is_valid = True
return is_valid, label, tag, md
def normalize_prompt_list(tags: list[str]):
prompts = []
for tag in tags:
tag = str(tag).strip()
if tag:
prompts.append(tag)
return prompts
def apply_lora_prompt(prompt: str = "", lora_info: str = ""):
if lora_info == "None": return gr.update(value=prompt)
tags = prompt.split(",") if prompt else []
prompts = normalize_prompt_list(tags)
lora_tag = lora_info.replace("/",",")
lora_tags = lora_tag.split(",") if str(lora_info) != "None" else []
lora_prompts = normalize_prompt_list(lora_tags)
empty = [""]
prompt = ", ".join(list_uniq(prompts + lora_prompts) + empty)
return gr.update(value=prompt)
def update_loras(prompt, prompt_syntax, lora1, lora1_wt, lora2, lora2_wt, lora3, lora3_wt, lora4, lora4_wt, lora5, lora5_wt, lora6, lora6_wt, lora7, lora7_wt):
on1, label1, tag1, md1 = get_lora_info(lora1)
on2, label2, tag2, md2 = get_lora_info(lora2)
on3, label3, tag3, md3 = get_lora_info(lora3)
on4, label4, tag4, md4 = get_lora_info(lora4)
on5, label5, tag5, md5 = get_lora_info(lora5)
on6, label6, tag6, md6 = get_lora_info(lora6)
on7, label7, tag7, md7 = get_lora_info(lora7)
lora_paths = [lora1, lora2, lora3, lora4, lora5, lora6, lora7]
output_prompt = prompt
if "Classic" in str(prompt_syntax):
prompts = prompt.split(",") if prompt else []
output_prompts = []
for p in prompts:
p = str(p).strip()
if "<lora" in p:
result = re.findall(r'<lora:(.+?):(.+?)>', p)
if not result: continue
key = result[0][0]
wt = result[0][1]
path = to_lora_path(key)
if not key in loras_dict.keys() or not path: continue
if path in lora_paths:
output_prompts.append(f"<lora:{to_lora_key(path)}:{safe_float(wt):.2f}>")
elif p:
output_prompts.append(p)
lora_prompts = []
if on1: lora_prompts.append(f"<lora:{to_lora_key(lora1)}:{lora1_wt:.2f}>")
if on2: lora_prompts.append(f"<lora:{to_lora_key(lora2)}:{lora2_wt:.2f}>")
if on3: lora_prompts.append(f"<lora:{to_lora_key(lora3)}:{lora3_wt:.2f}>")
if on4: lora_prompts.append(f"<lora:{to_lora_key(lora4)}:{lora4_wt:.2f}>")
if on5: lora_prompts.append(f"<lora:{to_lora_key(lora5)}:{lora5_wt:.2f}>")
#if on6: lora_prompts.append(f"<lora:{to_lora_key(lora6)}:{lora6_wt:.2f}>")
#if on7: lora_prompts.append(f"<lora:{to_lora_key(lora7)}:{lora7_wt:.2f}>")
output_prompt = ", ".join(list_uniq(output_prompts + lora_prompts + [""]))
choices = get_all_lora_tupled_list()
return gr.update(value=output_prompt), gr.update(value=lora1, choices=choices), gr.update(value=lora1_wt),\
gr.update(value=tag1, label=label1, visible=on1), gr.update(visible=on1), gr.update(value=md1, visible=on1),\
gr.update(value=lora2, choices=choices), gr.update(value=lora2_wt),\
gr.update(value=tag2, label=label2, visible=on2), gr.update(visible=on2), gr.update(value=md2, visible=on2),\
gr.update(value=lora3, choices=choices), gr.update(value=lora3_wt),\
gr.update(value=tag3, label=label3, visible=on3), gr.update(visible=on3), gr.update(value=md3, visible=on3),\
gr.update(value=lora4, choices=choices), gr.update(value=lora4_wt),\
gr.update(value=tag4, label=label4, visible=on4), gr.update(visible=on4), gr.update(value=md4, visible=on4),\
gr.update(value=lora5, choices=choices), gr.update(value=lora5_wt),\
gr.update(value=tag5, label=label5, visible=on5), gr.update(visible=on5), gr.update(value=md5, visible=on5),\
gr.update(value=lora6, choices=choices), gr.update(value=lora6_wt),\
gr.update(value=tag6, label=label6, visible=on6), gr.update(visible=on6), gr.update(value=md6, visible=on6),\
gr.update(value=lora7, choices=choices), gr.update(value=lora7_wt),\
gr.update(value=tag7, label=label7, visible=on7), gr.update(visible=on7), gr.update(value=md7, visible=on7)
def get_my_lora(link_url, romanize):
l_name = ""
l_path = ""
before = get_local_model_list(DIRECTORY_LORAS)
for url in [url.strip() for url in link_url.split(',')]:
if not Path(f"{DIRECTORY_LORAS}/{url.split('/')[-1]}").exists():
l_name = download_things(DIRECTORY_LORAS, url, HF_TOKEN, CIVITAI_API_KEY, romanize)
after = get_local_model_list(DIRECTORY_LORAS)
new_files = list_sub(after, before)
for file in new_files:
path = Path(file)
if path.exists():
new_path = Path(f'{path.parent.name}/{escape_lora_basename(path.stem)}{path.suffix}')
path.resolve().rename(new_path.resolve())
update_lora_dict(str(new_path))
l_path = str(new_path)
new_lora_tupled_list = get_all_lora_tupled_list()
msg_lora = "Downloaded"
if l_name:
msg_lora += f": <b>{l_name}</b>"
print(msg_lora)
return gr.update(
choices=new_lora_tupled_list, value=l_path
), gr.update(
choices=new_lora_tupled_list
), gr.update(
choices=new_lora_tupled_list
), gr.update(
choices=new_lora_tupled_list
), gr.update(
choices=new_lora_tupled_list
), gr.update(
choices=new_lora_tupled_list
), gr.update(
choices=new_lora_tupled_list
), gr.update(
value=msg_lora
)
def upload_file_lora(files, progress=gr.Progress(track_tqdm=True)):
progress(0, desc="Uploading...")
file_paths = [file.name for file in files]
progress(1, desc="Uploaded.")
return gr.update(value=file_paths, visible=True), gr.update()
def move_file_lora(filepaths):
for file in filepaths:
path = Path(shutil.move(Path(file).resolve(), Path(f"./{DIRECTORY_LORAS}").resolve()))
newpath = Path(f'{path.parent.name}/{escape_lora_basename(path.stem)}{path.suffix}')
path.resolve().rename(newpath.resolve())
update_lora_dict(str(newpath))
new_lora_model_list = get_lora_model_list()
new_lora_tupled_list = get_all_lora_tupled_list()
return gr.update(choices=new_lora_tupled_list, value=new_lora_model_list[-1]), *_choices_only_updates(new_lora_tupled_list, LORA_SLOT_COUNT - 1)
def get_civitai_info(path):
global civitai_not_exists_list, loras_url_to_path_dict
default = ["", "", "", "", ""]
if path in set(civitai_not_exists_list):
return default
if not Path(path).exists():
return None
headers = get_civitai_headers(CIVITAI_API_KEY)
endpoint_path = '/model-versions/by-hash/'
session = create_retry_session()
import hashlib
sha256_hash = hashlib.sha256()
with open(path, 'rb') as file:
for chunk in iter(lambda: file.read(1024 * 1024), b''):
sha256_hash.update(chunk)
hash_sha256 = sha256_hash.hexdigest()
try:
json_data, url, r = request_civitai_api_json(
endpoint_path + hash_sha256,
headers=headers,
timeout=CIVITAI_METADATA_TIMEOUT,
api_key=CIVITAI_API_KEY,
session=session,
stream=True,
allow_not_found=True,
)
except Exception as e:
print(f"Civitai by-hash lookup failed: {path} {type(e).__name__}: {e}")
return default
if not r.ok:
print(f"Civitai by-hash lookup status={r.status_code}: {path}")
if r.status_code == 404:
civitai_not_exists_list.append(path)
return default
return None
if not json_data:
print(f"Civitai by-hash JSON parse failed: {path} empty_json")
return default
if 'baseModel' not in json_data:
civitai_not_exists_list.append(path)
return default
selected_file = pick_civitai_file_from_version_json(json_data, source_url=json_data.get('downloadUrl', ''))
items = []
items.append(" / ".join(json_data.get('trainedWords', [])))
items.append(json_data.get('baseModel', ''))
items.append(json_data.get('model', {}).get('name', ''))
items.append(f"{get_civitai_canonical_web_origin()}/models/{json_data.get('modelId', '')}")
images = json_data.get('images', []) if isinstance(json_data.get('images'), list) else []
items.append(images[0].get('url', '') if images else '')
download_url = selected_file.get('downloadUrl', '') or json_data.get('downloadUrl', '')
if download_url:
loras_url_to_path_dict[path] = normalize_civitai_download_api_url(download_url)
return items
def build_civitai_search_item(item: dict, model: dict) -> dict:
base_model = model.get("baseModel", "") if isinstance(model, dict) else ""
creator = item.get("creator") if isinstance(item, dict) else None
creator_name = creator.get("username", "") if isinstance(creator, dict) else ""
tags = item.get("tags", []) if isinstance(item, dict) else []
if not isinstance(tags, list):
tags = []
images = model.get("images", []) if isinstance(model, dict) else []
image_url = "/home/user/app/null.png"
if isinstance(images, list) and images and isinstance(images[0], dict) and images[0].get("url"):
image_url = images[0]["url"]
page_model_id = item.get("id", "") if isinstance(item, dict) else ""
page_url = f"{get_civitai_canonical_web_origin()}/models/{page_model_id}" if page_model_id else get_civitai_canonical_web_origin()
name = item.get("name", "") if isinstance(item, dict) else ""
model_name = model.get("name", "") if isinstance(model, dict) else ""
desc = model.get("description", "") if isinstance(model, dict) else ""
dl_url = model.get("downloadUrl", "") if isinstance(model, dict) else ""
md = ""
if image_url != "/home/user/app/null.png":
md += f'<img src="{image_url}#float" alt="thumbnail" width="150" height="240"><br>'
md += (
f"Model URL: [{page_url}]({page_url})<br>Model Name: {name}<br>"
f"Creator: {creator_name}<br>Tags: {', '.join(tags)}<br>"
f"Base Model: {base_model}<br>Description: {desc}"
)
return {
"name": name,
"creator": creator_name,
"tags": tags,
"model_name": model_name,
"base_model": base_model,
"description": desc,
"img_url": image_url,
"page_url": page_url,
"dl_url": dl_url,
"md": md,
}
def build_civitai_choice_name(item: dict) -> str:
base_model_name = "Pony🐴" if item.get('base_model') == "Pony" else item.get('base_model', '')
return f"{item.get('name', '')} (for {base_model_name} / By: {item.get('creator', '')} / Tags: {', '.join(item.get('tags', []))})"
def search_lora_on_civitai(query: str, allow_model: list[str] = ["Pony", "SDXL 1.0"], limit: int = 100,
sort: str = "Highest Rated", period: str = "AllTime", tag: str = "", user: str = "", page: int = 1):
headers = get_civitai_headers(CIVITAI_API_KEY)
endpoint_path = '/models'
params = {'types': ['LORA'], 'sort': sort, 'period': period, 'limit': limit, 'page': int(page), 'nsfw': 'true'}
if query:
params["query"] = query
if tag:
params["tag"] = tag
if user:
params["username"] = user
session = create_retry_session()
try:
json, _, r = request_civitai_api_json(
endpoint_path,
params=params,
headers=headers,
timeout=CIVITAI_SEARCH_TIMEOUT,
api_key=CIVITAI_API_KEY,
session=session,
stream=True,
)
except Exception as e:
print(f"Civitai search failed: query={query!r} page={page} {type(e).__name__}: {e}")
return None
if not r.ok or not json:
print(f"Civitai search status={r.status_code}: query={query!r} page={page}")
return None
if 'items' not in json:
print(f"Civitai search returned no items key: query={query!r} page={page}")
return None
items = []
allowed_models = set(allow_model)
for j in json['items']:
model_versions = j.get('modelVersions') if isinstance(j, dict) else []
if not isinstance(model_versions, list):
continue
for model in model_versions:
if not isinstance(model, dict):
continue
base_model = model.get('baseModel', '')
if allowed_models and base_model not in allowed_models:
continue
items.append(build_civitai_search_item(j, model))
return items
CIVITAI_SORT = ["Highest Rated", "Most Downloaded", "Most Liked", "Most Discussed", "Most Collected", "Most Buzz", "Newest"]
CIVITAI_PERIOD = ["AllTime", "Year", "Month", "Week", "Day"]
CIVITAI_BASEMODEL_DEFAULT = ["Chroma", "Flux.1 D", "Flux.1 S", "Flux.1 Kontext", "HiDream", "Hunyuan Video",
"Illustrious", "NoobAI", "Other", "Pony", "SD 1.4", "SD 1.5", "SD 1.5 Hyper",
"SD 1.5 LCM", "SD 2.0", "SD 2.1", "SD 2.1 768", "SDXL 0.9", "SDXL 1.0", "SDXL Hyper",
"SDXL Lightning", "Wan Video", "Anima", "Flux.1 Krea", "Flux.2 D", "Flux.2 Klein 4B-base",
"Flux.2 Klein 9B", "Flux.2 Klein 9B-base", "Grok", "LTXV 2.3", "LTXV2", "Qwen", "SDXL 1.0 LCM",
"Wan Video 1.3B t2v", "Wan Video 14B i2v 480p", "Wan Video 14B i2v 720p", "Wan Video 14B t2v",
"Wan Video 2.2 I2V-A14B", "Wan Video 2.2 T2V-A14B", "Wan Video 2.2 TI2V-5B", "ZImageBase", "ZImageTurbo"]
CIVITAI_BASEMODEL = CIVITAI_BASEMODEL_DEFAULT.copy()
def search_civitai_lora(query, base_model=[], sort=CIVITAI_SORT[0], period=CIVITAI_PERIOD[0], tag="", user="", gallery=[]):
global civitai_last_results, civitai_last_choices, civitai_last_gallery
civitai_last_choices = [("", "")]
civitai_last_gallery = []
civitai_last_results = {}
items = search_lora_on_civitai(query, base_model, 100, sort, period, tag, user)
if not items: return gr.update(choices=[("", "")], value="", visible=False),\
gr.update(value="", visible=False), gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
civitai_last_results = {}
choices = []
gallery = []
for item in items:
name = build_civitai_choice_name(item)
value = item['dl_url']
choices.append((name, value))
gallery.append((item['img_url'], name))
civitai_last_results[value] = item
if not choices: return gr.update(choices=[("", "")], value="", visible=False),\
gr.update(value="", visible=False), gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
civitai_last_choices = choices
civitai_last_gallery = gallery
result = civitai_last_results.get(choices[0][1], "None")
md = result['md'] if result else ""
return gr.update(choices=choices, value=choices[0][1], visible=True), gr.update(value=md, visible=True),\
gr.update(visible=True), gr.update(visible=True), gr.update(value=gallery)
def update_civitai_selection(evt: gr.SelectData):
try:
selected_index = evt.index
selected = civitai_last_choices[selected_index][1]
return gr.update(value=selected)
except Exception:
return gr.update()
def select_civitai_lora(search_result):
if not "http" in search_result: return gr.update(value=""), gr.update(value="None", visible=True)
result = civitai_last_results.get(search_result, "None")
md = result['md'] if result else ""
return gr.update(value=search_result), gr.update(value=md, visible=True)
def download_my_lora_flux(dl_urls: str, lora):
path = download_lora(dl_urls)
if path: lora = path
choices = get_all_lora_tupled_list()
return gr.update(value=lora, choices=choices)
def apply_lora_prompt_flux(lora_info: str):
if lora_info == "None": return ""
lora_tag = lora_info.replace("/",",")
lora_tags = lora_tag.split(",") if str(lora_info) != "None" else []
lora_prompts = normalize_prompt_list(lora_tags)
prompt = ", ".join(list_uniq(lora_prompts))
return prompt
def update_loras_flux(prompt, lora, lora_wt):
on, label, tag, md = get_lora_info(lora)
choices = get_all_lora_tupled_list()
return gr.update(value=prompt), gr.update(value=lora, choices=choices), gr.update(value=lora_wt),\
gr.update(value=tag, label=label, visible=on), gr.update(value=md, visible=on)
def search_civitai_lora_json(query, base_model):
results = {}
items = search_lora_on_civitai(query, base_model)
if not items: return gr.update(value=results)
for item in items:
results[item['dl_url']] = item
return gr.update(value=results)
def get_civitai_tag():
default = [""]
user_agent = get_user_agent()
headers = {'User-Agent': user_agent, 'content-type': 'application/json'}
params = {'limit': 200}
session = create_retry_session()
try:
json_data, _, r = request_civitai_api_json(
'/tags',
params=params,
headers=headers,
timeout=(3.0, 15),
api_key=CIVITAI_API_KEY,
session=session,
stream=True,
)
if not r.ok or not json_data: return default
j = dict(json_data).copy()
if "items" not in j: return default
items = []
for item in j["items"]:
items.append([str(item.get("name", "")), int(item.get("modelCount", 0))])
df = pd.DataFrame(items)
df.sort_values(1, ascending=False)
tags = df.values.tolist()
tags = [""] + [l[0] for l in tags]
return tags
except Exception as e:
log_warning(e)
return default
LORA_BASE_MODEL_DICT = {
"diffusers:StableDiffusionPipeline": ["SD 1.5"],
"diffusers:StableDiffusionXLPipeline": ["Pony", "SDXL 1.0"],
"diffusers:FluxPipeline": ["Flux.1 D", "Flux.1 S"],
}
def get_lora_base_model(model_name: str):
api = get_hf_api(HF_TOKEN)
default = ["Pony", "SDXL 1.0"]
try:
model = api.model_info(repo_id=model_name, timeout=5.0)
tags = model.tags
for tag in tags:
if tag in LORA_BASE_MODEL_DICT: return LORA_BASE_MODEL_DICT.get(tag, default)
except Exception:
return default
return default
def find_similar_lora(q: str, model_name: str):
from rapidfuzz.process import extractOne
from rapidfuzz.utils import default_process
query = to_lora_key(q)
print(f"Finding <lora:{query}:...>...")
keys = list(private_lora_dict.keys())
values = [x[2] for x in list(private_lora_dict.values())]
s = default_process(query)
e1 = extractOne(s, keys + values, processor=default_process, score_cutoff=80.0)
key = ""
if e1:
e = e1[0]
if e in set(keys): key = e
elif e in set(values): key = keys[values.index(e)]
if key:
path = to_lora_path(key)
new_path = to_lora_path(query)
if not Path(path).exists():
if not Path(new_path).exists(): download_private_file_from_somewhere(path, True)
if Path(path).exists() and copy_lora(path, new_path): return new_path
print(f"Finding <lora:{query}:...> on Civitai...")
civitai_query = Path(query).stem if Path(query).is_file() else query
civitai_query = civitai_query.replace("_", " ").replace("-", " ")
base_model = get_lora_base_model(model_name)
items = search_lora_on_civitai(civitai_query, base_model, 1)
if items:
item = items[0]
path = download_lora(item['dl_url'])
new_path = query if Path(query).is_file() else to_lora_path(query)
if path and copy_lora(path, new_path): return new_path
return None
def change_interface_mode(mode: str):
if mode == "Fast":
return gr.update(open=False), gr.update(visible=True), gr.update(open=False), gr.update(open=False),\
gr.update(visible=True), gr.update(open=False), gr.update(visible=True), gr.update(open=False),\
gr.update(visible=True), gr.update(value="Fast")
elif mode == "Simple": # t2i mode
return gr.update(open=True), gr.update(visible=True), gr.update(open=False), gr.update(open=False),\
gr.update(visible=True), gr.update(open=False), gr.update(visible=False), gr.update(open=True),\
gr.update(visible=False), gr.update(value="Standard")
elif mode == "LoRA": # t2i LoRA mode
return gr.update(open=True), gr.update(visible=True), gr.update(open=True), gr.update(open=False),\
gr.update(visible=True), gr.update(open=True), gr.update(visible=True), gr.update(open=False),\
gr.update(visible=False), gr.update(value="Standard")
else: # Standard
return gr.update(open=False), gr.update(visible=True), gr.update(open=False), gr.update(open=False),\
gr.update(visible=True), gr.update(open=False), gr.update(visible=True), gr.update(open=False),\
gr.update(visible=True), gr.update(value="Standard")
quality_prompt_list = [
{
"name": "None",
"prompt": "",
"negative_prompt": "lowres",
},
{
"name": "Animagine Common",
"prompt": "anime artwork, anime style, vibrant, studio anime, highly detailed, masterpiece, best quality, very aesthetic, absurdres",
"negative_prompt": "lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]",
},
{
"name": "Pony Anime Common",
"prompt": "source_anime, score_9, score_8_up, score_7_up, masterpiece, best quality, very aesthetic, absurdres",
"negative_prompt": "source_pony, source_furry, source_cartoon, score_6, score_5, score_4, busty, ugly face, mutated hands, low res, blurry face, black and white, the simpsons, overwatch, apex legends",
},
{
"name": "Pony Common",
"prompt": "source_anime, score_9, score_8_up, score_7_up",
"negative_prompt": "source_pony, source_furry, source_cartoon, score_6, score_5, score_4, busty, ugly face, mutated hands, low res, blurry face, black and white, the simpsons, overwatch, apex legends",
},
{
"name": "Animagine Standard v3.0",
"prompt": "masterpiece, best quality",
"negative_prompt": "lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, artist name",
},
{
"name": "Animagine Standard v3.1",
"prompt": "masterpiece, best quality, very aesthetic, absurdres",
"negative_prompt": "lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]",
},
{
"name": "Animagine Light v3.1",
"prompt": "(masterpiece), best quality, very aesthetic, perfect face",
"negative_prompt": "(low quality, worst quality:1.2), very displeasing, 3d, watermark, signature, ugly, poorly drawn",
},
{
"name": "Animagine Heavy v3.1",
"prompt": "(masterpiece), (best quality), (ultra-detailed), very aesthetic, illustration, disheveled hair, perfect composition, moist skin, intricate details",
"negative_prompt": "longbody, lowres, bad anatomy, bad hands, missing fingers, pubic hair, extra digit, fewer digits, cropped, worst quality, low quality, very displeasing",
},
]
style_list = [
{
"name": "None",
"prompt": "",
"negative_prompt": "",
},
{
"name": "Cinematic",
"prompt": "cinematic still, emotional, harmonious, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy",
"negative_prompt": "cartoon, graphic, text, painting, crayon, graphite, abstract, glitch, deformed, mutated, ugly, disfigured",
},
{
"name": "Photographic",
"prompt": "cinematic photo, 35mm photograph, film, bokeh, professional, 4k, highly detailed",
"negative_prompt": "drawing, painting, crayon, sketch, graphite, impressionist, noisy, blurry, soft, deformed, ugly",
},
{
"name": "Anime",
"prompt": "anime artwork, anime style, vibrant, studio anime, highly detailed",
"negative_prompt": "photo, deformed, black and white, realism, disfigured, low contrast",
},
{
"name": "Manga",
"prompt": "manga style, vibrant, high-energy, detailed, iconic, Japanese comic style",
"negative_prompt": "ugly, deformed, noisy, blurry, low contrast, realism, photorealistic, Western comic style",
},
{
"name": "Digital Art",
"prompt": "concept art, digital artwork, illustrative, painterly, matte painting, highly detailed",
"negative_prompt": "photo, photorealistic, realism, ugly",
},
{
"name": "Pixel art",
"prompt": "pixel-art, low-res, blocky, pixel art style, 8-bit graphics",
"negative_prompt": "sloppy, messy, blurry, noisy, highly detailed, ultra textured, photo, realistic",
},
{
"name": "Fantasy art",
"prompt": "ethereal fantasy concept art, magnificent, celestial, ethereal, painterly, epic, majestic, magical, fantasy art, cover art, dreamy",
"negative_prompt": "photographic, realistic, realism, 35mm film, dslr, cropped, frame, text, deformed, glitch, noise, noisy, off-center, deformed, cross-eyed, closed eyes, bad anatomy, ugly, disfigured, sloppy, duplicate, mutated, black and white",
},
{
"name": "Neonpunk",
"prompt": "neonpunk style, cyberpunk, vaporwave, neon, vibes, vibrant, stunningly beautiful, crisp, detailed, sleek, ultramodern, magenta highlights, dark purple shadows, high contrast, cinematic, ultra detailed, intricate, professional",
"negative_prompt": "painting, drawing, illustration, glitch, deformed, mutated, cross-eyed, ugly, disfigured",
},
{
"name": "3D Model",
"prompt": "professional 3d model, octane render, highly detailed, volumetric, dramatic lighting",
"negative_prompt": "ugly, deformed, noisy, low poly, blurry, painting",
},
]
optimization_list = {
"None": [28, 7., 'Euler', False, 'None', 1.],
"Default": [28, 7., 'Euler', False, 'None', 1.],
"SPO": [28, 7., 'Euler', True, 'loras/spo_sdxl_10ep_4k-data_lora_diffusers.safetensors', 1.],
"DPO": [28, 7., 'Euler', True, 'loras/sdxl-DPO-LoRA.safetensors', 1.],
"DPO Turbo": [8, 2.5, 'LCM', True, 'loras/sd_xl_dpo_turbo_lora_v1-128dim.safetensors', 1.],
"SDXL Turbo": [8, 2.5, 'LCM', True, 'loras/sd_xl_turbo_lora_v1.safetensors', 1.],
"Hyper-SDXL 12step": [12, 5., 'TCD', True, 'loras/Hyper-SDXL-12steps-CFG-lora.safetensors', 1.],
"Hyper-SDXL 8step": [8, 5., 'TCD', True, 'loras/Hyper-SDXL-8steps-CFG-lora.safetensors', 1.],
"Hyper-SDXL 4step": [4, 0, 'TCD', True, 'loras/Hyper-SDXL-4steps-lora.safetensors', 1.],
"Hyper-SDXL 2step": [2, 0, 'TCD', True, 'loras/Hyper-SDXL-2steps-lora.safetensors', 1.],
"Hyper-SDXL 1step": [1, 0, 'TCD', True, 'loras/Hyper-SDXL-1steps-lora.safetensors', 1.],
"PCM 16step": [16, 4., 'Euler trailing', True, 'loras/pcm_sdxl_normalcfg_16step_converted.safetensors', 1.],
"PCM 8step": [8, 4., 'Euler trailing', True, 'loras/pcm_sdxl_normalcfg_8step_converted.safetensors', 1.],
"PCM 4step": [4, 2., 'Euler trailing', True, 'loras/pcm_sdxl_smallcfg_4step_converted.safetensors', 1.],
"PCM 2step": [2, 1., 'Euler trailing', True, 'loras/pcm_sdxl_smallcfg_2step_converted.safetensors', 1.],
}
def build_value_updates(*values):
return tuple(gr.update(value=value) for value in values)
def set_optimization(opt, steps_gui, cfg_gui, sampler_gui, clip_skip_gui, lora_gui, lora_scale_gui):
if opt not in optimization_list: opt = "None"
def_steps_gui = 28
def_cfg_gui = 7.
steps, cfg, sampler, clip_skip, lora, lora_scale = optimization_list.get(opt, optimization_list["None"])
if opt == "None":
steps = max(steps_gui, def_steps_gui)
cfg = max(cfg_gui, def_cfg_gui)
clip_skip = clip_skip_gui
elif opt in {"SPO", "DPO"}:
steps = max(steps_gui, def_steps_gui)
cfg = max(cfg_gui, def_cfg_gui)
return build_value_updates(steps, cfg, sampler, clip_skip, lora, lora_scale)
# [sampler_gui, steps_gui, cfg_gui, clip_skip_gui, img_width_gui, img_height_gui, optimization_gui]
preset_sampler_setting = {
"None": ["Euler", 28, 7., True, 1024, 1024, "None"],
"Anime 3:4 Fast": ["LCM", 8, 2.5, True, 896, 1152, "DPO Turbo"],
"Anime 3:4 Standard": ["Euler", 28, 7., True, 896, 1152, "None"],
"Anime 3:4 Heavy": ["Euler", 40, 7., True, 896, 1152, "None"],
"Anime 1:1 Fast": ["LCM", 8, 2.5, True, 1024, 1024, "DPO Turbo"],
"Anime 1:1 Standard": ["Euler", 28, 7., True, 1024, 1024, "None"],
"Anime 1:1 Heavy": ["Euler", 40, 7., True, 1024, 1024, "None"],
"Photo 3:4 Fast": ["LCM", 8, 2.5, False, 896, 1152, "DPO Turbo"],
"Photo 3:4 Standard": ["DPM++ 2M Karras", 28, 7., False, 896, 1152, "None"],
"Photo 3:4 Heavy": ["DPM++ 2M Karras", 40, 7., False, 896, 1152, "None"],
"Photo 1:1 Fast": ["LCM", 8, 2.5, False, 1024, 1024, "DPO Turbo"],
"Photo 1:1 Standard": ["DPM++ 2M Karras", 28, 7., False, 1024, 1024, "None"],
"Photo 1:1 Heavy": ["DPM++ 2M Karras", 40, 7., False, 1024, 1024, "None"],
}
def set_sampler_settings(sampler_setting):
if sampler_setting not in preset_sampler_setting or sampler_setting == "None":
return build_value_updates("Euler", 28, 7., True, 1024, 1024, "None")
v = preset_sampler_setting.get(sampler_setting, ["Euler", 28, 7., True, 1024, 1024])
# sampler, steps, cfg, clip_skip, width, height, optimization
return build_value_updates(v[0], v[1], v[2], v[3], v[4], v[5], v[6])
preset_styles = {k["name"]: (k["prompt"], k["negative_prompt"]) for k in style_list}
preset_quality = {k["name"]: (k["prompt"], k["negative_prompt"]) for k in quality_prompt_list}
ANIMAGINE_PROMPTS = to_list("anime artwork, anime style, vibrant, studio anime, highly detailed, masterpiece, best quality, very aesthetic, absurdres")
ANIMAGINE_NEG_PROMPTS = to_list("lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]")
PONY_PROMPTS = to_list("source_anime, score_9, score_8_up, score_7_up, masterpiece, best quality, very aesthetic, absurdres")
PONY_NEG_PROMPTS = to_list("source_pony, source_furry, source_cartoon, score_6, score_5, score_4, busty, ugly face, mutated hands, low res, blurry face, black and white, the simpsons, overwatch, apex legends")
ALL_STYLE_PROMPTS = list_uniq([item for d in style_list for item in to_list(str(d.get("prompt", "")))])
ALL_STYLE_NEG_PROMPTS = list_uniq([item for d in style_list for item in to_list(str(d.get("negative_prompt", "")))])
ALL_QUALITY_PROMPTS = list_uniq([item for d in quality_prompt_list for item in to_list(str(d.get("prompt", "")))])
ALL_QUALITY_NEG_PROMPTS = list_uniq([item for d in quality_prompt_list for item in to_list(str(d.get("negative_prompt", "")))])
def process_style_prompt(prompt: str, neg_prompt: str, styles_key: str = "None", quality_key: str = "None", type: str = "Auto"):
prompts = to_list(prompt)
neg_prompts = to_list(neg_prompt)
quality_ps = to_list(preset_quality[quality_key][0])
quality_nps = to_list(preset_quality[quality_key][1])
styles_ps = to_list(preset_styles[styles_key][0])
styles_nps = to_list(preset_styles[styles_key][1])
prompts = list_sub(prompts, ANIMAGINE_PROMPTS + PONY_PROMPTS + ALL_STYLE_PROMPTS + ALL_QUALITY_PROMPTS)
neg_prompts = list_sub(neg_prompts, ANIMAGINE_NEG_PROMPTS + PONY_NEG_PROMPTS + ALL_STYLE_NEG_PROMPTS + ALL_QUALITY_NEG_PROMPTS)
last_empty_p = [""] if not prompts and type != "None" and type != "Auto" and styles_key != "None" and quality_key != "None" else []
last_empty_np = [""] if not neg_prompts and type != "None" and type != "Auto" and styles_key != "None" and quality_key != "None" else []
if type == "Animagine":
prompts = prompts + ANIMAGINE_PROMPTS
neg_prompts = neg_prompts + ANIMAGINE_NEG_PROMPTS
elif type == "Pony":
prompts = prompts + PONY_PROMPTS
neg_prompts = neg_prompts + PONY_NEG_PROMPTS
prompts = prompts + styles_ps + quality_ps
neg_prompts = neg_prompts + styles_nps + quality_nps
prompt = ", ".join(list_uniq(prompts) + last_empty_p)
neg_prompt = ", ".join(list_uniq(neg_prompts) + last_empty_np)
return gr.update(value=prompt), gr.update(value=neg_prompt), gr.update(value=type)
QUICK_PRESET_STYLE_MAP = {
'Anime': 'Anime',
'Photo': 'Photographic',
}
QUICK_PRESET_SAMPLER_MAP = {
'Anime': {
'1:1': {'Heavy': 'Anime 1:1 Heavy', 'Fast': 'Anime 1:1 Fast', 'Standard': 'Anime 1:1 Standard'},
'3:4': {'Heavy': 'Anime 3:4 Heavy', 'Fast': 'Anime 3:4 Fast', 'Standard': 'Anime 3:4 Standard'},
},
'Photo': {
'1:1': {'Heavy': 'Photo 1:1 Heavy', 'Fast': 'Photo 1:1 Fast', 'Standard': 'Photo 1:1 Standard'},
'3:4': {'Heavy': 'Photo 3:4 Heavy', 'Fast': 'Photo 3:4 Fast', 'Standard': 'Photo 3:4 Standard'},
},
}
QUICK_PRESET_QUALITY_MAP = {
'Anime': {'Pony': 'Pony Anime Common', 'Animagine': 'Animagine Common'},
'Photo': {'Pony': 'Pony Common'},
}
def resolve_quick_preset_sampler(genre: str, aspect: str, speed: str):
speed_key = speed if speed in {'Heavy', 'Fast'} else 'Standard'
return QUICK_PRESET_SAMPLER_MAP.get(genre, {}).get(aspect, {}).get(speed_key, 'None')
def set_quick_presets(genre:str = "None", type:str = "Auto", speed:str = "None", aspect:str = "None"):
quality = "None"
style = "None"
sampler = resolve_quick_preset_sampler(genre, aspect, speed)
opt = "None"
if genre in QUICK_PRESET_STYLE_MAP and type not in {"None", "Auto"}:
style = QUICK_PRESET_STYLE_MAP[genre]
quality = QUICK_PRESET_QUALITY_MAP.get(genre, {}).get(type, "None")
if speed == "Fast":
opt = "DPO Turbo"
if genre == "Anime" and type not in {"Pony", "Auto"}:
quality = "Animagine Light v3.1"
return build_value_updates(quality, style, sampler, opt, type)
textual_inversion_dict = {}
try:
with open('textual_inversion_dict.json', encoding='utf-8') as f:
textual_inversion_dict = json.load(f)
except Exception:
pass
textual_inversion_file_token_list = []
def get_tupled_embed_list(embed_list):
global textual_inversion_file_token_list
tupled_list = []
textual_inversion_file_token_list = []
for file in embed_list:
token = textual_inversion_dict.get(Path(file).name, [Path(file).stem.replace(",", ""), False])[0]
token = str(token).strip()
tupled_list.append((token, file))
if token:
textual_inversion_file_token_list.append(token)
return tupled_list
def get_textual_inversion_tokens():
dict_tokens = []
for value in textual_inversion_dict.values():
if isinstance(value, (list, tuple)) and value:
token = str(value[0]).strip()
if token:
dict_tokens.append(token)
return list_uniq(dict_tokens + textual_inversion_file_token_list)
def set_textual_inversion_prompt(textual_inversion_gui, prompt_gui, neg_prompt_gui, prompt_syntax_gui):
ti_tags = set(get_textual_inversion_tokens())
tags = prompt_gui.split(",") if prompt_gui else []
prompts = []
for tag in tags:
tag = str(tag).strip()
if tag and not tag in ti_tags:
prompts.append(tag)
ntags = neg_prompt_gui.split(",") if neg_prompt_gui else []
neg_prompts = []
for tag in ntags:
tag = str(tag).strip()
if tag and not tag in ti_tags:
neg_prompts.append(tag)
ti_prompts = []
ti_neg_prompts = []
for ti in textual_inversion_gui:
tokens = textual_inversion_dict.get(Path(ti).name, [Path(ti).stem.replace(",",""), False])
is_positive = tokens[1] == True or "positive" in Path(ti).parent.name
if is_positive: # positive prompt
ti_prompts.append(tokens[0])
else: # negative prompt (default)
ti_neg_prompts.append(tokens[0])
empty = [""]
prompt = ", ".join(prompts + ti_prompts + empty)
neg_prompt = ", ".join(neg_prompts + ti_neg_prompts + empty)
return gr.update(value=prompt), gr.update(value=neg_prompt),
def get_model_pipeline(repo_id: str):
api = get_hf_api(HF_TOKEN)
default = "StableDiffusionPipeline"
try:
if not is_repo_name(repo_id): return default
model = api.model_info(repo_id=repo_id, timeout=5.0)
except Exception:
return default
if model.private or model.gated: return default
tags = model.tags
if not 'diffusers' in tags: return default
if 'diffusers:FluxPipeline' in tags:
return "FluxPipeline"
if 'diffusers:StableDiffusionXLPipeline' in tags:
return "StableDiffusionXLPipeline"
elif 'diffusers:StableDiffusionPipeline' in tags:
return "StableDiffusionPipeline"
else:
return default
MODEL_TYPE_KEY = {
"model.diffusion_model.output_blocks.1.1.norm.bias": "SDXL",
"model.diffusion_model.input_blocks.11.0.out_layers.3.weight": "SD 1.5",
"double_blocks.0.img_attn.norm.key_norm.scale": "FLUX",
"model.diffusion_model.double_blocks.0.img_attn.norm.key_norm.scale": "FLUX",
"model.diffusion_model.joint_blocks.9.x_block.attn.ln_k.weight": "SD 3.5",
}
def is_unsafe_clean_target(path: str):
raw_path = str(path or "").strip()
if not raw_path:
return True
try:
resolved = Path(raw_path).expanduser().resolve()
except Exception:
return True
protected_paths = {
Path(os.getcwd()).resolve(),
Path.home().resolve(),
}
if resolved in protected_paths:
return True
if str(resolved) == resolved.anchor or resolved == resolved.parent:
return True
return False
def safe_clean(path: str):
if is_unsafe_clean_target(path):
log_warning(f"Skipped delete: {path}")
return
try:
if Path(path).exists():
if Path(path).is_dir():
shutil.rmtree(str(Path(path)))
else:
Path(path).unlink()
log_info(f"Deleted: {path}")
else:
log_info(f"File not found: {path}")
except Exception as e:
log_error(f"Failed to delete: {path} {e}")
def read_safetensors_key(path: str):
keys = []
try:
with safe_open(str(Path(path)), framework="pt") as f:
keys = list(f.keys())
except Exception as e:
log_error(e)
finally:
if torch.cuda.is_available():
torch.cuda.empty_cache()
gc.collect()
return keys
def get_model_type_from_key(path: str):
default = "SDXL"
try:
keys = read_safetensors_key(path)
for k, v in MODEL_TYPE_KEY.items():
if k in set(keys):
log_info(f"Model type is {v}.")
return v
log_warning("Model type could not be identified.")
except Exception:
return default
return default
def download_link_model(url: str, localdir: str):
try:
new_file = None
new_file = get_download_file(localdir, url, CIVITAI_API_KEY)
if not new_file or Path(new_file).suffix.lower() not in set([".safetensors", ".ckpt", ".bin", ".sft"]):
if Path(new_file).exists(): Path(new_file).unlink()
raise gr.Error(f"Safetensors file not found: {url}")
model_type = get_model_type_from_key(new_file)
return new_file, model_type
except Exception as e:
raise gr.Error(f"Failed to load single model file: {url} {e}")
EXAMPLES_GUI = [
[
"1girl, souryuu asuka langley, neon genesis evangelion, plugsuit, pilot suit, red bodysuit, sitting, crossing legs, black eye patch, cat hat, throne, symmetrical, looking down, from bottom, looking at viewer, outdoors, masterpiece, best quality, very aesthetic, absurdres",
"nsfw, lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]",
1,
30,
7.5,
True,
-1,
"Euler",
1152,
896,
"cagliostrolab/animagine-xl-4.0",
],
[
"solo, princess Zelda OOT, score_9, score_8_up, score_8, medium breasts, cute, eyelashes, cute small face, long hair, crown braid, hairclip, pointy ears, soft curvy body, looking at viewer, smile, blush, white dress, medium body, (((holding the Master Sword))), standing, deep forest in the background",
"score_6, score_5, score_4, busty, ugly face, mutated hands, low res, blurry face, black and white,",
1,
30,
5.,
True,
-1,
"Euler",
1024,
1024,
"votepurchase/ponyDiffusionV6XL",
],
[
"1girl, oomuro sakurako, yuru yuri, official art, school uniform, anime artwork, anime style, studio anime, highly detailed, masterpiece, best quality, very aesthetic, absurdres",
"photo, deformed, black and white, realism, disfigured, low contrast, lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]",
1,
40,
7.0,
True,
-1,
"Euler",
1024,
1024,
"Raelina/Rae-Diffusion-XL-V2",
],
[
"1girl, akaza akari, yuru yuri, official art, anime screencap, anime coloring, masterpiece, best quality, absurdres",
"bad quality, worst quality, poorly drawn, sketch, multiple views, bad anatomy, bad hands, missing fingers, extra fingers, extra digits, fewer digits, signature, watermark, username",
1,
28,
5.5,
True,
-1,
"Euler",
1024,
1024,
"Raelina/Raehoshi-illust-XL-8",
],
[
"yoshida yuuko, machikado mazoku, 1girl, solo, demon horns,horns, school uniform, long hair, open mouth, skirt, demon girl, ahoge, shiny, shiny hair, anime artwork",
"nsfw, lowres, (bad), text, error, fewer, extra, missing, worst quality, jpeg artifacts, low quality, watermark, unfinished, displeasing, oldest, early, chromatic aberration, signature, extra digits, artistic error, username, scan, [abstract]",
1,
50,
7.,
True,
-1,
"Euler",
1024,
1024,
"cagliostrolab/animagine-xl-4.0",
],
]
RESOURCES = (
"""### Resources
- You can also try the image generator in Colab’s free tier, which provides free GPU [link](https://github.com/R3gm/SD_diffusers_interactive).
"""
)