Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
02ffbb2d
Commit
02ffbb2d
authored
Nov 23, 2023
by
comfyanonymous
Browse files
Fix typo.
parent
42dfae63
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
comfy_extras/nodes_video_model.py
comfy_extras/nodes_video_model.py
+2
-2
web/scripts/app.js
web/scripts/app.js
+1
-0
No files found.
comfy_extras/nodes_video_model.py
View file @
02ffbb2d
...
@@ -21,7 +21,7 @@ class ImageOnlyCheckpointLoader:
...
@@ -21,7 +21,7 @@ class ImageOnlyCheckpointLoader:
return
(
out
[
0
],
out
[
3
],
out
[
2
])
return
(
out
[
0
],
out
[
3
],
out
[
2
])
class
S
D
V_img2vid_Conditioning
:
class
SV
D
_img2vid_Conditioning
:
@
classmethod
@
classmethod
def
INPUT_TYPES
(
s
):
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"clip_vision"
:
(
"CLIP_VISION"
,),
return
{
"required"
:
{
"clip_vision"
:
(
"CLIP_VISION"
,),
...
@@ -80,7 +80,7 @@ class VideoLinearCFGGuidance:
...
@@ -80,7 +80,7 @@ class VideoLinearCFGGuidance:
NODE_CLASS_MAPPINGS
=
{
NODE_CLASS_MAPPINGS
=
{
"ImageOnlyCheckpointLoader"
:
ImageOnlyCheckpointLoader
,
"ImageOnlyCheckpointLoader"
:
ImageOnlyCheckpointLoader
,
"S
D
V_img2vid_Conditioning"
:
S
D
V_img2vid_Conditioning
,
"SV
D
_img2vid_Conditioning"
:
SV
D
_img2vid_Conditioning
,
"VideoLinearCFGGuidance"
:
VideoLinearCFGGuidance
,
"VideoLinearCFGGuidance"
:
VideoLinearCFGGuidance
,
}
}
...
...
web/scripts/app.js
View file @
02ffbb2d
...
@@ -1523,6 +1523,7 @@ export class ComfyApp {
...
@@ -1523,6 +1523,7 @@ export class ComfyApp {
// Patch T2IAdapterLoader to ControlNetLoader since they are the same node now
// Patch T2IAdapterLoader to ControlNetLoader since they are the same node now
if
(
n
.
type
==
"
T2IAdapterLoader
"
)
n
.
type
=
"
ControlNetLoader
"
;
if
(
n
.
type
==
"
T2IAdapterLoader
"
)
n
.
type
=
"
ControlNetLoader
"
;
if
(
n
.
type
==
"
ConditioningAverage
"
)
n
.
type
=
"
ConditioningAverage
"
;
//typo fix
if
(
n
.
type
==
"
ConditioningAverage
"
)
n
.
type
=
"
ConditioningAverage
"
;
//typo fix
if
(
n
.
type
==
"
SDV_img2vid_Conditioning
"
)
n
.
type
=
"
SVD_img2vid_Conditioning
"
;
//typo fix
// Find missing node types
// Find missing node types
if
(
!
(
n
.
type
in
LiteGraph
.
registered_node_types
))
{
if
(
!
(
n
.
type
in
LiteGraph
.
registered_node_types
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment