[30388f42] Infrastructure Hardening: Repaired CE/Connector DB schema, fixed frontend styling build, implemented robust echo shield in worker v2.1.1, and integrated Lead Engine into gateway.
This commit is contained in:
41
company-explorer/backend/scripts/test_opener_generation.py
Normal file
41
company-explorer/backend/scripts/test_opener_generation.py
Normal file
@@ -0,0 +1,41 @@
|
||||
import sys
|
||||
import os
|
||||
import logging
|
||||
|
||||
# Add backend path
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), "../../"))
|
||||
|
||||
# Mock logging
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
# Import Service
|
||||
from backend.services.classification import ClassificationService
|
||||
|
||||
def test_opener_generation():
|
||||
service = ClassificationService()
|
||||
|
||||
print("\n--- TEST: Therme Erding (Primary Focus: Hygiene) ---")
|
||||
op_prim = service._generate_marketing_opener(
|
||||
company_name="Therme Erding",
|
||||
website_text="Größte Therme der Welt, 35 Saunen, Rutschenparadies Galaxy, Wellenbad. Täglich tausende Besucher.",
|
||||
industry_name="Leisure - Wet & Spa",
|
||||
industry_pains="Rutschgefahr und Hygiene",
|
||||
focus_mode="primary"
|
||||
)
|
||||
print(f"Primary Opener: {op_prim}")
|
||||
|
||||
print("\n--- TEST: Dachser Logistik (Secondary Focus: Process) ---")
|
||||
op_sec = service._generate_marketing_opener(
|
||||
company_name="Dachser SE",
|
||||
website_text="Globaler Logistikdienstleister, Warehousing, Food Logistics, Air & Sea Logistics. Intelligent Logistics.",
|
||||
industry_name="Logistics - Warehouse",
|
||||
industry_pains="Effizienz und Sicherheit",
|
||||
focus_mode="secondary"
|
||||
)
|
||||
print(f"Secondary Opener: {op_sec}")
|
||||
|
||||
if __name__ == "__main__":
|
||||
try:
|
||||
test_opener_generation()
|
||||
except Exception as e:
|
||||
print(f"Test Failed (likely due to missing env/deps): {e}")
|
||||
Reference in New Issue
Block a user