From 118dd1ba93cb1f1c3be4fae67268b12296508e9d Mon Sep 17 00:00:00 2001 From: Believethehype Date: Fri, 29 Dec 2023 18:08:36 +0100 Subject: [PATCH] Update texttospeech.py --- nostr_dvm/tasks/texttospeech.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostr_dvm/tasks/texttospeech.py b/nostr_dvm/tasks/texttospeech.py index 60b4aa9..2a1a071 100644 --- a/nostr_dvm/tasks/texttospeech.py +++ b/nostr_dvm/tasks/texttospeech.py @@ -24,7 +24,7 @@ Outputs: Generated Audiofile class TextToSpeech(DVMTaskInterface): KIND: int = EventDefinitions.KIND_NIP90_TEXT_TO_SPEECH TASK: str = "text-to-speech" - FIX_COST: float = 0 + FIX_COST: float = 50 PER_UNIT_COST = 0.5 dependencies = [("nostr-dvm", "nostr-dvm"), ("TTS", "TTS==0.22.0")]