mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-06 15:14:37 +00:00
5 lines
145 B
TypeScript
5 lines
145 B
TypeScript
export const CHARS_PER_TOKEN = 4
|
|
|
|
export function estimateTokensFromChars(chars: number): number {
|
|
return Math.ceil(chars / CHARS_PER_TOKEN)
|
|
}
|