LXC-Frontend (FastAPI + HTML/JS): - Audio-Upload (MP3/WAV/M4A/MP4/OGG/FLAC, max. 500 MB) - SQLite Job-Store, BackgroundTask-Pipeline - Job-Liste mit Live-Status, Downloads (DOCX + JSON) - Mac-Health-Indicator im UI Mac-Worker (FastAPI): - /api/transcribe (lightning-whisper-mlx | faster-whisper | mock) - /api/summarize + /api/protocol via Ollama (llama3.1:8b) - /api/export/docx via python-docx Deploy: - systemd-Service, Nginx Reverse-Proxy - deploy/install.sh: idempotentes LXC-Setup Doku: README.md, lxc-frontend/README.md, mac-worker/README.md
18 lines
415 B
Plaintext
18 lines
415 B
Plaintext
# Mac-Worker Konfiguration
|
|
APP_HOST=0.0.0.0
|
|
APP_PORT=8080
|
|
|
|
# Whisper-Engine: "mlx" (Apple Silicon), "faster" (CPU/CUDA), oder "mock" (Testbetrieb)
|
|
WHISPER_ENGINE=mlx
|
|
WHISPER_MODEL=large-v3
|
|
WHISPER_BATCH_SIZE=12
|
|
WHISPER_LANGUAGE=de
|
|
|
|
# Ollama (lokal auf dem Mac)
|
|
OLLAMA_URL=http://127.0.0.1:11434
|
|
OLLAMA_MODEL=llama3.1:8b
|
|
OLLAMA_TIMEOUT=600
|
|
|
|
# Arbeitsverzeichnis für temporäre Dateien
|
|
WORK_DIR=/tmp/voice-agent-mac
|