Files
zmo-cli/packages/opencode/src/util/token.ts
2026-04-27 14:33:33 -04:00

8 lines
178 B
TypeScript

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