| Date | Description | Whisper | CR | Diar. | Claims | Actions |
|---|
Commandes utiles pour reprendre les traitements longs sans doublonner les jobs.
Si ces commandes ne retournent rien, aucun traitement correspondant n'est en cours.
rtk proxy pgrep -fl speaker_id.py
rtk proxy pgrep -fl analyze_claims.py
Le script saute les séances déjà traitées. Évite --force sauf reprise volontaire.
rtk mkdir -p logs
rtk python3 speaker_id.py --all \
--root "/Volumes/Sauvegarde/Projets/Rebekka" \
2>&1 | rtk tee -a logs/diarization_manual.log
rtk tail -f logs/diarization_manual.log
rtk proxy pgrep -fl speaker_id.py
Utilise Anthropic si ANTHROPIC_API_KEY est disponible, ou Ollama en local.
rtk mkdir -p logs
rtk python3 analyze_claims.py --all \
--root "/Volumes/Sauvegarde/Projets/Rebekka" \
--backend claude \
2>&1 | rtk tee -a logs/claims_manual.log
rtk tail -f logs/claims_manual.log
rtk proxy pgrep -fl analyze_claims.py
Après diarization ou claims, reconstruis les JSON statiques consommés par ce dashboard.
rtk python3 build_static.py \
--root "/Volumes/Sauvegarde/Projets/Rebekka" \
--out web/static/data
Ordre de reprise : vérifier les processus, relancer seulement l'étape manquante, suivre le log, reconstruire les données statiques.
Pas de dynamique : cette séance n'a pas encore été diarisée.