This commit is contained in:
mike
2025-12-17 16:33:19 +01:00
commit ae818f0b4b
10 changed files with 2206 additions and 0 deletions

21
requirements.txt Executable file
View File

@@ -0,0 +1,21 @@
# Core dependencies for Windows Real-Time Audio Transcription
# Audio Processing
sounddevice==0.5.3
soundfile==0.13.1
numpy==2.2.2
# Whisper (faster-whisper backend)
faster-whisper==1.2.1
ctranslate2==4.6.1
# PyTorch (CPU version - see README for GPU installation)
torch==2.8.0
# NOTE: For GPU support, uninstall torch first, then run ONE of these commands:
# pip install torch==2.8.0+cu118 --index-url https://download.pytorch.org/whl/cu118
# pip install torch==2.8.0+cu121 --index-url https://download.pytorch.org/whl/cu121
# LLM Analysis (optional - for fact-checking and question generation)
# Requires Ollama to be installed and running
# Install from: https://ollama.ai
ollama==0.6.1