Browse Source

model 변경

[UC]임종현 7 months ago
parent
commit
5e4355d7f0
1 changed files with 1 additions and 1 deletions
  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 = {}