/** * Escape hatch entry point. Re-exports the internal engine — `LLMServiceFactory`, * the provider services, and the model maps — for the rare call site that needs * raw control the v2 client does not expose. Discouraged: prefer `createLLMClient` * + the typed registry. This surface bypasses prompt management, the validation * gate, and config-in-prompt routing. */ export { LLMServiceFactory } from './LLMService.factory'; export { LLM_SERVICE_FACTORIES, LLM_SERVICE_MODELS, } from './LLMService.constants'; export * from './providers'; export * from './services';