The MODEL_CHAIN is defined separately in config.ts, model.ts, and seedling.ts. This violates DRY and risks different components using different model fallback orders. Centralize the model chain in a single module (e.g., model.ts) and have all other files import it. Remove local definitions in config.ts and seedling.ts.