Preserves full LATENT dict including tensors, non-tensor metadata, and original device placement. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
390 B
Python
14 lines
390 B
Python
from .nodes import SaveLatentAbsolute, LoadLatentAbsolute
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"SaveLatentAbsolute": SaveLatentAbsolute,
|
|
"LoadLatentAbsolute": LoadLatentAbsolute,
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
"SaveLatentAbsolute": "Save Latent (Absolute Path)",
|
|
"LoadLatentAbsolute": "Load Latent (Absolute Path)",
|
|
}
|
|
|
|
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]
|