[UC]임종현 il y a 7 mois
Parent
commit
5e4355d7f0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      stt_whisper.py

+ 1 - 1
stt_whisper.py

@@ -8,7 +8,7 @@ from fastapi import FastAPI, WebSocket, WebSocketDisconnect
 app = FastAPI()
 
 # Whisper 모델 로드 (tiny 모델로 실시간성 유지)
-model = whisper.load_model("base")
+model = whisper.load_model("tiny")
 
 # 클라이언트 관리
 clients = {}