Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion google/genai/_interactions/types/google_search_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading