smartai/ts/plugins.ts

37 lines
755 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-27 10:47:49 +00:00
import * as smartarray from '@push.rocks/smartarray';
import * as smartfile from '@push.rocks/smartfile';
2024-03-31 00:32:37 +00:00
import * as smartpath from '@push.rocks/smartpath';
2024-04-27 10:47:49 +00:00
import * as smartpdf from '@push.rocks/smartpdf';
2024-03-31 00:32:37 +00:00
import * as smartpromise from '@push.rocks/smartpromise';
2024-04-27 10:47:49 +00:00
import * as smartrequest from '@push.rocks/smartrequest';
2024-04-25 08:49:07 +00:00
import * as webstream from '@push.rocks/webstream';
2024-03-31 00:32:37 +00:00
export {
2024-04-27 10:47:49 +00:00
smartarray,
2024-03-31 00:32:37 +00:00
qenv,
2024-04-27 10:47:49 +00:00
smartfile,
2024-03-31 00:32:37 +00:00
smartpath,
2024-04-27 10:47:49 +00:00
smartpdf,
2024-03-31 00:32:37 +00:00
smartpromise,
2024-04-27 10:47:49 +00:00
smartrequest,
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,
}