remove commented code

This commit is contained in:
Kiran Lonikar
2025-07-12 22:29:30 +05:30
committed by GitHub
parent ad11b2b0ef
commit 40edd25468
+1 -3
View File
@@ -217,7 +217,7 @@ class TranscriptionServer:
if self.backend.is_faster_whisper():
from whisper_live.backend.faster_whisper_backend import ServeClientFasterWhisper
# model is of the form namespace/repo_name and not a filesystem path
if faster_whisper_custom_model_path is not None: # and os.path.exists(faster_whisper_custom_model_path):
if faster_whisper_custom_model_path is not None:
logging.info(f"Using custom model {faster_whisper_custom_model_path}")
options["model"] = faster_whisper_custom_model_path
client = ServeClientFasterWhisper(
@@ -381,8 +381,6 @@ class TranscriptionServer:
port (int): The port number to bind the server.
"""
self.cache_path = cache_path
#if faster_whisper_custom_model_path is not None and not os.path.exists(faster_whisper_custom_model_path):
# raise ValueError(f"Custom faster_whisper model '{faster_whisper_custom_model_path}' is not a valid path.")
if whisper_tensorrt_path is not None and not os.path.exists(whisper_tensorrt_path):
raise ValueError(f"TensorRT model '{whisper_tensorrt_path}' is not a valid path.")
if single_model: