UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

7 lines (6 loc) 164 B
/** * Count the number of tokens in the given text. */ export async function countTokens(tokenizer, text) { return (await tokenizer.tokenize(text)).length; }