UNPKG

ai-meter

Version:

A javascript library designed to estimate AI models tokens and its API costs.

7 lines 189 B
export type Provider = { calculateTokens(model: string, text: string): number; }; export type CalculatedTokensResponse = { tokens: number; }; //# sourceMappingURL=tokenizer.d.ts.map