Files
Kilo-Org_kilocode/packages/opencode/src/util/token.ts
T

6 lines
144 B
TypeScript

const CHARS_PER_TOKEN = 4
export function estimate(input: string) {
return Math.max(0, Math.round((input || "").length / CHARS_PER_TOKEN))
}