mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 14:10:37 -07:00
feat(browser): implement experimental browser agent (#19284)
This commit is contained in:
@@ -1093,6 +1093,43 @@
|
||||
"additionalProperties": {
|
||||
"$ref": "#/$defs/AgentOverride"
|
||||
}
|
||||
},
|
||||
"browser": {
|
||||
"title": "Browser Agent",
|
||||
"description": "Settings specific to the browser agent.",
|
||||
"markdownDescription": "Settings specific to the browser agent.\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `{}`",
|
||||
"default": {},
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionMode": {
|
||||
"title": "Browser Session Mode",
|
||||
"description": "Session mode: 'persistent', 'isolated', or 'existing'.",
|
||||
"markdownDescription": "Session mode: 'persistent', 'isolated', or 'existing'.\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `persistent`",
|
||||
"default": "persistent",
|
||||
"type": "string",
|
||||
"enum": ["persistent", "isolated", "existing"]
|
||||
},
|
||||
"headless": {
|
||||
"title": "Browser Headless",
|
||||
"description": "Run browser in headless mode.",
|
||||
"markdownDescription": "Run browser in headless mode.\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `false`",
|
||||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"profilePath": {
|
||||
"title": "Browser Profile Path",
|
||||
"description": "Path to browser profile directory for session persistence.",
|
||||
"markdownDescription": "Path to browser profile directory for session persistence.\n\n- Category: `Advanced`\n- Requires restart: `yes`",
|
||||
"type": "string"
|
||||
},
|
||||
"visualModel": {
|
||||
"title": "Browser Visual Model",
|
||||
"description": "Model override for the visual agent.",
|
||||
"markdownDescription": "Model override for the visual agent.\n\n- Category: `Advanced`\n- Requires restart: `yes`",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
||||
Reference in New Issue
Block a user