smartai/ts/plugins.ts

27 lines
425 B
TypeScript
Raw Normal View History

2024-03-31 00:32:37 +00:00
// node native
import * as path from 'path';
export {
path,
}
// @push.rocks scope
import * as qenv from '@push.rocks/qenv';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartfile from '@push.rocks/smartfile';
export {
qenv,
smartpath,
smartpromise,
smartfile,
}
// third party
import * as openai from 'openai';
export {
openai,
}