Merge pull request #1499 from lainedfles/whisper_auto_update

feat: introduce Whisper model auto-update control.
This commit is contained in:
Timothy Jaeryang Baek
2024-04-14 13:58:17 -07:00
committed by GitHub
2 changed files with 22 additions and 6 deletions

View File

@@ -450,6 +450,9 @@ Query: [query]"""
WHISPER_MODEL = os.getenv("WHISPER_MODEL", "base")
WHISPER_MODEL_DIR = os.getenv("WHISPER_MODEL_DIR", f"{CACHE_DIR}/whisper/models")
WHISPER_MODEL_AUTO_UPDATE = (
os.environ.get("WHISPER_MODEL_AUTO_UPDATE", "").lower() == "true"
)
####################################