From 8950cb4e0496fdd36f101d58f52e26022370b9d3 Mon Sep 17 00:00:00 2001 From: Believethehype Date: Fri, 29 Dec 2023 17:58:59 +0100 Subject: [PATCH] Update texttospeech.py --- nostr_dvm/tasks/texttospeech.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nostr_dvm/tasks/texttospeech.py b/nostr_dvm/tasks/texttospeech.py index 01f6a31..60b4aa9 100644 --- a/nostr_dvm/tasks/texttospeech.py +++ b/nostr_dvm/tasks/texttospeech.py @@ -24,8 +24,8 @@ Outputs: Generated Audiofile class TextToSpeech(DVMTaskInterface): KIND: int = EventDefinitions.KIND_NIP90_TEXT_TO_SPEECH TASK: str = "text-to-speech" - FIX_COST: float = 20 - PER_UNIT_COST = 0.1 + FIX_COST: float = 0 + PER_UNIT_COST = 0.5 dependencies = [("nostr-dvm", "nostr-dvm"), ("TTS", "TTS==0.22.0")]