feat: Implement non-interactive mode for CLI (#675)

This commit is contained in:
N. Taylor Mullen
2025-06-01 16:11:37 -07:00
committed by GitHub
parent c51d6cc9d3
commit 2828fc6d66
6 changed files with 710 additions and 24 deletions

View File

@@ -14,6 +14,7 @@ export * from './core/prompts.js';
export * from './core/turn.js';
export * from './core/geminiRequest.js';
export * from './core/coreToolScheduler.js';
export * from './core/nonInteractiveToolExecutor.js';
// Export utilities
export * from './utils/paths.js';
@@ -35,3 +36,6 @@ export * from './tools/edit.js';
export * from './tools/write-file.js';
export * from './tools/web-fetch.js';
export * from './tools/memoryTool.js';
export * from './tools/shell.js';
export * from './tools/web-search.js';
export * from './tools/read-many-files.js';