Files

12 lines
321 B
JavaScript
Raw Permalink Normal View History

2026-03-12 12:47:56 +08:00
/**
* Disclaimer: modules in _shims aren't intended to be imported by SDK users.
*/
import * as shims from './registry.mjs';
import * as auto from 'openai/_shims/auto/runtime';
export const init = () => {
if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
};
export * from './registry.mjs';
init();