File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
src/interactions/resources Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -762,10 +762,23 @@ export interface ContentStop {
762762export interface DeepResearchAgentConfig {
763763 type : 'deep-research' ;
764764
765+ /**
766+ * Enables human-in-the-loop planning for the Deep Research agent. If set to true,
767+ * the Deep Research agent will provide a research plan in its response. The agent
768+ * will then proceed only if the user confirms the plan in the next turn. Relevant
769+ * issue: b/482352502.
770+ */
771+ collaborative_planning ?: boolean ;
772+
765773 /**
766774 * Whether to include thought summaries in the response.
767775 */
768776 thinking_summaries ?: 'auto' | 'none' ;
777+
778+ /**
779+ * Whether to include visualizations in the response.
780+ */
781+ visualization ?: 'off' | 'auto' ;
769782}
770783
771784/**
You can’t perform that action at this time.
0 commit comments