Skip to content

Commit 5dc17e5

Browse files
google-genai-botcopybara-github
authored andcommitted
feat(interaction-api): Enable BigQuery tool in Deep Research config.
PiperOrigin-RevId: 921786008
1 parent cd66b68 commit 5dc17e5

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

google/genai/_interactions/types/deep_research_agent_config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ class DeepResearchAgentConfig(BaseModel):
3636
next turn.
3737
"""
3838

39+
enable_bigquery_tool: Optional[bool] = None
40+
"""Enables bigquery tool for the Deep Research agent."""
41+
3942
thinking_summaries: Optional[Literal["auto", "none"]] = None
4043
"""Whether to include thought summaries in the response."""
4144

google/genai/_interactions/types/deep_research_agent_config_param.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ class DeepResearchAgentConfigParam(TypedDict, total=False):
3535
next turn.
3636
"""
3737

38+
enable_bigquery_tool: bool
39+
"""Enables bigquery tool for the Deep Research agent."""
40+
3841
thinking_summaries: Literal["auto", "none"]
3942
"""Whether to include thought summaries in the response."""
4043

0 commit comments

Comments
 (0)