diff options
| author | polwex <polwex@sortug.com> | 2025-11-23 01:12:53 +0700 |
|---|---|---|
| committer | polwex <polwex@sortug.com> | 2025-11-23 01:12:53 +0700 |
| commit | cb1b56f5a0eddbf77446f415f2beda57c8305f85 (patch) | |
| tree | d333ca5c143063af8ee1b2f9e2d1d25f8ef2007c /packages/ai/src/nlp/index.ts | |
wut
Diffstat (limited to 'packages/ai/src/nlp/index.ts')
| -rw-r--r-- | packages/ai/src/nlp/index.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/ai/src/nlp/index.ts b/packages/ai/src/nlp/index.ts new file mode 100644 index 0000000..ebed586 --- /dev/null +++ b/packages/ai/src/nlp/index.ts @@ -0,0 +1,7 @@ +import * as Spacy from "./spacy"; +import * as Stanza from "./stanza"; +import * as ISO from "./iso"; +import { ocr } from "./ocr"; +import type * as Types from "./types"; +export * from "./nlp"; +export { ISO, ocr, Stanza, Spacy, type Types }; |
