mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
env var to set default model, display model on lower right (#110)
This commit is contained in:
parent
79710375e3
commit
a7fba66832
3 changed files with 6 additions and 2 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue