Skip to content

Commit 3615ca2

Browse files
Annhiluccopybara-github
authored andcommitted
feat: Add DeepResearchAgentConfig fields
PiperOrigin-RevId: 897373849
1 parent 6a6b5ff commit 3615ca2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/interactions/resources/interactions.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,10 +762,23 @@ export interface ContentStop {
762762
export 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
/**

0 commit comments

Comments
 (0)