Add model folder placeholder

This commit is contained in:
kijai 2026-04-09 01:07:19 +03:00
parent 3cbd1d5f71
commit 390798718c
2 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ class FrameInterpolationModelLoader(io.ComfyNode):
display_name="Load Frame Interpolation Model", display_name="Load Frame Interpolation Model",
category="loaders", category="loaders",
inputs=[ inputs=[
io.Combo.Input("model_name", options=folder_paths.get_filename_list("frame_interpolation")), io.Combo.Input("model_name", options=folder_paths.get_filename_list("frame_interpolation"),
tooltip="Select a frame interpolation model to load. Models must be placed in the 'frame_interpolation' folder."),
], ],
outputs=[ outputs=[
FrameInterpolationModel.Output(), FrameInterpolationModel.Output(),