6935491081
Catches mismatches between local intent and what's actually loaded on the ComfyUI host. Replaces ComfyUI's generic 400 'prompt_outputs_failed_validation' with a clear "model X not available on host — did you mean Y?" suggestion. Why: when a user types `tsr generate -m getphatFLUXReality_v5Hardcore` but only v11Softcore is installed, they got a 30-line raw API error buried in node validation output. Now they get one red line plus three fuzzy-matched candidates from the actual loader bucket. Implementation: - Extends get_loaded_models() in comfyui.py to include the diffusion_models bucket (UNETLoader -> unet_name). Previously only checkpoints, loras, vae, clip, controlnet, upscale_models were exposed. - New _validate_model_available() helper in cli.py runs after family detection, before prompt enhancement. Maps family -> loader bucket: flux_unet / flux2_klein -> diffusion_models/, else checkpoints/. Uses difflib.get_close_matches for the "did you mean" hint. - Validates LoRA presence too when -l is passed. - Special hint: if the requested file IS in checkpoints/ but the family requires diffusion_models/, suggests the symlink command the user needs to run on the host. Common case for newly-uploaded UNet-only checkpoints. - Network failures are non-fatal — falls through to let ComfyUI surface the error itself rather than blocking on a stale endpoint. - Skipped in --json mode (machine callers) and --remote dispatches (the server validates remotely). 8 new tests covering: unknown model in checkpoints bucket, unknown in diffusion_models, flux2_klein routing, happy path, missing LoRA, network failure, symlink hint, and a source-level check that the diffusion_models bucket is wired into get_loaded_models. 259 -> 267 tests.