Update redunant description

This commit is contained in:
davidapierce
2026-05-12 22:48:17 +00:00
parent 67c3255e70
commit 433d5eae65
4 changed files with 9 additions and 8 deletions

View File

@@ -886,7 +886,6 @@ their corresponding top-level category object in your `settings.json` file.
"tier": "auto",
"isPreview": true,
"isVisible": true,
"dialogDescription": "Let Gemini CLI decide the best model for the task.",
"features": {
"thinking": true,
"multimodalToolUse": false

View File

@@ -3471,7 +3471,11 @@ export const SETTINGS_SCHEMA_DEFINITIONS: Record<
family: { type: 'string' },
isPreview: { type: 'boolean' },
isVisible: { type: 'boolean' },
dialogDescription: { type: 'string' },
dialogDescription: {
type: 'string',
description:
"A description of the model to display in the model selection dialog. For the 'auto' alias, this value is dynamically generated and any value provided here will be ignored.",
},
features: {
type: 'object',
properties: {

View File

@@ -366,7 +366,6 @@ export const DEFAULT_MODEL_CONFIGS: ModelConfigServiceConfig = {
tier: 'auto',
isPreview: true,
isVisible: true,
dialogDescription: 'Let Gemini CLI decide the best model for the task.',
features: { thinking: true, multimodalToolUse: false },
},
pro: {

File diff suppressed because one or more lines are too long