From 89e0288301c98a742737661c62423d8866751ba4 Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Wed, 29 Apr 2026 14:13:36 -0700 Subject: [PATCH] chore: Add java api reference examples. PiperOrigin-RevId: 907772462 --- google/genai/_interactions/types/deep_research_agent_config.py | 2 +- .../_interactions/types/deep_research_agent_config_param.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/google/genai/_interactions/types/deep_research_agent_config.py b/google/genai/_interactions/types/deep_research_agent_config.py index f98b67348..cfe1b3289 100644 --- a/google/genai/_interactions/types/deep_research_agent_config.py +++ b/google/genai/_interactions/types/deep_research_agent_config.py @@ -33,7 +33,7 @@ class DeepResearchAgentConfig(BaseModel): If set to true, the Deep Research agent will provide a research plan in its response. The agent will then proceed only if the user confirms the plan in the - next turn. Relevant issue: b/482352502. + next turn. """ thinking_summaries: Optional[Literal["auto", "none"]] = None 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 fa2350429..e4db3f6f7 100644 --- a/google/genai/_interactions/types/deep_research_agent_config_param.py +++ b/google/genai/_interactions/types/deep_research_agent_config_param.py @@ -32,7 +32,7 @@ class DeepResearchAgentConfigParam(TypedDict, total=False): If set to true, the Deep Research agent will provide a research plan in its response. The agent will then proceed only if the user confirms the plan in the - next turn. Relevant issue: b/482352502. + next turn. """ thinking_summaries: Literal["auto", "none"]