Spaces:
Runtime error
Runtime error
| 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" | |