opencode/packages/core/src/util/token.ts
2026-06-05 13:17:23 -04:00

5 lines
160 B
TypeScript

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