feat: scaffold ComfyUI-Omnivoice node package
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
from .nodes import OmniVoiceModelLoader, OmniVoiceGenerate
|
||||
|
||||
NODE_CLASS_MAPPINGS = {
|
||||
"OmniVoiceModelLoader": OmniVoiceModelLoader,
|
||||
"OmniVoiceGenerate": OmniVoiceGenerate,
|
||||
}
|
||||
|
||||
NODE_DISPLAY_NAME_MAPPINGS = {
|
||||
"OmniVoiceModelLoader": "OmniVoice Model Loader",
|
||||
"OmniVoiceGenerate": "OmniVoice Generate",
|
||||
}
|
||||
|
||||
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]
|
||||
@@ -0,0 +1,4 @@
|
||||
from .loader import OmniVoiceModelLoader
|
||||
from .generator import OmniVoiceGenerate
|
||||
|
||||
__all__ = ["OmniVoiceModelLoader", "OmniVoiceGenerate"]
|
||||
@@ -0,0 +1,2 @@
|
||||
class OmniVoiceGenerate:
|
||||
pass
|
||||
@@ -0,0 +1,2 @@
|
||||
class OmniVoiceModelLoader:
|
||||
pass
|
||||
@@ -0,0 +1,3 @@
|
||||
omnivoice
|
||||
torch
|
||||
torchaudio
|
||||
Reference in New Issue
Block a user