diff options
| author | Allen Hutchison <[email protected]> | 2025-05-16 16:36:50 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-16 16:36:50 -0700 |
| commit | 1bdec55fe1c658069a45df0aa8e4923ba1954e41 (patch) | |
| tree | 32aa334cb0590f06830f52ed7c0d84e2d4ed7db3 /packages/cli/src/config/config.ts | |
| parent | d9bd2b0e144560c8a82806bfb021a028c7cd43c9 (diff) | |
feat: Implement CLI and model memory management (#371)
Co-authored-by: N. Taylor Mullen <[email protected]>
Diffstat (limited to 'packages/cli/src/config/config.ts')
| -rw-r--r-- | packages/cli/src/config/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index c0ec38af..9f03bee4 100644 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -15,6 +15,8 @@ import { Config, loadEnvironment, createServerConfig, + GEMINI_CONFIG_DIR, + GEMINI_MD_FILENAME, } from '@gemini-code/server'; import { Settings } from './settings.js'; import { readPackageUp } from 'read-package-up'; @@ -30,8 +32,6 @@ const logger = { }; const DEFAULT_GEMINI_MODEL = 'gemini-2.5-pro-preview-05-06'; -const GEMINI_MD_FILENAME = 'GEMINI.md'; -const GEMINI_CONFIG_DIR = '.gemini'; // TODO(adh): Refactor to use a shared ignore list with other tools like glob and read-many-files. const DEFAULT_IGNORE_DIRECTORIES = [ 'node_modules', |
