(value: unknown)
| 79 | |
| 80 | /** Estimate tokens for any JSON-serializable value (used for tool_calls). */ |
| 81 | export function estimateTokensJson(value: unknown): number { |
| 82 | if (value === undefined || value === null) return 0; |
| 83 | return countTokensJson(value); |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Group messages into turns. A "turn" starts at each user message and includes the |
no test coverage detected