docs: Fix various typos

Merge https://github.com/google/adk-python/pull/4186

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/4186 from didier-durand:main f8a52b58e133551bec1d98660fd552afd881a8b9
PiperOrigin-RevId: 859203551
This commit is contained in:
Didier Durand
2026-01-21 12:01:54 -08:00
committed by Copybara-Service
parent e3d542a5ba
commit 5d941460b6
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
"""Pub/Sub Tools (Experimental).
Pub/Sub Tools under this module are hand crafted and customized while the tools
Pub/Sub Tools under this module are handcrafted and customized while the tools
under google.adk.tools.google_api_tool are auto generated based on API
definition. The rationales to have customized tool are:
+2 -2
View File
@@ -115,7 +115,7 @@ class VectorSearchIndexSettings(BaseModel):
"""
num_branches: Optional[int] = None
"""Optional. The number of branches to further parititon the vector data.
"""Optional. The number of branches to further partition the vector data.
You can only designate num_branches for trees with 3 levels.
The number of branches must be fewer than the number of leaves
@@ -165,7 +165,7 @@ class SpannerVectorStoreSettings(BaseModel):
"""Required. The vector store table columns to return in the vector similarity search result.
By default, only the `content_column` value and the distance value are returned.
If sepecified, the list of selected columns and the distance value are returned.
If specified, the list of selected columns and the distance value are returned.
For example, if `selected_columns` is ['col1', 'col2'], then the result will contain the values of 'col1' and 'col2' columns and the distance value.
"""