Try medium-3b model name for PyPI package
This commit is contained in:
2
main.py
2
main.py
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user