とりあえず gemini-2.5-flash-lite にある程度限定させる設定
Last active
April 19, 2026 07:17
-
-
Save tomoh1r/adab46d51665a85a1d506d9b19f59abe to your computer and use it in GitHub Desktop.
$HOME\.gemini\settings.json control model name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "browser": { | |
| "browserName": "chromium", | |
| "launchOptions": { | |
| "channel": "msedge", | |
| "args": ["--window-size=1280,768"], | |
| "headless": false, | |
| "ignoreDefaultArgs": ["--disable-extensions"] | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "modelConfigs": { | |
| "aliases": { | |
| "chat-base-2.5": { | |
| "extends": "chat-base", | |
| "modelConfig": { | |
| "generateContentConfig": { | |
| "thinkingConfig": { | |
| "includeThoughts": false, | |
| "thinkingBudget": 0 | |
| } | |
| } | |
| } | |
| }, | |
| "web-search": { | |
| "extends": "gemini-2.5-flash-lite" | |
| }, | |
| "web-fetch": { | |
| "extends": "gemini-2.5-flash-lite" | |
| }, | |
| "web-fetch-fallback": { | |
| "extends": "gemini-2.5-flash" | |
| }, | |
| "loop-detection": { | |
| "extends": "gemini-2.5-flash-lite" | |
| }, | |
| "loop-detection-double-check": { | |
| "extends": "gemini-2.5-flash" | |
| }, | |
| "llm-edit-fixer": { | |
| "extends": "gemini-2.5-flash-lite" | |
| }, | |
| "next-speaker-checker": { | |
| "extends": "gemini-2.5-flash-lite" | |
| }, | |
| "chat-compression-default": { | |
| "extends": "gemini-2.5-flash" | |
| }, | |
| "agent-history-provider-summarizer": { | |
| "extends": "gemini-2.5-flash-lite" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment