File size: 269 Bytes
d47b053 | 1 2 3 4 5 6 7 8 | /** Always returns { max_completion_tokens: thinkingTokens + outputTokens } */
export function buildTokenParams(
thinkingTokens: number,
outputTokens: number
): { max_completion_tokens: number } {
return { max_completion_tokens: thinkingTokens + outputTokens }
}
|