-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
242 lines (213 loc) · 10.8 KB
/
Copy path__init__.py
File metadata and controls
242 lines (213 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
from __future__ import annotations
import asyncio as _asyncio
import logging as _logging
import sys as _sys
import threading as _threading
from typing_extensions import override
from comfy_api.latest import ComfyExtension, io
# Apply any staged self-update FIRST — before our own submodules are imported
# and before anything opens the tag-builder DB. At this point in a fresh boot
# no sqlite handle is held, so git can replace the locked 47MB DB blob; the
# pulled .py files are then what the imports below read. No-op when nothing is
# staged. (Changes to update_boot.py itself take effect only on the next boot,
# since this file is already compiled — keep it minimal and defensive.)
from .core.update_boot import apply_pending_update
apply_pending_update()
from .nodes.promptchain import PromptChainNode
from .nodes.pose_studio import PoseStudioNode
from .nodes.attention_couple import AttentionCoupleNode
from .nodes.attention_couple_zimage import ZImageRegionalCoupleNode
from .nodes.regional_detailer import RegionalDetailerNode, MaskedDetailNode
from .nodes.regional_conditioning import RegionalConditioningNode
from .nodes.region_box import RegionBoxNode
from .nodes.defocus_mask import DefocusMaskNode
from .nodes.ideogram_sampler import IdeogramSamplerNode
from .nodes.ideogram_caption import IdeogramCaptionNode
# Timestamps on every PromptChain log line. ComfyUI's default formatter
# emits bare messages with no clock — fine for crash-style logs but
# useless for measuring patch latency or correlating events. We attach
# our own StreamHandler to the `promptchain` namespace with HH:MM:SS.mmm
# timestamps and disable propagation so messages don't double-log.
_pc_logger = _logging.getLogger("promptchain")
if not any(getattr(h, "_pc_timestamped", False) for h in _pc_logger.handlers):
_pc_handler = _logging.StreamHandler(_sys.stdout)
_pc_handler.setFormatter(_logging.Formatter(
"%(asctime)s.%(msecs)03d %(levelname).1s [%(name)s] %(message)s",
datefmt="%H:%M:%S",
))
_pc_handler._pc_timestamped = True # marker so re-import doesn't dup
_pc_logger.addHandler(_pc_handler)
_pc_logger.setLevel(_logging.INFO)
_pc_logger.propagate = False
from .core.fingerprint import scan_models, list_models
from .core.tags import get_store as get_tag_store
from .core import model_settings
from .core.shared import send_ws
from .core.model_api import detect_model, recognition_state
# Route modules — register their endpoints on import
from .core import tag_builder # noqa: F401
from .core import browse_api # noqa: F401
from .core import template_api # noqa: F401
from .core import tag_api # noqa: F401
from .core import wildcard_api # noqa: F401
from .core import history_api # noqa: F401
from .core import model_api # noqa: F401
from .core import lora_catalog # noqa: F401
from .core import civitai_api # noqa: F401
from .core import system_api # noqa: F401
from .core import node_install_api # noqa: F401
from .core import pose_api # noqa: F401
from .core import inpaint_files # noqa: F401 (age-sweeps input/promptchain_inpaint at startup)
from .core import upscale_api # noqa: F401
from .core import edit_api # noqa: F401
from .core import extend_api # noqa: F401
from .core import modal_setup_api # noqa: F401
from .core import subject_api # noqa: F401
from .core import install_sections # noqa: F401
from .core import ai_api # noqa: F401
from .core import ai_agent # noqa: F401
# ── native preprocessor nodes ────────────────────────────────────
# pcr_cnaux (DepthAnything/TEED-based) and pcr_rtmpose (rtmlib) are OUR OWN
# preprocessor nodes — the license-clean replacements for comfyui_controlnet_aux.
# They're written against the V1 `NODE_CLASS_MAPPINGS` convention, but PromptChain
# registers via the V3 `comfy_entrypoint` below and ComfyUI's loader is
# `if NODE_CLASS_MAPPINGS … elif comfy_entrypoint` (mutually exclusive, see
# comfyui/nodes.py), so a module-level NODE_CLASS_MAPPINGS here would shadow our
# own nodes. Instead we inject these maps into ComfyUI's global registry at import
# time (during exec_module, before the loader reaches our entrypoint). Their ids
# are unique (PromptChain_*), so there is no collision to guard against.
# Third-party packs are NOT registered here — they live in bundled_packs/ and are
# copied into the user's custom_nodes/ at install time. Wrapped so an import error
# in one can never take down PromptChain's own nodes.
def _register_vendored_nodes():
import nodes as _comfy
native = []
try:
from .vendor.pcr_cnaux import NODE_CLASS_MAPPINGS as m, NODE_DISPLAY_NAME_MAPPINGS as d
native.append(("pcr_cnaux", m, d))
except Exception:
_pc_logger.warning("native pcr_cnaux failed to load", exc_info=True)
try:
from .vendor.pcr_rtmpose import NODE_CLASS_MAPPINGS as m, NODE_DISPLAY_NAME_MAPPINGS as d
native.append(("pcr_rtmpose", m, d))
except Exception:
_pc_logger.warning("native pcr_rtmpose failed to load", exc_info=True)
for name, class_map, display_map in native:
_comfy.NODE_CLASS_MAPPINGS.update(class_map)
_comfy.NODE_DISPLAY_NAME_MAPPINGS.update(display_map or {})
_pc_logger.info("registered native preprocessors '%s' (%d nodes)", name, len(class_map))
_register_vendored_nodes()
WEB_DIRECTORY = "./js"
# ── boot-time preloading ─────────────────────────────────────────
# Load heavy data in background threads so the first API request
# doesn't block the aiohttp event loop (which freezes all nodes).
def _preload():
scan_models()
get_tag_store().load_all()
# Heal any CivitAI-model-id groups whose versions ended up with
# different model_name strings (creator renamed the CivitAI page
# between recognitions). Runs every boot; idempotent when data
# is already consistent.
try:
model_settings.normalize_civitai_model_names()
except Exception as e:
print(f"[PromptChain] normalize_civitai_model_names failed: {e}")
# Warm up bucket-search embeddings so the first Prompt Generator
# request doesn't pay the model-download + index-build cost (~5-15s).
# Best-effort; if transformers isn't installed the search endpoint
# degrades to empty results and the rest of the pipeline still works.
try:
from .core import bucket_search
bucket_search.warmup()
except Exception as e:
print(f"[PromptChain] bucket_search warmup failed: {e}")
# Same model as bucket_search; this just builds the small modifier
# index (~7 rows) using the cached weights. First /ai/patch request
# then doesn't pay the embed-the-modifiers cost.
try:
from .core import modifier_search
modifier_search.warmup()
except Exception as e:
print(f"[PromptChain] modifier_search warmup failed: {e}")
# Danbooru tag-wiki retrieval. Disk-cached index — typically < 1s
# to load. Cold first-build is ~5-10 min on CPU and only happens
# after a wiki ingest run; we do that out-of-band, not at boot.
try:
from .core import tag_search
tag_search.warmup()
except Exception as e:
print(f"[PromptChain] tag_search warmup failed: {e}")
try:
from .core import style_search
style_search.warmup()
except Exception as e:
print(f"[PromptChain] style_search warmup failed: {e}")
_recognize_unknown_models()
def _recognize_unknown_models():
"""Process unrecognized models: full SHA256 -> CivitAI -> save settings."""
models = list_models()
unrecognized = [
m for m in models
if not model_settings.load(m["hash"])
and not model_settings.is_catalog_filename(m["filename"])
]
if not unrecognized:
print(f"[PromptChain] All {len(models)} model(s) already recognized")
return
print(f"[PromptChain] {len(unrecognized)} unrecognized model(s), starting CivitAI detection...")
recognition_state["running"] = True
recognition_state["total"] = len(unrecognized)
recognition_state["done"] = 0
send_ws("promptchain_recognition_start", {
"total": len(unrecognized),
})
loop = _asyncio.new_event_loop()
try:
for model in unrecognized:
recognition_state["current"] = model["filename"]
print(f"[PromptChain] Detecting: {model['filename']}...")
try:
# Timeout per model: if CivitAI or DNS hangs, don't stall
# the whole boot preload. 30s is generous for a single
# hash lookup + metadata fetch.
result = loop.run_until_complete(
_asyncio.wait_for(
detect_model(model["hash"], model["filepath"], model.get("architecture", "")),
timeout=30,
)
)
except _asyncio.TimeoutError:
print(f"[PromptChain] Timeout detecting {model['filename']}, skipping")
result = {"status": "timeout"}
status = result.get("status", "not_found")
display = result.get("settings", {}).get("display_name", "")
if status == "found":
print(f"[PromptChain] Found: {display} (arch={result['settings'].get('architecture')}, family={result['settings'].get('family', '')})")
else:
print(f"[PromptChain] {status}")
recognition_state["done"] += 1
send_ws("promptchain_model_recognized", {
"hash": model["hash"],
"filename": model["filename"],
"status": status,
"settings": result.get("settings"),
"done": recognition_state["done"],
"total": recognition_state["total"],
})
finally:
loop.close()
recognition_state["running"] = False
recognition_state["current"] = None
print(f"[PromptChain] Recognition complete: {recognition_state['done']}/{recognition_state['total']}")
send_ws("promptchain_recognition_done", {
"total": recognition_state["total"],
"done": recognition_state["done"],
})
_threading.Thread(target=_preload, daemon=True).start()
# ── extension ────────────────────────────────────────────────────
class PromptChainExtension(ComfyExtension):
@override
async def get_node_list(self) -> list[type[io.ComfyNode]]:
return [PromptChainNode, PoseStudioNode, AttentionCoupleNode, ZImageRegionalCoupleNode, RegionalDetailerNode, MaskedDetailNode, RegionalConditioningNode, RegionBoxNode, DefocusMaskNode, IdeogramSamplerNode, IdeogramCaptionNode]
async def comfy_entrypoint() -> PromptChainExtension:
return PromptChainExtension()