Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
ab471704f9 | |
|
|
46c05574a8 |
|
|
@ -11,4 +11,6 @@ data/samples/
|
|||
.pytest_cache/
|
||||
*.pyc
|
||||
*.whl
|
||||
*.log
|
||||
*.log
|
||||
uv.lock
|
||||
.python-version
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
1. **사전 준비**: `uv` 설치 및 파이썬 패키지 세팅
|
||||
```bash
|
||||
uv python pin 3.11
|
||||
uv sync
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -5,17 +5,19 @@ description = "HUTAMS STT Service for LTE-R"
|
|||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"fastapi>=0.100.0",
|
||||
"uvicorn>=0.23.0",
|
||||
"faster-whisper",
|
||||
"rapidfuzz",
|
||||
"sqlalchemy",
|
||||
"pydantic",
|
||||
"pydub",
|
||||
"python-multipart",
|
||||
"fastapi>=0.110.0",
|
||||
"uvicorn[standard]>=0.27.0",
|
||||
"faster-whisper>=1.0.0",
|
||||
"rapidfuzz>=3.0.0",
|
||||
"sqlalchemy>=2.0.0",
|
||||
"pydantic>=2.0.0",
|
||||
"pydantic-settings>=2.0.0",
|
||||
"pydub>=0.25.1",
|
||||
"python-multipart>=0.0.9",
|
||||
"imageio-ffmpeg>=0.5.0",
|
||||
"jinja2",
|
||||
"websockets"
|
||||
]
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
|
|
@ -23,6 +25,10 @@ dev = [
|
|||
"ruff"
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
#[build-system]
|
||||
#requires = ["hatchling"]
|
||||
#build-backend = "hatchling.build"
|
||||
|
||||
# 그리고 이 두 줄을 맨 아래에 추가해 주세요.
|
||||
[tool.uv]
|
||||
package = false
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
# 사용법: .\run_server.ps1
|
||||
# 접속: http://localhost:28000 또는 http://127.0.0.1:28000
|
||||
# ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
|
||||
# 1. 기존에 실행 중인 uvicorn 프로세스 안전 종료
|
||||
taskkill /IM uvicorn.exe /F 2>$null
|
||||
Start-Sleep -Milliseconds 500
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# test_mock.ps1 — HUTAMS MOCK 오디오 시뮬레이터 테스트 스크립트
|
||||
# 사용법: .\test_mock.ps1
|
||||
# ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
|
||||
Write-Host "=================================" -ForegroundColor Cyan
|
||||
Write-Host " HUTAMS MOCK Test Mode" -ForegroundColor Cyan
|
||||
Write-Host "=================================" -ForegroundColor Cyan
|
||||
|
|
|
|||
Loading…
Reference in New Issue