You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -702,19 +715,6 @@ class MediaModality(_common.CaseInSensitiveEnum):
702
715
"""Document, e.g. PDF."""
703
716
704
717
705
-
class FunctionResponseScheduling(_common.CaseInSensitiveEnum):
706
-
"""Specifies how the response should be scheduled in the conversation."""
707
-
708
-
SCHEDULING_UNSPECIFIED = 'SCHEDULING_UNSPECIFIED'
709
-
"""This value is unused."""
710
-
SILENT = 'SILENT'
711
-
"""Only add the result to the conversation context, do not interrupt or trigger generation."""
712
-
WHEN_IDLE = 'WHEN_IDLE'
713
-
"""Add the result to the conversation context, and prompt to generate output without interrupting ongoing generation."""
714
-
INTERRUPT = 'INTERRUPT'
715
-
"""Add the result to the conversation context, interrupt ongoing generation and prompt to generate output."""
716
-
717
-
718
718
class StartSensitivity(_common.CaseInSensitiveEnum):
719
719
"""Start of speech sensitivity."""
720
720
@@ -2672,8 +2672,7 @@ class GoogleSearch(_common.BaseModel):
2672
2672
)
2673
2673
exclude_domains: Optional[list[str]] = Field(
2674
2674
default=None,
2675
-
description="""Optional. List of domains to be excluded from the search results.
2676
-
The default limit is 2000 domains.""",
2675
+
description="""Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"].""",
2677
2676
)
2678
2677
2679
2678
@@ -2686,8 +2685,7 @@ class GoogleSearchDict(TypedDict, total=False):
2686
2685
"""
2687
2686
2688
2687
exclude_domains: Optional[list[str]]
2689
-
"""Optional. List of domains to be excluded from the search results.
2690
-
The default limit is 2000 domains."""
2688
+
"""Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]."""
@@ -9335,14 +9312,22 @@ class TunedModelCheckpointDict(TypedDict, total=False):
9335
9312
9336
9313
9337
9314
class TunedModel(_common.BaseModel):
9315
+
"""TunedModel for the Tuned Model of a Tuning Job."""
9338
9316
9339
9317
model: Optional[str] = Field(
9340
9318
default=None,
9341
-
description="""Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1 from the last version id in the parent model. E.g., `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}`""",
9319
+
description="""Output only. The resource name of the TunedModel.
@@ -9353,12 +9338,20 @@ class TunedModel(_common.BaseModel):
9353
9338
9354
9339
9355
9340
class TunedModelDict(TypedDict, total=False):
9341
+
"""TunedModel for the Tuned Model of a Tuning Job."""
9356
9342
9357
9343
model: Optional[str]
9358
-
"""Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1 from the last version id in the parent model. E.g., `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}`"""
9344
+
"""Output only. The resource name of the TunedModel.
0 commit comments