crystalcourses's picture
Upload folder using huggingface_hub
808773a verified
Raw
History Blame Contribute Delete
481 Bytes
class PlayDiffusion:
def __init__(self):
print("PlayDiffusion initialized")
def inpaint(self, inpaint_input):
print("Running inpaint with:", inpaint_input.__dict__)
return "dummy_inpaint_output.wav"
def tts(self, tts_input):
print("Running TTS with:", tts_input.__dict__)
return "dummy_tts_output.wav"
def rvc(self, rvc_input):
print("Running RVC with:", rvc_input.__dict__)
return "dummy_rvc_output.wav"