Try medium-3b model name for PyPI package

This commit is contained in:
2026-01-11 17:23:49 -06:00
parent 8cc9154080
commit ec965580ae

View File

@@ -39,7 +39,7 @@ from fastapi.responses import FileResponse, StreamingResponse
from pydantic import BaseModel
# Configuration from environment
ORPHEUS_MODEL = os.getenv("ORPHEUS_MODEL", "canopylabs/orpheus-tts-0.1-finetune-prod")
ORPHEUS_MODEL = os.getenv("ORPHEUS_MODEL", "medium-3b")
CACHE_ENABLED = os.getenv("CACHE_ENABLED", "true").lower() == "true"
CACHE_DIR = Path(os.getenv("CACHE_DIR", "cache"))
OUTPUT_DIR = Path(os.getenv("OUTPUT_DIR", "output"))