First Commit

This commit is contained in:
snicolast
2025-09-12 16:23:19 +12:00
commit a326daa293
211 changed files with 55238 additions and 0 deletions

15
__init__.py Normal file
View File

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