From 18deefc83c643d5add32cced9ce10547a64b53a7 Mon Sep 17 00:00:00 2001 From: Believethehype Date: Wed, 27 Dec 2023 14:43:11 +0100 Subject: [PATCH] Update texttospeech.py --- nostr_dvm/tasks/texttospeech.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nostr_dvm/tasks/texttospeech.py b/nostr_dvm/tasks/texttospeech.py index 58059a7..c605c5f 100644 --- a/nostr_dvm/tasks/texttospeech.py +++ b/nostr_dvm/tasks/texttospeech.py @@ -109,6 +109,7 @@ class TextToSpeech(DVMTaskInterface): text=options["prompt"], speaker_wav=options["input_wav"], language=options["language"], file_path="outputs/output.wav") result = upload_media_to_hoster("outputs/output.wav") + print(result) return result except Exception as e: print("Error in Module: " + str(e))