UNPKG

ai-utils.js

Version:

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

11 lines (10 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.countTokens = void 0; /** * Count the number of tokens in the given text. */ async function countTokens(tokenizer, text) { return (await tokenizer.tokenize(text)).length; } exports.countTokens = countTokens;