Files
verbatim-dicta/RUN_DUTCH_LLM.sh
2025-12-17 22:11:08 +01:00

23 lines
639 B
Bash
Executable File

#!/bin/bash
# Dutch transcription with GPU, sentence extraction, and LLM analysis
cd "$(dirname "$0")"
export LD_LIBRARY_PATH=".venv/lib/python3.13/site-packages/nvidia/cudnn/lib:.venv/lib/python3.13/site-packages/nvidia/cublas/lib:${LD_LIBRARY_PATH}"
echo "Starting Dutch transcription with LLM analysis..."
echo "Using model: llama3.2:latest"
echo "Speak in Dutch into your microphone"
echo "Press Ctrl+C to stop"
echo ""
.venv/bin/python3 transcribe_speakers.py \
--sentence-mode \
--language nl \
--model large \
--interval 5 \
--min-duration 2 \
--enable-llm \
--llm-model "llama3.2:latest" \
"$@"