cloudaxe-opencode/packages/opencode/src/util/token.ts

8 lines
178 B
TypeScript
Raw Normal View History

const CHARS_PER_TOKEN = 4
2025-09-12 09:59:53 +00:00
export function estimate(input: string) {
return Math.max(0, Math.round((input || "").length / CHARS_PER_TOKEN))
2025-09-12 09:59:53 +00:00
}
export * as Token from "./token"