smartai/ts/plugins.ts

33 lines
622 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';
2024-04-25 08:49:07 +00:00
import * as smartexpose from '@push.rocks/smartexpose';
2024-03-31 00:32:37 +00:00
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartfile from '@push.rocks/smartfile';
2024-04-25 08:49:07 +00:00
import * as webstream from '@push.rocks/webstream';
2024-03-31 00:32:37 +00:00
export {
qenv,
2024-04-25 08:49:07 +00:00
smartexpose,
2024-03-31 00:32:37 +00:00
smartpath,
smartpromise,
smartfile,
2024-04-25 08:49:07 +00:00
webstream,
2024-03-31 00:32:37 +00:00
}
// third party
2024-04-04 00:47:44 +00:00
import * as anthropic from '@anthropic-ai/sdk';
2024-03-31 00:32:37 +00:00
import * as openai from 'openai';
export {
2024-04-04 00:47:44 +00:00
anthropic,
2024-03-31 00:32:37 +00:00
openai,
}