Advanced node + generation seed

This commit is contained in:
snicolast
2025-09-22 12:51:09 +12:00
parent fe1098ed8a
commit 13887983b1
5 changed files with 365 additions and 2 deletions

View File

@@ -1,15 +1,18 @@
from .nodes.indextts2_node import IndexTTS2Simple
from .nodes.indextts2_node_advanced import IndexTTS2Advanced
from .nodes.indextts2_node_emovec import IndexTTS2EmotionVector
from .nodes.indextts2_node_emotext import IndexTTS2EmotionFromText
NODE_CLASS_MAPPINGS = {
"IndexTTS2Simple": IndexTTS2Simple,
"IndexTTS2Advanced": IndexTTS2Advanced,
"IndexTTS2EmotionVector": IndexTTS2EmotionVector,
"IndexTTS2EmotionFromText": IndexTTS2EmotionFromText,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"IndexTTS2Simple": "IndexTTS2 Simple",
"IndexTTS2Advanced": "IndexTTS2 Advanced",
"IndexTTS2EmotionVector": "IndexTTS2 Emotion Vector",
"IndexTTS2EmotionFromText": "IndexTTS2 Emotion From Text",
}