Files
tf_code/packages/opencode/src/util/token.ts
2025-09-12 06:01:11 -04:00

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))
}
}