fix(cli): enable adk non-interactive session

This commit is contained in:
Adam Weidman
2026-05-11 17:57:26 -04:00
parent 84fc5cd533
commit 682057a715
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -5,7 +5,10 @@
"autoMemory": true,
"memoryManager": true,
"topicUpdateNarration": true,
"voiceMode": true
"voiceMode": true,
"adk": {
"agentSessionNoninteractiveEnabled": true
}
},
"general": {
"devtools": true
+1
View File
@@ -68,6 +68,7 @@ export async function runNonInteractive(
): Promise<void> {
const useAgentSession = params.config.getAgentSessionNoninteractiveEnabled();
if (useAgentSession) {
debugLogger.debug('[ADK] Running non-interactive mode with ADK agent session');
return runNonInteractiveAgentSession(params);
}