Use Maia 23m as default model
All checks were successful
Deploy Blog Backend / test (push) Successful in 1m24s
Deploy Blog Backend / deploy (push) Successful in 1m26s

This commit is contained in:
박원엽
2026-06-19 16:47:08 +09:00
parent 5686d3d5ad
commit db965ec9e1
4 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ from fastapi import FastAPI, HTTPException
from pydantic import BaseModel, Field
DEFAULT_MODEL = os.getenv("MAIA_MODEL", "5m").removeprefix("maia3-")
DEFAULT_MODEL = os.getenv("MAIA_MODEL", "23m").removeprefix("maia3-")
DEFAULT_DEVICE = os.getenv("MAIA_DEVICE", "cpu")
DEFAULT_USE_AMP = os.getenv("MAIA_USE_AMP", "false").lower() == "true"