瀏覽代碼

model 변경

[UC]임종현 7 月之前
父節點
當前提交
5e4355d7f0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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 = {}