From 715fce6fbd89e7151a01ee75536358d917802fbb Mon Sep 17 00:00:00 2001 From: Floke Date: Mon, 4 Aug 2025 08:18:45 +0000 Subject: [PATCH] brancheneinstufung2.py aktualisiert --- brancheneinstufung2.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/brancheneinstufung2.py b/brancheneinstufung2.py index aa55c960..aa74a5ad 100644 --- a/brancheneinstufung2.py +++ b/brancheneinstufung2.py @@ -55,7 +55,7 @@ def main(): "Batch-Verarbeitung": ["wiki_verify", "website_scraping", "summarize_website", "branch_eval", "suggest_parents", "fsm_pitch"], "Sequentielle Verarbeitung": ["full_run"], "Re-Evaluation": ["reeval"], - "Dienstprogramme": ["find_wiki_serp", "check_urls", "contacts", ...], + "Dienstprogramme": ["find_wiki_serp", "check_urls", "contacts", "update_wiki_suggestions", "wiki_reextract_missing_an", "website_details", "train_technician_model", "predict_technicians", "alignment", "reparatur_sitz", "plausi_check_data"], "Kombinierte Läufe": ["combined_all"], "Spezial-Modi": ["reclassify_branches"], # Neue Kategorie oder zu bestehender hinzufügen "Kombinierte Läufe": ["combined_all"] @@ -168,6 +168,11 @@ def main(): alignment_demo(sheet_handler) elif selected_mode == "train_technician_model": data_processor.train_technician_model() + elif selected_mode == "predict_technicians": + data_processor.process_predict_technicians( + start_sheet_row=args.start_sheet_row, + limit=args.limit + ) elif hasattr(data_processor, f"process_{selected_mode}"): # Dynamischer Aufruf für die meisten Batch-Modi method_to_call = getattr(data_processor, f"process_{selected_mode}")