@@ -11,4 +11,4 @@
pyvenv.cfg
.venv
pip-selfcheck.json
-
+.idea
@@ -0,0 +1,2 @@
+sudo apt update
+sudo apt install python3 python3-venv python3-pip -y
@@ -8,7 +8,7 @@ from fastapi import FastAPI, WebSocket, WebSocketDisconnect
app = FastAPI()
# Whisper 모델 로드 (tiny 모델로 실시간성 유지)
-model = whisper.load_model("tiny")
+model = whisper.load_model("base")
# 클라이언트 관리
clients = {}