feat(config): add experimental.adk.agentSessionNoninteractiveEnabled setting (#24439)

This commit is contained in:
Adam Weidman
2026-04-01 16:41:38 -04:00
committed by GitHub
parent d00b43733c
commit b5f568fefe
7 changed files with 107 additions and 0 deletions
+20
View File
@@ -1933,6 +1933,26 @@ const SETTINGS_SCHEMA = {
description: 'Setting to enable experimental features',
showInDialog: false,
properties: {
adk: {
type: 'object',
label: 'ADK',
category: 'Experimental',
requiresRestart: true,
default: {},
description: 'Settings for the Agent Development Kit (ADK).',
showInDialog: false,
properties: {
agentSessionNoninteractiveEnabled: {
type: 'boolean',
label: 'Agent Session Non-interactive Enabled',
category: 'Experimental',
requiresRestart: true,
default: false,
description: 'Enable non-interactive agent sessions.',
showInDialog: false,
},
},
},
enableAgents: {
type: 'boolean',
label: 'Enable Agents',