token.ts 179 B

1234567
  1. export namespace Token {
  2. const CHARS_PER_TOKEN = 4
  3. export function estimate(input: string) {
  4. return Math.max(0, Math.round((input || "").length / CHARS_PER_TOKEN))
  5. }
  6. }