mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-25 12:34:38 -07:00
Fix exp id logging (#13430)
This commit is contained in:
@@ -689,6 +689,17 @@ export class Config {
|
||||
this.inFallbackMode = false;
|
||||
}
|
||||
|
||||
async getExperimentsAsync(): Promise<Experiments | undefined> {
|
||||
if (this.experiments) {
|
||||
return this.experiments;
|
||||
}
|
||||
const codeAssistServer = getCodeAssistServer(this);
|
||||
if (codeAssistServer) {
|
||||
return getExperiments(codeAssistServer);
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
getUserTier(): UserTierId | undefined {
|
||||
return this.contentGenerator?.userTier;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user