diff --git a/google/genai/_interactions/types/google_search_result.py b/google/genai/_interactions/types/google_search_result.py index a3fcbfa38..b3e835767 100644 --- a/google/genai/_interactions/types/google_search_result.py +++ b/google/genai/_interactions/types/google_search_result.py @@ -25,7 +25,7 @@ class GoogleSearchResult(BaseModel): """The result of the Google Search.""" - rendered_content: Optional[str] = None + search_suggestions: Optional[str] = None """Web content snippet that can be embedded in a web page or an app webview.""" title: Optional[str] = None diff --git a/google/genai/_interactions/types/google_search_result_param.py b/google/genai/_interactions/types/google_search_result_param.py index 40ad35bb8..f2cb06360 100644 --- a/google/genai/_interactions/types/google_search_result_param.py +++ b/google/genai/_interactions/types/google_search_result_param.py @@ -25,7 +25,7 @@ class GoogleSearchResultParam(TypedDict, total=False): """The result of the Google Search.""" - rendered_content: str + search_suggestions: str """Web content snippet that can be embedded in a web page or an app webview.""" title: str