UNPKG

embeddings-splitter

Version:

A typescript library to split your long texts into smaller chunks to send them to OpenAI Embeddings API

8 lines (7 loc) 214 B
/// <reference types="node" /> import crypto from 'node:crypto'; export declare class Uuid { v4(options?: crypto.RandomUUIDOptions | undefined): string; } declare const _default: Uuid; export default _default;