mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-03-22 07:06:47 +00:00
* fix: local processing instead of http server for cpu * add fallback token if service worker doesnt work * chore: rename processors to keep processor pattern up to date and allow other processors to be createed and used with env vars
22 lines
555 B
TOML
22 lines
555 B
TOML
[project]
|
|
name = "reflector-gpu"
|
|
version = "0.1.0"
|
|
description = "Self-hosted GPU service for speech transcription, diarization, and translation via FastAPI."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.116.1",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"torch>=2.3.0",
|
|
"faster-whisper>=1.1.0",
|
|
"librosa==0.10.1",
|
|
"numpy<2",
|
|
"silero-vad==5.1.2",
|
|
"transformers>=4.35.0",
|
|
"sentencepiece",
|
|
"pyannote.audio==3.4.0",
|
|
"pytorch-lightning<2.6",
|
|
"torchaudio>=2.3.0",
|
|
"av>=13.1.0",
|
|
]
|