File size: 652 Bytes
9332ccf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { tokenLimit } from '@google/gemini-cli-core';
export function getContextUsagePercentage(
promptTokenCount: number,
model: string | undefined,
): number {
if (!model || typeof model !== 'string' || model.length === 0) {
return 0;
}
const limit = tokenLimit(model);
if (limit <= 0) {
return 0;
}
return promptTokenCount / limit;
}
export function isContextUsageHigh(
promptTokenCount: number,
model: string | undefined,
threshold = 0.6,
): boolean {
return getContextUsagePercentage(promptTokenCount, model) > threshold;
}
|