Update model download URLs to point to v1.4 release

This commit is contained in:
remsky 2025-02-07 02:23:45 -07:00
parent 16e4a88e83
commit 952d79252c
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ def download_model(output_dir: str) -> None:
logger.info("Downloading Kokoro v1.0 model files")
# GitHub release URLs (to be updated with v0.2.0 release)
base_url = "https://github.com/remsky/Kokoro-FastAPI/releases/download/v0.2.0"
base_url = "https://github.com/remsky/Kokoro-FastAPI/releases/download/v0.1.4"
model_url = f"{base_url}/{model_file}"
config_url = f"{base_url}/{config_file}"

View file

@ -82,7 +82,7 @@ if verify_files "$MODEL_PATH" "$CONFIG_PATH"; then
fi
# Define URLs
BASE_URL="https://github.com/remsky/Kokoro-FastAPI/releases/download/v0.2.0"
BASE_URL="https://github.com/remsky/Kokoro-FastAPI/releases/download/v1.4"
MODEL_URL="$BASE_URL/$MODEL_FILE"
CONFIG_URL="$BASE_URL/$CONFIG_FILE"