| 1234567891011121314151617 |
- /**
- * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
- */
- const shims = require('./registry');
- const auto = require('openai/_shims/auto/runtime');
- exports.init = () => {
- if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
- };
- for (const property of Object.keys(shims)) {
- Object.defineProperty(exports, property, {
- get() {
- return shims[property];
- },
- });
- }
- exports.init();
|