diff --git a/docs/prompt-pool-routing-map.md b/docs/prompt-pool-routing-map.md index 04dafef..bee9032 100644 --- a/docs/prompt-pool-routing-map.md +++ b/docs/prompt-pool-routing-map.md @@ -127,6 +127,7 @@ Core helper ownership: | `prompt_hygiene.py` | Generic prompt, caption, and negative-prompt cleanup. | | `row_normalization.py` | Final prompt-row and pair metadata normalization: trigger prepending, extra-positive append, negative merge/dedupe, caption-part joining, embedded soft/hard row output and side-metadata synchronization, and embedded row sanitation. | | `formatter_input.py` | Shared formatter input parsing: text cleanup, metadata/source JSON detection, trigger-prefix stripping, shared prompt field-label inventory, fallback field-label stripping, `Avoid:` splitting, prompt-field extraction, and metadata row-value fallback. | +| `formatter_target.py` | Shared formatter target choices and normalization for `auto`, `single`, `softcore`, and `hardcore`, including pair-side selection and combined-caption inclusion policy. | | `node_tooltips.py` | Node input tooltip inventory, node-specific overrides, dynamic-input fallback rules, and tooltip injection installer used by `__init__.py`. | | `server_routes.py` | Pure payload handlers for profile-save and accumulator server endpoints, used by ComfyUI routes and smoke tests without importing ComfyUI. | | `sdxl_presets.py` | SDXL formatter profiles, style presets, quality presets, default negative prompt, and metadata-family tag hints used by the SDXL formatter and node choice lists. | diff --git a/tools/prompt_map_audit.py b/tools/prompt_map_audit.py index cd83b89..c59cec4 100644 --- a/tools/prompt_map_audit.py +++ b/tools/prompt_map_audit.py @@ -38,6 +38,8 @@ CRITICAL_ROUTE_MODULES: tuple[tuple[str, str], ...] = ( ("krea_format_route.py", "krea_format_route_policy"), ("sdxl_format_route.py", "sdxl_format_route_policy"), ("caption_format_route.py", "caption_format_route_policy"), + ("formatter_input.py", "formatter_input_policy"), + ("formatter_target.py", "formatter_target_policy"), ("pair_builder.py", "pair_builder_policy"), ("row_assembly.py", "row_assembly_policy"), ("row_category_route.py", "row_category_route_policy"),