@devexcelsior/healing-inference-adapter
Version:
Standard interface for AI fallback logic in resilient UI systems.
13 lines (12 loc) • 608 B
JavaScript
;
// © 2025 DevExcelsior – Commercial use prohibited. License required.
// Contact: curtnpuckett@gmail.com
Object.defineProperty(exports, "__esModule", { value: true });
exports.healingFallbackAdapter = healingFallbackAdapter;
async function healingFallbackAdapter(signal) {
throw new Error('[DevExcelsior] This AI fallback adapter is protected by commercial licensing.\n' +
'It defines the interface for LLM-assisted healing workflows.\n\n' +
'Use without license is prohibited.\n' +
'Contact: curtnpuckett@gmail.com');
}
exports.default = healingFallbackAdapter;