From 5dc17e53eec9f3bfbdb39a6a4c8f92a45868167e Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Tue, 26 May 2026 17:47:14 -0700 Subject: [PATCH] feat(interaction-api): Enable BigQuery tool in Deep Research config. PiperOrigin-RevId: 921786008 --- google/genai/_interactions/types/deep_research_agent_config.py | 3 +++ .../_interactions/types/deep_research_agent_config_param.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/google/genai/_interactions/types/deep_research_agent_config.py b/google/genai/_interactions/types/deep_research_agent_config.py index cfe1b3289..f551f8787 100644 --- a/google/genai/_interactions/types/deep_research_agent_config.py +++ b/google/genai/_interactions/types/deep_research_agent_config.py @@ -36,6 +36,9 @@ class DeepResearchAgentConfig(BaseModel): next turn. """ + enable_bigquery_tool: Optional[bool] = None + """Enables bigquery tool for the Deep Research agent.""" + thinking_summaries: Optional[Literal["auto", "none"]] = None """Whether to include thought summaries in the response.""" diff --git a/google/genai/_interactions/types/deep_research_agent_config_param.py b/google/genai/_interactions/types/deep_research_agent_config_param.py index e4db3f6f7..a417a686c 100644 --- a/google/genai/_interactions/types/deep_research_agent_config_param.py +++ b/google/genai/_interactions/types/deep_research_agent_config_param.py @@ -35,6 +35,9 @@ class DeepResearchAgentConfigParam(TypedDict, total=False): next turn. """ + enable_bigquery_tool: bool + """Enables bigquery tool for the Deep Research agent.""" + thinking_summaries: Literal["auto", "none"] """Whether to include thought summaries in the response."""