This commit introduces the foundational elements for the new "Company Explorer" web application, marking a significant step away from the legacy Google Sheets / CLI system. Key changes include: - Project Structure: A new directory with separate (FastAPI) and (React/Vite) components. - Data Persistence: Migration from Google Sheets to a local SQLite database () using SQLAlchemy. - Core Utilities: Extraction and cleanup of essential helper functions (LLM wrappers, text utilities) into . - Backend Services: , , for AI-powered analysis, and logic. - Frontend UI: Basic React application with company table, import wizard, and dynamic inspector sidebar. - Docker Integration: Updated and for multi-stage builds and sideloading. - Deployment & Access: Integrated into central Nginx proxy and dashboard, accessible via . Lessons Learned & Fixed during development: - Frontend Asset Loading: Addressed issues with Vite's path and FastAPI's . - TypeScript Configuration: Added and . - Database Schema Evolution: Solved errors by forcing a new database file and correcting override. - Logging: Implemented robust file-based logging (). This new foundation provides a powerful and maintainable platform for future B2B robotics lead generation.
252 lines
13 KiB
Python
252 lines
13 KiB
Python
# contact_grouping.py
|
|
|
|
__version__ = "v1.2.3"
|
|
|
|
import logging
|
|
import json
|
|
import re
|
|
import os
|
|
import sys
|
|
import pandas as pd
|
|
from collections import defaultdict
|
|
|
|
from google_sheet_handler import GoogleSheetHandler
|
|
from helpers import create_log_filename, call_openai_chat
|
|
from config import Config
|
|
|
|
# --- Konfiguration ---
|
|
TARGET_SHEET_NAME = "Matching_Positions"
|
|
LEARNING_SOURCE_SHEET_NAME = "CRM_Jobtitles"
|
|
EXACT_MATCH_FILE = "exact_match_map.json"
|
|
KEYWORD_RULES_FILE = "keyword_rules.json"
|
|
DEFAULT_DEPARTMENT = "Undefined"
|
|
AI_BATCH_SIZE = 150
|
|
|
|
def setup_logging():
|
|
log_filename = create_log_filename("contact_grouping")
|
|
if not log_filename:
|
|
print("KRITISCHER FEHLER: Log-Datei konnte nicht erstellt werden. Logge nur in die Konsole.")
|
|
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s', handlers=[logging.StreamHandler()])
|
|
return
|
|
log_level = logging.DEBUG
|
|
root_logger = logging.getLogger()
|
|
if root_logger.handlers:
|
|
for handler in root_logger.handlers[:]:
|
|
root_logger.removeHandler(handler)
|
|
logging.basicConfig(level=log_level, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', handlers=[logging.FileHandler(log_filename, encoding='utf-8'), logging.StreamHandler()])
|
|
logging.getLogger("gspread").setLevel(logging.WARNING)
|
|
logging.getLogger("oauth2client").setLevel(logging.WARNING)
|
|
logging.info(f"Logging erfolgreich initialisiert. Log-Datei: {log_filename}")
|
|
|
|
class ContactGrouper:
|
|
def __init__(self):
|
|
self.logger = logging.getLogger(__name__ + ".ContactGrouper")
|
|
self.exact_match_map = None
|
|
self.keyword_rules = None
|
|
self.ai_example_prompt_part = ""
|
|
|
|
def load_knowledge_base(self):
|
|
self.logger.info("Lade Wissensbasis...")
|
|
self.exact_match_map = self._load_json(EXACT_MATCH_FILE)
|
|
self.keyword_rules = self._load_json(KEYWORD_RULES_FILE)
|
|
if self.exact_match_map is None or self.keyword_rules is None:
|
|
self.logger.critical("Fehler beim Laden der Wissensbasis. Abbruch.")
|
|
return False
|
|
self._generate_ai_examples()
|
|
self.logger.info("Wissensbasis erfolgreich geladen und KI-Beispiele generiert.")
|
|
return True
|
|
|
|
def _load_json(self, file_path):
|
|
if not os.path.exists(file_path):
|
|
self.logger.error(f"Wissensbasis-Datei '{file_path}' nicht gefunden.")
|
|
return None
|
|
try:
|
|
with open(file_path, 'r', encoding='utf-8') as f:
|
|
self.logger.debug(f"Lese und parse '{file_path}'...")
|
|
data = json.load(f)
|
|
self.logger.debug(f"'{file_path}' erfolgreich geparst.")
|
|
return data
|
|
except (json.JSONDecodeError, IOError) as e:
|
|
self.logger.error(f"Fehler beim Laden der Datei '{file_path}': {e}")
|
|
return None
|
|
|
|
def _normalize_text(self, text):
|
|
if not isinstance(text, str): return ""
|
|
return text.lower().strip()
|
|
|
|
def _generate_ai_examples(self):
|
|
self.logger.info("Generiere KI-Beispiele aus der Wissensbasis...")
|
|
if not self.exact_match_map:
|
|
return
|
|
titles_by_dept = defaultdict(list)
|
|
for title, dept in self.exact_match_map.items():
|
|
titles_by_dept[dept].append(title)
|
|
example_lines = []
|
|
sorted_depts = sorted(self.keyword_rules.keys(), key=lambda d: self.keyword_rules.get(d, {}).get('priority', 99))
|
|
for dept in sorted_depts:
|
|
if dept == DEFAULT_DEPARTMENT or not titles_by_dept[dept]:
|
|
continue
|
|
top_titles = sorted(titles_by_dept[dept], key=len)[:5]
|
|
# --- KORREKTUR: Die fehlerhafte Zeile wurde ersetzt ---
|
|
formatted_titles = ', '.join('"' + title + '"' for title in top_titles)
|
|
example_lines.append(f"- Für '{dept}': {formatted_titles}")
|
|
self.ai_example_prompt_part = "\n".join(example_lines)
|
|
self.logger.debug(f"Generierter Beispiel-Prompt:\n{self.ai_example_prompt_part}")
|
|
|
|
def _find_best_match(self, job_title, company_branch):
|
|
normalized_title = self._normalize_text(job_title)
|
|
normalized_branch = self._normalize_text(company_branch)
|
|
if not normalized_title: return DEFAULT_DEPARTMENT
|
|
|
|
exact_match = self.exact_match_map.get(normalized_title)
|
|
if exact_match:
|
|
rule = self.keyword_rules.get(exact_match, {})
|
|
required_keywords = rule.get("required_branch_keywords")
|
|
if required_keywords:
|
|
if not any(keyword in normalized_branch for keyword in required_keywords):
|
|
self.logger.debug(f"'{job_title}' -> Exakter Match '{exact_match}' verworfen (Branche: '{company_branch}')")
|
|
else:
|
|
self.logger.debug(f"'{job_title}' -> '{exact_match}' (Stufe 1, Branche OK)")
|
|
return exact_match
|
|
else:
|
|
self.logger.debug(f"'{job_title}' -> '{exact_match}' (Stufe 1)")
|
|
return exact_match
|
|
|
|
title_tokens = set(re.split(r'[\s/(),-]+', normalized_title))
|
|
scores = {}
|
|
for department, rules in self.keyword_rules.items():
|
|
required_keywords = rules.get("required_branch_keywords")
|
|
if required_keywords:
|
|
if not any(keyword in normalized_branch for keyword in required_keywords):
|
|
self.logger.debug(f"Dept '{department}' für '{job_title}' übersprungen (Branche: '{company_branch}')")
|
|
continue
|
|
matches = title_tokens.intersection(rules.get("keywords", []))
|
|
if matches: scores[department] = len(matches)
|
|
|
|
if not scores:
|
|
self.logger.debug(f"'{job_title}' -> '{DEFAULT_DEPARTMENT}' (Stufe 2: Keine passenden Keywords)")
|
|
return DEFAULT_DEPARTMENT
|
|
|
|
max_score = max(scores.values())
|
|
top_departments = [dept for dept, score in scores.items() if score == max_score]
|
|
|
|
if len(top_departments) == 1:
|
|
winner = top_departments[0]
|
|
self.logger.debug(f"'{job_title}' -> '{winner}' (Stufe 2: Score {max_score})")
|
|
return winner
|
|
|
|
best_priority = float('inf')
|
|
winner = top_departments[0]
|
|
for department in top_departments:
|
|
priority = self.keyword_rules.get(department, {}).get("priority", 99)
|
|
if priority < best_priority:
|
|
best_priority = priority
|
|
winner = department
|
|
|
|
self.logger.debug(f"'{job_title}' -> '{winner}' (Stufe 2: Score {max_score}, Prio {best_priority})")
|
|
return winner
|
|
|
|
def _get_ai_classification(self, contacts_to_classify):
|
|
self.logger.info(f"Sende {len(contacts_to_classify)} Titel an KI (mit Kontext)...")
|
|
if not contacts_to_classify: return {}
|
|
valid_departments = sorted([dept for dept in self.keyword_rules.keys() if dept != DEFAULT_DEPARTMENT])
|
|
prompt_parts = [
|
|
"You are a specialized data processing tool. Your SOLE function is to receive a list of job titles and classify each one into a predefined department category.",
|
|
"--- VALID DEPARTMENT CATEGORIES ---",
|
|
", ".join(valid_departments),
|
|
"\n--- EXAMPLES OF TYPICAL ROLES ---",
|
|
self.ai_example_prompt_part,
|
|
"\n--- RULES ---",
|
|
"1. You MUST use the 'company_branch' to make a context-aware decision.",
|
|
"2. For departments with branch requirements (like 'Baustofflogistik' for 'bau'), you MUST ONLY use them if the branch matches.",
|
|
"3. Your response MUST be a single, valid JSON array of objects.",
|
|
"4. Each object MUST contain the keys 'job_title' and 'department'.",
|
|
"5. Your entire response MUST start with '[' and end with ']'.",
|
|
"6. You MUST NOT add any introductory text, explanations, summaries, or markdown formatting like ```json.",
|
|
"\n--- CONTACTS TO CLASSIFY (JSON) ---",
|
|
json.dumps(contacts_to_classify, ensure_ascii=False)
|
|
]
|
|
prompt = "\n".join(prompt_parts)
|
|
response_str = ""
|
|
try:
|
|
response_str = call_openai_chat(prompt, temperature=0.0, model="gpt-4o-mini", response_format_json=True)
|
|
match = re.search(r'\[.*\]', response_str, re.DOTALL)
|
|
if not match:
|
|
self.logger.error("Kein JSON-Array in KI-Antwort gefunden.")
|
|
self.logger.debug(f"ROH-ANTWORT DER API:\n{response_str}")
|
|
return {}
|
|
json_str = match.group(0)
|
|
results_list = json.loads(json_str)
|
|
classified_map = {item['job_title']: item['department'] for item in results_list if item.get('department') in valid_departments}
|
|
self.logger.info(f"{len(classified_map)} Titel erfolgreich von KI klassifiziert.")
|
|
return classified_map
|
|
except json.JSONDecodeError as e:
|
|
self.logger.error(f"Fehler beim Parsen des extrahierten JSON: {e}")
|
|
self.logger.debug(f"EXTRAHIERTER JSON-STRING, DER FEHLER VERURSACHTE:\n{json_str}")
|
|
return {}
|
|
except Exception as e:
|
|
self.logger.error(f"Unerwarteter Fehler bei KI-Klassifizierung: {e}")
|
|
return {}
|
|
|
|
def _append_learnings_to_source(self, gsh, new_mappings_df):
|
|
if new_mappings_df.empty: return
|
|
self.logger.info(f"Lern-Mechanismus: Hänge {len(new_mappings_df)} neue KI-Erkenntnisse an '{LEARNING_SOURCE_SHEET_NAME}' an...")
|
|
rows_to_append = new_mappings_df[["Job Title", "Department"]].values.tolist()
|
|
if not gsh.append_rows(LEARNING_SOURCE_SHEET_NAME, rows_to_append):
|
|
self.logger.error("Fehler beim Anhängen der Lern-Daten.")
|
|
|
|
def process_contacts(self):
|
|
self.logger.info("Starte Kontakt-Verarbeitung...")
|
|
gsh = GoogleSheetHandler()
|
|
df = gsh.get_sheet_as_dataframe(TARGET_SHEET_NAME)
|
|
if df is None or df.empty:
|
|
self.logger.warning(f"'{TARGET_SHEET_NAME}' ist leer. Nichts zu tun.")
|
|
return
|
|
self.logger.info(f"{len(df)} Zeilen aus '{TARGET_SHEET_NAME}' geladen.")
|
|
df.columns = [col.strip() for col in df.columns]
|
|
if "Job Title" not in df.columns or "Branche" not in df.columns:
|
|
self.logger.critical(f"Benötigte Spalten 'Job Title' und/oder 'Branche' nicht gefunden. Abbruch.")
|
|
return
|
|
df['Original Job Title'] = df['Job Title']
|
|
if "Department" not in df.columns: df["Department"] = ""
|
|
self.logger.info("Starte regelbasierte Zuordnung (Stufe 1 & 2) mit Branchen-Kontext...")
|
|
df['Department'] = df.apply(lambda row: self._find_best_match(row['Job Title'], row.get('Branche', '')), axis=1)
|
|
self.logger.info("Regelbasierte Zuordnung abgeschlossen.")
|
|
undefined_df = df[df['Department'] == DEFAULT_DEPARTMENT]
|
|
if not undefined_df.empty:
|
|
self.logger.info(f"{len(undefined_df)} Jobtitel konnten nicht zugeordnet werden. Starte Stufe 3 (KI).")
|
|
contacts_to_classify = undefined_df[['Job Title', 'Branche']].drop_duplicates().to_dict('records')
|
|
contacts_to_classify = [{'job_title': c['Job Title'], 'company_branch': c.get('Branche', '')} for c in contacts_to_classify]
|
|
ai_results_map = {}
|
|
contact_chunks = [contacts_to_classify[i:i + AI_BATCH_SIZE] for i in range(0, len(contacts_to_classify), AI_BATCH_SIZE)]
|
|
self.logger.info(f"Teile KI-Anfrage in {len(contact_chunks)} Batches von max. {AI_BATCH_SIZE} Kontakten auf.")
|
|
for i, chunk in enumerate(contact_chunks):
|
|
self.logger.info(f"Verarbeite KI-Batch {i+1}/{len(contact_chunks)}...")
|
|
chunk_results = self._get_ai_classification(chunk)
|
|
ai_results_map.update(chunk_results)
|
|
df['Department'] = df.apply(lambda row: ai_results_map.get(row['Job Title'], row['Department']) if row['Department'] == DEFAULT_DEPARTMENT else row['Department'], axis=1)
|
|
new_learnings = [{'Job Title': title, 'Department': dept} for title, dept in ai_results_map.items()]
|
|
if new_learnings:
|
|
self._append_learnings_to_source(gsh, pd.DataFrame(new_learnings))
|
|
else:
|
|
self.logger.info("Alle Jobtitel durch Regeln zugeordnet. Stufe 3 wird übersprungen.")
|
|
self.logger.info("--- Zuordnungs-Statistik ---")
|
|
stats = df['Department'].value_counts()
|
|
for department, count in stats.items(): self.logger.info(f"- {department}: {count} Zuordnungen")
|
|
self.logger.info(f"GESAMT: {len(df)} Jobtitel verarbeitet.")
|
|
output_df = df.drop(columns=['Original Job Title'])
|
|
output_data = [output_df.columns.values.tolist()] + output_df.values.tolist()
|
|
if gsh.clear_and_write_data(TARGET_SHEET_NAME, output_data):
|
|
self.logger.info(f"Ergebnisse erfolgreich in '{TARGET_SHEET_NAME}' geschrieben.")
|
|
else:
|
|
self.logger.error("Fehler beim Zurückschreiben der Daten.")
|
|
|
|
if __name__ == "__main__":
|
|
setup_logging()
|
|
logging.info(f"Starte contact_grouping.py v{__version__}")
|
|
Config.load_api_keys()
|
|
grouper = ContactGrouper()
|
|
if not grouper.load_knowledge_base():
|
|
logging.critical("Skript-Abbruch: Wissensbasis nicht geladen.")
|
|
sys.exit(1)
|
|
grouper.process_contacts() |