summaryrefslogtreecommitdiff
path: root/packages/server/src
diff options
context:
space:
mode:
authorJacob Richman <[email protected]>2025-05-30 22:18:01 +0000
committerGitHub <[email protected]>2025-05-30 15:18:01 -0700
commit01768d7759b81a0f1483c751206f6afcae6fc505 (patch)
treebefda8dfe9807bfee805e291fa203cfe8dfefe29 /packages/server/src
parent3291ffbe099f2fdc8f88a0c1bb06fb43b65326a9 (diff)
feat: add --show_memory_usage flag to display memory usage in status bar (#606)
Diffstat (limited to 'packages/server/src')
-rw-r--r--packages/server/src/config/config.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/server/src/config/config.ts b/packages/server/src/config/config.ts
index fd9ed954..9c03a5c1 100644
--- a/packages/server/src/config/config.ts
+++ b/packages/server/src/config/config.ts
@@ -54,6 +54,7 @@ export interface ConfigParameters {
geminiMdFileCount?: number;
alwaysSkipModificationConfirmation?: boolean;
vertexai?: boolean;
+ showMemoryUsage?: boolean;
}
export class Config {
@@ -75,6 +76,7 @@ export class Config {
private geminiMdFileCount: number;
private alwaysSkipModificationConfirmation: boolean;
private readonly vertexai: boolean | undefined;
+ private readonly showMemoryUsage: boolean;
constructor(params: ConfigParameters) {
this.apiKey = params.apiKey;
@@ -95,6 +97,7 @@ export class Config {
this.alwaysSkipModificationConfirmation =
params.alwaysSkipModificationConfirmation ?? false;
this.vertexai = params.vertexai;
+ this.showMemoryUsage = params.showMemoryUsage ?? false;
this.toolRegistry = createToolRegistry(this);
}
@@ -181,6 +184,10 @@ export class Config {
getVertexAI(): boolean | undefined {
return this.vertexai;
}
+
+ getShowMemoryUsage(): boolean {
+ return this.showMemoryUsage;
+ }
}
function findEnvFile(startDir: string): string | null {