Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | export const PHASE_COLORS = { extracting_web: 'bg-sky-600', extracting_ocr: 'bg-sky-500', downloading_file: 'bg-sky-400', synthesizing: 'bg-violet-500', routing_facts: 'bg-amber-500', evaluating_page: 'bg-emerald-500', triggering_synthesis:'bg-violet-400', }; export const PHASE_LABELS = { extracting_web: 'Extraction Web', extracting_ocr: 'Extraction PDF', downloading_file: 'Téléchargement', synthesizing: 'Synthèse LLM', routing_facts: 'Routage KB', evaluating_page: 'Évaluation page', triggering_synthesis:'Déclenchement synthèse', }; |