chore: regenerate settings schema and documentation

This commit is contained in:
Sehoon Shon
2026-03-30 17:40:16 -04:00
parent f8f35ba86f
commit 96d2c3f861
2 changed files with 47 additions and 26 deletions
+15 -8
View File
@@ -448,16 +448,23 @@ their corresponding top-level category object in your `settings.json` file.
}
}
},
"chat-base": {
"chat-base-no-thinking": {
"extends": "base",
"modelConfig": {
"generateContentConfig": {
"temperature": 1,
"topP": 0.95,
"topK": 64
}
}
},
"chat-base": {
"extends": "chat-base-no-thinking",
"modelConfig": {
"generateContentConfig": {
"thinkingConfig": {
"includeThoughts": true
},
"temperature": 1,
"topP": 0.95,
"topK": 64
}
}
}
},
@@ -488,7 +495,7 @@ their corresponding top-level category object in your `settings.json` file.
}
},
"gemini-3-flash-preview": {
"extends": "chat-base-3",
"extends": "chat-base-no-thinking",
"modelConfig": {
"model": "gemini-3-flash-preview"
}
@@ -500,13 +507,13 @@ their corresponding top-level category object in your `settings.json` file.
}
},
"gemini-2.5-flash": {
"extends": "chat-base-2.5",
"extends": "chat-base-no-thinking",
"modelConfig": {
"model": "gemini-2.5-flash"
}
},
"gemini-2.5-flash-lite": {
"extends": "chat-base-2.5",
"extends": "chat-base-no-thinking",
"modelConfig": {
"model": "gemini-2.5-flash-lite"
}
File diff suppressed because one or more lines are too long