mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
Final cleanup of references missed in previous rename commits: - Dockerfiles: PUBLIC_MANA_CORE_AUTH_URL → PUBLIC_MANA_AUTH_URL - Go modules: github.com/manacore/* → github.com/mana/* (7 go.mod files) - launchd plists: com.manacore.* → com.mana.* (14 files renamed + content) - Image assets: *_Manacore_AI_Credits* → *_Mana_AI_Credits* (11 files) - .env.example files: ManaCore brand strings → Mana - .prettierignore: stale apps/manacore/* paths → apps/mana/* - Markdown docs (CLAUDE.md, /docs/*): mana-core-auth → mana-auth, etc. Excluded from rename: .claude/, devlog/, manascore/ (historical content), client testimonials, blueprints, npm package refs (@mana-core/*). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
889 B
Text
35 lines
889 B
Text
# Mana STT Service Dependencies
|
|
# For GPU Server (NVIDIA RTX 3090 / CUDA)
|
|
|
|
# Web Framework
|
|
fastapi==0.115.6
|
|
uvicorn[standard]==0.34.0
|
|
python-multipart==0.0.20
|
|
|
|
# Audio Processing
|
|
pydub==0.25.1
|
|
soundfile==0.13.1
|
|
|
|
# WhisperX (CUDA) — includes faster-whisper + alignment
|
|
whisperx @ git+https://github.com/m-bain/whisperX.git
|
|
|
|
# faster-whisper with CTranslate2 (CUDA backend)
|
|
faster-whisper>=1.1.0
|
|
|
|
# Speaker Diarization (pyannote.audio)
|
|
# Requires HF_TOKEN with accepted terms:
|
|
# https://huggingface.co/pyannote/speaker-diarization-3.1
|
|
# https://huggingface.co/pyannote/segmentation-3.0
|
|
pyannote.audio>=3.3.0
|
|
|
|
# PyTorch CUDA — install separately for your CUDA version:
|
|
# pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu121
|
|
torch>=2.5.0
|
|
torchaudio>=2.5.0
|
|
|
|
# Utilities
|
|
numpy>=1.26.0
|
|
tqdm>=4.67.0
|
|
|
|
# External Auth (mana-core-auth integration)
|
|
httpx>=0.27.0
|