Files
cdsl-cad/backend/engine/cdsl_engine/llm_engine.py
T
ganjihong 95cae203f4 refactor(cdsl_engine): freeze legacy engine paths under legacy/
Phase 7 of the decoupling refactor (behavior-preserving move):
- legacy/llm_compiler.py, legacy/llm_engine.py: frozen build_pack path
  (unused by run_cdsl_only), moved with git mv for history
- legacy/exact_rebuild.py: _run_parameterized / _run_exact /
  _apply_geometric_compensations moved out of rebuild.py, including
  the part-specific compensation table
- rebuild.py keeps run_rebuild / run_cdsl_only / compare_with_gold and
  imports the moved functions
- llm_compiler.py / llm_engine.py become compatibility shims

Frozen zone: new capability belongs in executors/ + schema contracts.
The project-specific compensation no longer sits in the main pipeline.
2026-09-09 14:02:53 +08:00

13 lines
446 B
Python

"""Compatibility shim: the implementation moved to ``legacy.llm_engine``.
``run_engine_plan`` executes a legacy ``build_pack`` through build123d.
It predates the session-based runtime and is frozen; new capability belongs
in ``executors/`` and the schema contracts.
"""
from __future__ import annotations
from .legacy.llm_engine import SUPPORTED_ATOMIC_IDS, main, run_engine_plan
__all__ = ["SUPPORTED_ATOMIC_IDS", "main", "run_engine_plan"]