"""Legacy path deprecation tracking and cleanup management. Tracks deprecated components (VLLMClient, v2 prompts, provider branching), validates that all consumers have migrated, and provides safe removal gating. Removal only proceeds after all downstream consumers read v3. """ from services.intelligence_pipeline_v3.deprecation.tracker import ( DeprecationEntry, DeprecationStatus, DeprecationTracker, MigrationReport, ) __all__ = [ "DeprecationEntry", "DeprecationStatus", "DeprecationTracker", "MigrationReport", ]