feat(agent): add navigation url restrictions

This commit is contained in:
Cynthia Long
2026-03-09 17:57:32 +00:00
parent 743d05b37f
commit 1608302fa3
8 changed files with 221 additions and 3 deletions
+10
View File
@@ -1170,6 +1170,16 @@
"description": "Model override for the visual agent.",
"markdownDescription": "Model override for the visual agent.\n\n- Category: `Advanced`\n- Requires restart: `yes`",
"type": "string"
},
"allowedDomains": {
"title": "Allowed Domains",
"description": "A list of allowed domains for the browser agent (e.g., [\"github.com\", \"*.google.com\"]).",
"markdownDescription": "A list of allowed domains for the browser agent (e.g., [\"github.com\", \"*.google.com\"]).\n\n- Category: `Advanced`\n- Requires restart: `yes`\n- Default: `[\n \"github.com\",\n \"*.google.com\"\n]`",
"default": ["github.com", "*.google.com"],
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false