Browse Source

model 변경

[UC]임종현 7 tháng trước cách đây
mục cha
commit
5e4355d7f0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 = {}