Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 31 32 33 | 6x 6x | /** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ type Model = string; type TokenCount = number; export const DEFAULT_TOKEN_LIMIT = 1_048_576; export function tokenLimit(model: Model): TokenCount { // Add other models as they become relevant or if specified by config // Pulled from https://ai.google.dev/gemini-api/docs/models switch (model) { case 'gemini-1.5-pro': return 2_097_152; case 'gemini-1.5-flash': case 'gemini-2.5-pro-preview-05-06': case 'gemini-2.5-pro-preview-06-05': case 'gemini-2.5-pro': case 'gemini-2.5-flash-preview-05-20': case 'gemini-2.5-flash': case 'gemini-2.5-flash-lite': case 'gemini-2.0-flash': return 1_048_576; case 'gemini-2.0-flash-preview-image-generation': return 32_000; default: return DEFAULT_TOKEN_LIMIT; } } |