mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 14:22:27 +00:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
export namespace Token {
|
|
const CHARS_PER_TOKEN = 4
|
|
|
|
export function estimate(input: string) {
|
|
return Math.max(0, Math.round((input || "").length / CHARS_PER_TOKEN))
|
|
}
|
|
}
|