[UC]임종현 hai 7 meses
pai
achega
5e4355d7f0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 = {}