mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-18 18:11:02 -07:00
Add experiment logging and add caching experiment (#12862)
This commit is contained in:
14
packages/core/src/code_assist/experiments/flagNames.ts
Normal file
14
packages/core/src/code_assist/experiments/flagNames.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2025 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
export const ExperimentFlags = {
|
||||
CONTEXT_COMPRESSION_THRESHOLD:
|
||||
'GeminiCLIContextCompression__threshold_fraction',
|
||||
USER_CACHING: 'GcliUserCaching__user_caching',
|
||||
} as const;
|
||||
|
||||
export type ExperimentFlagName =
|
||||
(typeof ExperimentFlags)[keyof typeof ExperimentFlags];
|
||||
Reference in New Issue
Block a user