diff options
| author | Olcan <[email protected]> | 2025-04-21 23:25:10 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-21 23:25:10 -0700 |
| commit | a7fba66832e607255dbf35107d6aaa3a587507a3 (patch) | |
| tree | 0317cedd4cf3c39b8e0e49e697d6eec18494c24d /packages/cli/src/config/config.ts | |
| parent | 79710375e3477ec821aa889c02eb64f2529440af (diff) | |
env var to set default model, display model on lower right (#110)
Diffstat (limited to 'packages/cli/src/config/config.ts')
| -rw-r--r-- | packages/cli/src/config/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index a93c3445..42275834 100644 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -34,7 +34,7 @@ function parseArguments(): CliArgs { alias: 'm', type: 'string', description: `The Gemini model to use. Defaults to ${DEFAULT_GEMINI_MODEL}.`, - default: DEFAULT_GEMINI_MODEL, + default: process.env.GEMINI_CODE_MODEL || DEFAULT_GEMINI_MODEL, }) .option('debug_mode', { alias: 'z', |
