Przeglądaj źródła

Exit elevenlabs_tts if streaming is enabled

oobabooga 2 lat temu
rodzic
commit
a90f507abe
1 zmienionych plików z 4 dodań i 1 usunięć
  1. 4 1
      extensions/elevenlabs_tts/script.py

+ 4 - 1
extensions/elevenlabs_tts/script.py

@@ -15,7 +15,10 @@ wav_idx = 0
 user = ElevenLabsUser(params['api_key'])
 user_info = None
 
-
+if not shared.args.no_stream:
+    print("Please add --no-stream. This extension is not meant to be used with streaming.")
+    raise ValueError
+    
 # Check if the API is valid and refresh the UI accordingly.
 def check_valid_api():