From cbeaad0a2575adbbf9f078ddf453c339521b6a0a Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Wed, 5 Aug 2026 21:48:45 -0700 Subject: [PATCH 01/19] chore: update test recordings PiperOrigin-RevId: 960054249 --- CHANGELOG.md | 21 --- google/genai/_replay_api_client.py | 16 +- .../genai/tests/models/test_upscale_image.py | 163 ------------------ google/genai/tests/shared/__init__.py | 2 +- .../tests/shared/models/test_upscale_image.py | 54 ------ google/genai/version.py | 2 +- pyproject.toml | 2 +- 7 files changed, 13 insertions(+), 247 deletions(-) delete mode 100644 google/genai/tests/models/test_upscale_image.py delete mode 100644 google/genai/tests/shared/models/test_upscale_image.py diff --git a/CHANGELOG.md b/CHANGELOG.md index bb0d8ea2d..c52a0d3a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,26 +1,5 @@ # Changelog -## [2.17.0](https://github.com/googleapis/python-genai/compare/v2.16.0...v2.17.0) (2026-08-06) - - -### Features - -* Add the Gemini Robotics ER 2 Preview model ([61d4645](https://github.com/googleapis/python-genai/commit/61d4645c6f7acab5fdc1dd6a4f6943fe8c937347)) -* Add TOO_MANY_TOOL_CALLS to FinishReason enum. ([a8ec86e](https://github.com/googleapis/python-genai/commit/a8ec86eab28c2806205fc8ec746b492110113c44)) -* Add top-level errors array to Interaction resource (iAPI) ([c74505b](https://github.com/googleapis/python-genai/commit/c74505b03f53e5bf54b0aed5741267f00703d218)) - - -### Bug Fixes - -* Add propertyOrdering auto-population for ResponseSchema and ResponseJsonSchema for Dotnet SDK ([3ec2081](https://github.com/googleapis/python-genai/commit/3ec20812f4e6228bfa8dc766167ede2e1f925526)) - - -### Documentation - -* Fix interactions ([80d80ff](https://github.com/googleapis/python-genai/commit/80d80ffb98e95b0c62590e5593df47c74ee6e0b7)) -* Regenerate docs for 2.16.0 ([f03ecfd](https://github.com/googleapis/python-genai/commit/f03ecfd7734e08b60d7ea5f2123152ff1b6bdfbf)) -* Update GenerateVideos docstrings and samples ([c41ba11](https://github.com/googleapis/python-genai/commit/c41ba1163f4bc7cb90d913674d1ba481d18d1248)) - ## [2.16.0](https://github.com/googleapis/python-genai/compare/v2.15.0...v2.16.0) (2026-07-29) diff --git a/google/genai/_replay_api_client.py b/google/genai/_replay_api_client.py index d56dedf15..efb29151d 100644 --- a/google/genai/_replay_api_client.py +++ b/google/genai/_replay_api_client.py @@ -111,13 +111,17 @@ def _redact_request_headers(headers: dict[str, str]) -> dict[str, str]: if header_name.lower() == 'x-goog-api-key': redacted_headers[header_name] = '{REDACTED}' elif header_name.lower() == 'user-agent': - redacted_headers[header_name] = _redact_language_label( - _redact_version_numbers(header_value) - ).replace('agentplatform-genai-modules', 'vertex-genai-modules') + redacted_headers[header_name] = ( + _redact_language_label(_redact_version_numbers(header_value)) + .replace('agentplatform-genai-modules', 'vertex-genai-modules') + .replace('+nonsource', '') + ) elif header_name.lower() == 'x-goog-api-client': - redacted_headers[header_name] = _redact_language_label( - _redact_version_numbers(header_value) - ).replace('agentplatform-genai-modules', 'vertex-genai-modules') + redacted_headers[header_name] = ( + _redact_language_label(_redact_version_numbers(header_value)) + .replace('agentplatform-genai-modules', 'vertex-genai-modules') + .replace('+nonsource', '') + ) elif header_name.lower() == 'x-goog-user-project': continue elif header_name.lower() == 'authorization': diff --git a/google/genai/tests/models/test_upscale_image.py b/google/genai/tests/models/test_upscale_image.py deleted file mode 100644 index cf9c9e4b7..000000000 --- a/google/genai/tests/models/test_upscale_image.py +++ /dev/null @@ -1,163 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -"""Tests for upscale_image.""" - -import os - -from pydantic import ValidationError -import pytest - -from ... import types -from .. import pytest_helper - -IMAGEN_MODEL_LATEST = 'imagen-4.0-upscale-preview' - -IMAGE_FILE_PATH = os.path.abspath( - os.path.join(os.path.dirname(__file__), '../data/bridge1.png') -) - -test_table: list[pytest_helper.TestTableItem] = [ - pytest_helper.TestTableItem( - name='test_upscale_no_config', - exception_if_mldev=( - 'only supported in Gemini Enterprise Agent Platform' - ), - parameters=types.UpscaleImageParameters( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - ), - ), - pytest_helper.TestTableItem( - name='test_upscale', - exception_if_mldev=( - 'only supported in Gemini Enterprise Agent Platform' - ), - parameters=types.UpscaleImageParameters( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config=types.UpscaleImageConfig( - include_rai_reason=True, - person_generation=types.PersonGeneration.ALLOW_ADULT, - safety_filter_level=types.SafetyFilterLevel.BLOCK_LOW_AND_ABOVE, - output_mime_type='image/jpeg', - output_compression_quality=80, - enhance_input_image=True, - image_preservation_factor=0.6, - labels={'imagen_label_key': 'upscale_image'} - ), - ), - ), - pytest_helper.TestTableItem( - name='test_upscale_gcs', - exception_if_mldev=( - 'only supported in Gemini Enterprise Agent Platform' - ), - parameters=types.UpscaleImageParameters( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config=types.UpscaleImageConfig( - output_gcs_uri='gs://genai-sdk-tests/temp/images/', - ), - ), - ), -] -pytestmark = pytest_helper.setup( - file=__file__, - globals_for_file=globals(), - test_method='models.upscale_image', - test_table=test_table, -) - - -def test_upscale_extra_config_parameters(client): - # MLDev currently does not support upscale_image, but the ValidationError - # occurs before the ValueError. - try: - # User is not allowed to set mode or number_of_images - client.models.upscale_image( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config={ - 'mode': 'upscale', - 'number_of_images': 1, - } - ) - # Should never reach this. - assert False - except Exception as e: - assert isinstance(e, ValidationError) - assert 'Extra inputs are not permitted' in str(e) - - -@pytest.mark.asyncio -async def test_upscale_async(client): - with pytest_helper.exception_if_mldev(client, ValueError): - response = await client.aio.models.upscale_image( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config=types.UpscaleImageConfig( - person_generation=types.PersonGeneration.ALLOW_ADULT, - safety_filter_level=types.SafetyFilterLevel.BLOCK_LOW_AND_ABOVE, - include_rai_reason=True, - output_mime_type='image/jpeg', - output_compression_quality=80, - enhance_input_image=True, - image_preservation_factor=0.6, - ), - ) - assert response.generated_images[0].image.image_bytes - - -@pytest.mark.asyncio -async def test_upscale_gcs_async(client): - with pytest_helper.exception_if_mldev(client, ValueError): - response = await client.aio.models.upscale_image( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config=types.UpscaleImageConfig( - output_gcs_uri='gs://genai-sdk-tests/temp/images/', - ), - ) - assert response.generated_images[0].image.gcs_uri - - -@pytest.mark.asyncio -async def test_upscale_extra_config_parameters_async(client): - # MLDev currently does not support upscale_image, but the ValidationError - # occurs before the ValueError. - try: - # User is not allowed to set mode or number_of_images - await client.aio.models.upscale_image( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config={ - 'mode': 'upscale', - 'number_of_images': 1, - }, - ) - # Should never reach this. - assert False - except Exception as e: - assert isinstance(e, ValidationError) - assert 'Extra inputs are not permitted' in str(e) diff --git a/google/genai/tests/shared/__init__.py b/google/genai/tests/shared/__init__.py index 880bf22d8..991599436 100644 --- a/google/genai/tests/shared/__init__.py +++ b/google/genai/tests/shared/__init__.py @@ -13,4 +13,4 @@ # limitations under the License. # -GEMINI_MODEL = 'gemini-3.1-pro-preview' # Gemini only +GEMINI_MODEL = 'gemini-3.5-flash' # Gemini only diff --git a/google/genai/tests/shared/models/test_upscale_image.py b/google/genai/tests/shared/models/test_upscale_image.py deleted file mode 100644 index 676254d4e..000000000 --- a/google/genai/tests/shared/models/test_upscale_image.py +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -"""Tests for upscale_image.""" - -import os - -from .... import types -from ... import pytest_helper - -IMAGEN_MODEL_LATEST = 'imagen-4.0-upscale-preview' - -IMAGE_FILE_PATH = os.path.abspath( - os.path.join(os.path.dirname(__file__), '../../data/bridge1.png') -) - -test_table: list[pytest_helper.TestTableItem] = [ - pytest_helper.TestTableItem( - name='test_upscale', - exception_if_mldev=( - 'only supported in Gemini Enterprise Agent Platform' - ), - parameters=types.UpscaleImageParameters( - model=IMAGEN_MODEL_LATEST, - image=types.Image.from_file(location=IMAGE_FILE_PATH), - upscale_factor='x2', - config=types.UpscaleImageConfig( - include_rai_reason=True, - output_mime_type='image/jpeg', - output_compression_quality=80, - enhance_input_image=True, - image_preservation_factor=0.6, - ), - ), - ), -] -pytestmark = pytest_helper.setup( - file=__file__, - globals_for_file=globals(), - test_method='models.upscale_image', - test_table=test_table, -) diff --git a/google/genai/version.py b/google/genai/version.py index 602b199e4..18772144c 100644 --- a/google/genai/version.py +++ b/google/genai/version.py @@ -13,4 +13,4 @@ # limitations under the License. # -__version__ = '2.17.0' # x-release-please-version +__version__ = '2.16.0' # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index b58055fa4..b07c2d44a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel", "twine>=6.1.0", "packaging>=24.2", "pkginfo>= [project] name = "google-genai" -version = "2.17.0" +version = "2.16.0" description = "GenAI Python SDK" readme = "README.md" license = "Apache-2.0" From 5413fdc7c5471d3e85b2d1e0ffb7873d059e4ea8 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Thu, 6 Aug 2026 07:27:03 -0700 Subject: [PATCH 02/19] chore: update generation PiperOrigin-RevId: 960288547 --- .../genai/_gaos/types/interactions/audiocontent.py | 12 ++++++------ .../_gaos/types/interactions/documentcontent.py | 12 ++++++------ .../genai/_gaos/types/interactions/imagecontent.py | 12 ++++++------ .../genai/_gaos/types/interactions/videocontent.py | 12 ++++++------ 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/google/genai/_gaos/types/interactions/audiocontent.py b/google/genai/_gaos/types/interactions/audiocontent.py index 7372325d5..262073c13 100644 --- a/google/genai/_gaos/types/interactions/audiocontent.py +++ b/google/genai/_gaos/types/interactions/audiocontent.py @@ -59,13 +59,13 @@ class AudioContentParam(TypedDict): r"""The number of audio channels.""" data: NotRequired[Union[str, Base64FileInput]] r"""The audio content.""" - mime_type: NotRequired[AudioContentMimeType] - r"""The mime type of the audio.""" sample_rate: NotRequired[int] r"""The sample rate of the audio.""" type: Literal["audio"] uri: NotRequired[str] r"""The URI of the audio.""" + mime_type: NotRequired[AudioContentMimeType] + r"""The mime type of the audio.""" class AudioContent(BaseModel): @@ -77,9 +77,6 @@ class AudioContent(BaseModel): data: Optional[Base64EncodedString] = None r"""The audio content.""" - mime_type: Optional[AudioContentMimeType] = None - r"""The mime type of the audio.""" - sample_rate: Optional[int] = None r"""The sample rate of the audio.""" @@ -91,9 +88,12 @@ class AudioContent(BaseModel): uri: Optional[str] = None r"""The URI of the audio.""" + mime_type: Optional[AudioContentMimeType] = None + r"""The mime type of the audio.""" + @model_serializer(mode="wrap") def serialize_model(self, handler): - optional_fields = set(["channels", "data", "mime_type", "sample_rate", "uri"]) + optional_fields = set(["channels", "data", "sample_rate", "uri", "mime_type"]) serialized = handler(self) m = {} diff --git a/google/genai/_gaos/types/interactions/documentcontent.py b/google/genai/_gaos/types/interactions/documentcontent.py index 91b4fbef2..b6bba257b 100644 --- a/google/genai/_gaos/types/interactions/documentcontent.py +++ b/google/genai/_gaos/types/interactions/documentcontent.py @@ -47,11 +47,11 @@ class DocumentContentParam(TypedDict): data: NotRequired[Union[str, Base64FileInput]] r"""The document content.""" - mime_type: NotRequired[DocumentContentMimeType] - r"""The mime type of the document.""" type: Literal["document"] uri: NotRequired[str] r"""The URI of the document.""" + mime_type: NotRequired[DocumentContentMimeType] + r"""The mime type of the document.""" class DocumentContent(BaseModel): @@ -60,9 +60,6 @@ class DocumentContent(BaseModel): data: Optional[Base64EncodedString] = None r"""The document content.""" - mime_type: Optional[DocumentContentMimeType] = None - r"""The mime type of the document.""" - type: Annotated[ Annotated[Literal["document"], AfterValidator(validate_const("document"))], pydantic.Field(alias="type"), @@ -71,9 +68,12 @@ class DocumentContent(BaseModel): uri: Optional[str] = None r"""The URI of the document.""" + mime_type: Optional[DocumentContentMimeType] = None + r"""The mime type of the document.""" + @model_serializer(mode="wrap") def serialize_model(self, handler): - optional_fields = set(["data", "mime_type", "uri"]) + optional_fields = set(["data", "uri", "mime_type"]) serialized = handler(self) m = {} diff --git a/google/genai/_gaos/types/interactions/imagecontent.py b/google/genai/_gaos/types/interactions/imagecontent.py index 2e40535ac..15aa7bea6 100644 --- a/google/genai/_gaos/types/interactions/imagecontent.py +++ b/google/genai/_gaos/types/interactions/imagecontent.py @@ -54,12 +54,12 @@ class ImageContentParam(TypedDict): data: NotRequired[Union[str, Base64FileInput]] r"""The image content.""" - mime_type: NotRequired[ImageContentMimeType] - r"""The mime type of the image.""" resolution: NotRequired[MediaResolution] type: Literal["image"] uri: NotRequired[str] r"""The URI of the image.""" + mime_type: NotRequired[ImageContentMimeType] + r"""The mime type of the image.""" class ImageContent(BaseModel): @@ -68,9 +68,6 @@ class ImageContent(BaseModel): data: Optional[Base64EncodedString] = None r"""The image content.""" - mime_type: Optional[ImageContentMimeType] = None - r"""The mime type of the image.""" - resolution: Optional[MediaResolution] = None type: Annotated[ @@ -81,9 +78,12 @@ class ImageContent(BaseModel): uri: Optional[str] = None r"""The URI of the image.""" + mime_type: Optional[ImageContentMimeType] = None + r"""The mime type of the image.""" + @model_serializer(mode="wrap") def serialize_model(self, handler): - optional_fields = set(["data", "mime_type", "resolution", "uri"]) + optional_fields = set(["data", "resolution", "uri", "mime_type"]) serialized = handler(self) m = {} diff --git a/google/genai/_gaos/types/interactions/videocontent.py b/google/genai/_gaos/types/interactions/videocontent.py index f2a4edae6..1826789a1 100644 --- a/google/genai/_gaos/types/interactions/videocontent.py +++ b/google/genai/_gaos/types/interactions/videocontent.py @@ -55,12 +55,12 @@ class VideoContentParam(TypedDict): data: NotRequired[Union[str, Base64FileInput]] r"""The video content.""" - mime_type: NotRequired[VideoContentMimeType] - r"""The mime type of the video.""" resolution: NotRequired[MediaResolution] type: Literal["video"] uri: NotRequired[str] r"""The URI of the video.""" + mime_type: NotRequired[VideoContentMimeType] + r"""The mime type of the video.""" class VideoContent(BaseModel): @@ -69,9 +69,6 @@ class VideoContent(BaseModel): data: Optional[Base64EncodedString] = None r"""The video content.""" - mime_type: Optional[VideoContentMimeType] = None - r"""The mime type of the video.""" - resolution: Optional[MediaResolution] = None type: Annotated[ @@ -82,9 +79,12 @@ class VideoContent(BaseModel): uri: Optional[str] = None r"""The URI of the video.""" + mime_type: Optional[VideoContentMimeType] = None + r"""The mime type of the video.""" + @model_serializer(mode="wrap") def serialize_model(self, handler): - optional_fields = set(["data", "mime_type", "resolution", "uri"]) + optional_fields = set(["data", "resolution", "uri", "mime_type"]) serialized = handler(self) m = {} From 35727d65c3cd9f5533b007e06d3b8b3448a9490e Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Thu, 6 Aug 2026 19:30:30 -0700 Subject: [PATCH 03/19] chore: refresh docs PiperOrigin-RevId: 960639532 --- docs/genai.html | 12 ++++++++++++ docs/genindex.html | 2 ++ docs/index.html | 1 + docs/modules.html | 1 + docs/objects.inv | Bin 30741 -> 30755 bytes docs/searchindex.js | 2 +- 6 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/genai.html b/docs/genai.html index 7ca320101..6ff7c224f 100644 --- a/docs/genai.html +++ b/docs/genai.html @@ -11115,6 +11115,7 @@

GAOS Client Resources "MALFORMED_FUNCTION_CALL", "IMAGE_SAFETY", "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", "IMAGE_PROHIBITED_CONTENT", "NO_IMAGE", "IMAGE_RECITATION", @@ -15260,6 +15261,7 @@

GAOS Client Resources "MALFORMED_FUNCTION_CALL", "IMAGE_SAFETY", "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", "IMAGE_PROHIBITED_CONTENT", "NO_IMAGE", "IMAGE_RECITATION", @@ -20839,6 +20841,7 @@

GAOS Client Resources "MALFORMED_FUNCTION_CALL", "IMAGE_SAFETY", "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", "IMAGE_PROHIBITED_CONTENT", "NO_IMAGE", "IMAGE_RECITATION", @@ -38625,6 +38628,7 @@

GAOS Client Resources "MALFORMED_FUNCTION_CALL", "IMAGE_SAFETY", "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", "IMAGE_PROHIBITED_CONTENT", "NO_IMAGE", "IMAGE_RECITATION", @@ -75280,6 +75284,12 @@

GAOS Client Resources

Token generation reached a natural stopping point or a configured stop sequence.

+
+
+TOO_MANY_TOOL_CALLS = 'TOO_MANY_TOOL_CALLS'
+

Model called too many tools consecutively, thus the system exited execution.

+
+
UNEXPECTED_TOOL_CALL = 'UNEXPECTED_TOOL_CALL'
@@ -85164,6 +85174,7 @@

GAOS Client Resources "MALFORMED_FUNCTION_CALL", "IMAGE_SAFETY", "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", "IMAGE_PROHIBITED_CONTENT", "NO_IMAGE", "IMAGE_RECITATION", @@ -107236,6 +107247,7 @@

GAOS Client Resources "MALFORMED_FUNCTION_CALL", "IMAGE_SAFETY", "UNEXPECTED_TOOL_CALL", + "TOO_MANY_TOOL_CALLS", "IMAGE_PROHIBITED_CONTENT", "NO_IMAGE", "IMAGE_RECITATION", diff --git a/docs/genindex.html b/docs/genindex.html index 6ae14069d..2bcfb8e2e 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -9434,6 +9434,8 @@

T

  • TokensInfoDict (class in genai.types) +
  • +
  • TOO_MANY_TOOL_CALLS (genai.types.FinishReason attribute)
  • tool_call (genai.types.LiveServerMessage attribute) diff --git a/docs/index.html b/docs/index.html index aecf86e5a..d431dbabb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4037,6 +4037,7 @@

    ReferenceFinishReason.SAFETY

  • FinishReason.SPII
  • FinishReason.STOP
  • +
  • FinishReason.TOO_MANY_TOOL_CALLS
  • FinishReason.UNEXPECTED_TOOL_CALL
  • diff --git a/docs/modules.html b/docs/modules.html index cba9c0ddb..daff01d1c 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -2281,6 +2281,7 @@

    googleFinishReason.SAFETY
  • FinishReason.SPII
  • FinishReason.STOP
  • +
  • FinishReason.TOO_MANY_TOOL_CALLS
  • FinishReason.UNEXPECTED_TOOL_CALL
  • diff --git a/docs/objects.inv b/docs/objects.inv index 80808b2b0e7444c13501f66ae98809e061e80905..8da96a10f6019fcd3f77456e8311fddf72835427 100644 GIT binary patch delta 21185 zcmV)AK*Yb5@ByRn0kHife|EQCdyli#FKGqqWo1feOL$(ne@XA58l!_jSY;GRp4e3{ z^L3t<*4&*NJr7&4ezg(=TvjSz`XM~zU)?=syr=U?Z36v1upEbI8$ z0byx90Q@kdCXQOW=mTV97oi_{(m7e+V;xpUE_&p|k0s z{ID&s9HS`^AlcoJ2P|w5NB$-G5J7kF9JxepWn-RLu#@s46aMM^k$d^Csx|6`4VE&H z)~(53&?cp&G0&fjgTB`#r3gTV-BEc*216X*;mn?QYZegUd6seLYQ1t7#VvGU ztD)Tr*;1A#6#x#Ue}`~h#L<5b5eIuLtU%=ZEKD)idThAYOx->8PC_|}ZLIrsr zVR7`-IqIbQQY@GfGxRx>So;#q`&*@T&-X`h@;S)ZTjZBm%-@I@6$a8;m%w+Z-dpi4%vOvYN;O_aP)tw%8&)B#B=h;l^12E?CVw9pXFd?@Zf&oPa1 zklWc~Jk%k&0gRv@{3Kl?5Vg@w)^jR^FkI*fQ#IE?AyL;3S{V9Z^9YBv&(jY+j{(^n z3Fct*1q7EPe;^;6zQp5jE>E&sQf*E#>dJA9ST#)rPu+PIOw@G7G#W=k>eRJtbt714 zE3PY>(DJ?1yj0v)bE$~RodM2bwR1O{=cgUZ_c+`6gM0hDT&(Vii$yl}VhP+^9cTS~ za97^q7L*_HexKipT#i1dwIW@*O=%=MjF)EOH3Z*Xf7W>bOE(4WA2VGmxD?=>pgLNg zBdQNh!>!45rB1Do z**_MSBIjEy#O$W91}dN#WxS9ws;oadV`FNfSW?=q5}J+ngEm!o9Bm>2RJ z;g)v+f13GmxBiJtFEhq3l9OK{`nzI?1s^+q@2j!bYg&qn83$o?gc^0B!48$bp!PIG zd{oaP%P$V!B~GgS1F@N4FXFX&m?7SOd8z!}2>u3}9ZN|OU?)~jma>`|?xp(?R&q$Q zNc#Ra03b8-(Hj=vHn%CnWmxbnEc_B_-80SS+?)ki| ze@Z5$eq3fu`YeuN{KjqeMUq79z?=((xZ*vI;)$g})0h!?TaZtgdFW5hT4Q_${G||| zj5i~E2BZ<-lbPSf_v8|+;XRp(Os_Q#90vDf;5oLZqk1718D@>_=~PQ#PlsCLdM2zb ztS6&wQ9T(-JYF;b%xYlvke(5%Mf7}Je@?|3@jMx63Fqm|CYome>A^f5csZ7*^M|24 zooGbzbfh(qCu0Y3Je_BT@pPsh#k25oCK40PhrMH{@ZK?-4&$)+R83<@(Y+4fbvYqO->5ZKPUkhj1Cg2V zlj$ieAJ+XCxDcNVU9VI*JJ7jWN2vIv4(;Hj?!Rc>n~)RhlQb$P5Fd(`ifFUrF!aj{ zC3wihMU!hP869U(nqH9E0<D8#p2*s`Q90AGA>UqBJ+}0uWEUoS~rIm)V+yJ&P>(X z_dliD5&q)DtGC(_*NrbB$wyo@Xeu%_IX~3@7Bbm>WApXP9bP2f;ZH%>xrBqGeGnqj z9g3Ud17X0bfrH_J$}>j?D$yJqs6^rcEQ6;H4P=^iWZvC9DQEQLIOWGKFYF; z3S^{ZP@pm|j|oil-jKjVq@0j4nAQP-3LO~_$XMLTqnblK`JhvrMqwgg2~y6fv(7Nk zPUrxWCVANFfZRbT|9-H}MUU6oKAEkFNTySFm?^5I7sIi6_(MILN1P+~87wne4agXd zYuuo09+S+)K8b^WoCV4={nn7LDbJ_1rtVeOA6Sqa(|8R?o5BuIdEvcgKK_K2hCBKB z8w-eOHmozdz^8fzlShF((^U=0HnY^J6YDDsZnAj9}`_jVgaXG<)_KkUFEb@Y?GQXc~15MW^&8=p3Q#`P{o7diBlH zdI73BCqg)Xr1L$#UMyz%esoAQviL#t)%qdn3#z>ey{B0eADLCr!l;+#XieOZIA(_p zs%l&g658r|$sjuo5t^!ZWQc>*=?4f37Dj6W?537>y8H;V25)F2`)e4ghYk7`k;t~P zT=NiScowuN9M$e5YwjUN)QtynEH>A;$Kje6*t`{gfw-vG15wuC&KR`$w8Hpl;edmj z#sxnNhYo3&N}4t()C`OwJ3*}1Rj-m!HY+-Lru3l(k1uoR8O@V`^UP~<^Z2i?Dp84? z|I2tPN)B9H)|{SaI#)W+Gm)5a@C@QgYS|<5 zr_e{^Y8;MyMpp+9cQjFYCPOQZC5fRfX9>qPp8te-|0L{kimi@<8f|knON*1`i&;sM845H$mOCtv0IwTc!0u^rZ|AqPP+qe)Fcd z@r(WOkK_g0Km!2r82Nw(YGI2k{t#g?uM&H%b_^(7QC0*&XKEOZ z(3dCl}p`JA2Fu;DCY6zB#~P^Em4myegaffUu<}3j&d>&q6_@ zRIVs>EQ&LWTDDH@+%5VCs5RApK2Lnst1Cfr^20bMvGVGFlrgXYsr`E|^W%ePPVG`? zV52*WjcFUv==Jz&DjSO$>KeL(HO$_~65P2Wsg+`c{d6AsZFAH2?Id9^N^V`(r zZjnijbSb4^CFinH)MiAO7uTb+gCP##8%*0)sGe!T8BN6nwzd>AoW@1B3hqjmiDV0m>Bl#5n`MI;zNXd6D?13c>+-|oEx zs=&+}BP?CpL|CV66bH4;YY^%Mt>)aZS67c1qV%wcSNTkoS|k$;9D1-+W9VI^;*fhR zbXD6bJlg(fo9t0x&&=6LUF*{@q(SIRA@|t&bvuIl=$3A0Rg-OhEju#pQeTa-I5p-^w)nK`mXI?Sv8m`=i%Vwm zWLg2$278iq89y+8x5dF_{*JLtFY!<Co(_p`b(l<9}Epl~+ zoS9!|2B3xn1~yfT$#s@!W^$&6M`NR!&ZVz=nn-#OWH8Aw@sNmiS2mEXqp|pdX0Kz= z&-l>RZpMdy@Aoo3>Y$VHfwexyhb65p+li#W$BLwcz}sqLdnre5+W2+mIMpUOF@!qf z(4GC~;QR}?N)o`bH>@}eepO+}u2e!O3gy_pZ85Zt&{B}LPd?Su9pUNEMe9o-?a_!j z5fZw+&LwnLLn;TCa}x71O_Qu(U^cIr*5lDXrN}~m!9YEq6eS137AD(gHr18`efA}1 z7GYd4FzXWuYH{VDno3$a!>0S3h=b~Vfz+o2AuTQ!2Q}HI zaxjM16SeCfX$-dUtFL|v*3>?Q)>HmO%!8kuZq#kD$NH(MX(}H`IS;eVqj$4h&;Rru z-QC0b)_Y!UpWON4ZsFeIzs7mmtZ!yFi{)Z}_lrQ;xTj{Emrcc2+JIS-p*F{?q>bG_2z3yUhQ~) zu<~!S?e>w8w{tz&hVJ}<2e^2g-MiPSeGTW03*Yj*CyPo^k({eFiFn#PF zv&HgeG#EvxM6CR=mrp9jGx{k-8N}bvI0~r`hg-3H7gMcf+MHWY3YrwIwls+LV5C z7IpkEsdAdt_6Y7GeNq~F(lg|U<5C(X|BCl*_wchrPJzAnxw;b=aWJa4EUML^e4oHy zQR*X^Y9~I6%=ccB;EO^z3O_&`nbQ#R&!1ku<>)jzN3C>!VUq{;LF%+cFsk?E9a*k8r3F%jJ&^cJJ=J5$peoYHtDJJ4I>k%>v^KJq z+VQ{0w7l*-t|L9!X_^d|1Bt#=6m+ZNj<-(B3tjD z(r=egiBy_xwT}lbrnu;WiC?5tG5C&3)NkLpwe<^FkqDZ*b zppcNu_C$kX-ZUJdtk#5OS&Rves{XjHYKV+BFTxz&u5BrRqnDdlT=%kb95!P6Ql7BH(YI z2za9^F)fIIe;=U$IjfhWQ~OZgRQowgIrGi>316u5G`mGeR|^q$-5bPU&#oir@#ugj zKO%e=*%t?k7?TcYw1Gv3K^?6rO^VtqxW3+rD178*fuTJ-?sb8lD71~XO@$%9?=&ZD z7XRaVcZ(mcxBKaTES+86=WcPDThv4=>7bkUs75}>3P~NGI=;}{Q z!~DRIM@s}?@F-7W4PhYbH$`o_LN*)mDz_Dfe5~ut>Rv~~8&!v>SL)PmUe?=RnYN~6 z!ZO<)4afknyF4a=mW;x}OZ^P7^=kp;!JAhZ0iU{1Jx1Gq8N#L%7{Q&DMdMg?H5D1F zOe}$WdgNN?FD%LLq2e}lx^-$wjX z3V0#}UD`no`vyc+EGJ@!2HIgNC6E|!8|(=>@bJLO=v0cQ;0;!zv{ zE{BJAavY9-jmeqO9ateU#6x1OoFn3(N@@siga(ioepZkWpawjPXrB&LSM#(>|H~&5 z{@AWp+x=0Tz!^l&l8zq)p^C=+$V;&Q^Fpbrl(OOJ@LBJujCO>Bk#N>Fb+6-1!bKzuj#Xt9yui^5Pm1 z{FKmtqme^BlHCa-U&rp`kgjATy`t5xJAbTi zyzNfiai7mtb9cD}ZH0_u!1g)hxPLt@Hq?)~n=Qx{dYWx^i|PjW_IW;c-CH{Fc}r%v zt6Q>)|Ml!XQ$J+$yjqbzgh{cu?K~Uk>2|h%gVk!ee7x~<5j?77XZvj`_E2AI68h6U z+!~>U`F9x{gr|-dWwO#4ANW-LQAN6^RL+jYDUE#iV|^BIDnm8#sun%Gtb9>roX<6S z`B2liGBT0NX{<_XlymCjdf(fCv!qNt#M{UgWd4=QM)SfrFS2rvnNXWhz|d_pAqaQFE%7PbPF&6wXYS^dQ_KERcr zq#X6EP*K7sW36}+9|-awg|!0OH-mJ4R7>|id8&Ar7dL*fKg!@P$DPu$Ak+g2h})Vr z66HvhjhA9iq>jQ+smLufh{@QcduqowKjnDV7%oMeN4>~`=C0OY*sWeG#CcIa@&1-S zBH2L4i&buJCd1-8ZDqw`EmptHuj!A{o)ylbJ~ESX{z_5j{{Gk|sw;T_7`f!VxlyJG8S&R;hU% zi(<*`&fp?1fT@1+wmE)FaFGK9**gw-B*$olp>2CW0~(%1n&Js|ohN7*cna*R$iRLv>bb`uHFN(*1GTl^8X)Pvq z#Os4p%8!WPg!=M?4H6AQb!HljbwYg)kkBbOJ@$ae;<9xn%DD9#cAdV^t;XQCEkLT@-j#6}A87mA zLk7Wr8z`y|H-IERZl|GtEq{mu+Nn((=ZLK&f-|=Aunu_~hUr6R8pWNO6b?^lp|W^G z3%96#gx;AqiD=tp^p7J@J|C%J2P&Kld>8ZT&4;<=b*D+@Hvq^F$>J)BY$OmTrLDM} zi~-q$Mb@kpR>2(&*G!L=YeS%BY5)%HQ7@C12|rS|$GtF4O9ozlE{ZaxV~Qk+2;ORd zLzz)e)cj=wL$_ptc#L>%A^VT4&_Phg{# z0X#qGMVS0PX(}hqs-Hv<`t?KHITy2#<1H8KJq!ew5>egWAQ%=%>lZq*Ge8b#Ykyp< zf%!3Dht|h{Y>kh90oBZO^U^G7 z9TgRo`>#T|J5dyJx|5S}&C3GnuGopCt_(L02SgQ5Q7ejn8o@eA)1%-V+c^QrQfk*|a3Es0~XFR*(U0{}xjr{S0*I*l#=@g)+T|N1Ia zHx-@?)1!oc;iI{NMGeXmE^0`IfKlg>cASPZ-T+iXt0Z}i+piYO8NRljX5t9Rb)XOd2ZbfH*O{ph`y*R(FwGS-rb^MF zoLZR)2G}vAJmO&iqUSOLOzOSyU{VH*awHM!I06lSWQMY|8Jj`lo3k0{3lRg2OP>uI zO!9otAkt=pCJuW@!UkiTU>am=tUx1LLIo0#Zw70i33FJ3H5w-nsn#%o#3atQO8Ku?E5PGBaSkyKh-0|4 zlc*XZ4tC=ZyteMDTNNUxUu8$DO2;&JHB>@g;pe!eNE;S=sL#T}sNN*lDoSes?D??@ zb>F!?{C=SooA(!xlP**U2 zb7o|al_y4K5=Yfd(cJUnfE%9g{fJSe*xe&LjkujM0>y4$SaBGyXk)bgg6hC(mgX*4 zkUej~!s|N=7T~C_V50Y21s}2N%q++eN5R7G`~(jTzJ5Fo!>_4cU?NsAE80^t;hCT3 zI}q0}5O=DVeHgyOd0K*=SG&l$na%%y^ycf;ZnIuupBfnBZ``fBtKjZmI}YG>w|>HK zwjz5M8Fe*Eqcrz1@Yi-sBxd+A0LFLWbVXf-(kSP7LTb*l;OaWB=%~Mu*S3aGIRz)( zx;3HrhV3tuSd>U=+s1hhb;!XSsu0JlRzv2tmVjHL#=^Bnvl+#(vSMMeuc=yp%3!KC z_d=sA;%BpZUM~XVJSrZA@@*tsDg~+Si#(QXhHX-2d-2$NTOOxj4a2q3Frc#c3Js5H zB7?xNkZ*zVbg-?61MOBNt!rJtk#B`hVxw<|U!-GiiGK?v-WI>aug+<4L$NE&mze15 z;}@X7j{6OXa-DoK8gs4uTR7r>dif+K{+juB_|9w@nTY*@?~s^#=j2JIKEKplKYlhc zfM!V<2kM;J$u|C@nDv24@*R*NRJKKU@~#KZ%Cryx9ac52r}7ZdS?y6?-s+O`NL|1Y zwm5ZanMGcEIG)coKm1S~lJ#Db44+PkvPfgD&y4hItfQ%!)^1Hgj&wYKBJ*OWrnAp| zn#9t(Gzm48 zo$vKCth1o+9N2IddKr;S*p4u9S|8yd8C`^gHG2pNXLb-qoV9;|`PrFBQx{kh zRnKKQP15SV=2_92;t^!x#;66;Ip8p$7(<^}cXicfs;#R2jXnKG-^3ju4603Qik^eB z)*4J#36`M!bql$ngw!LCS(~PV#47 z5aO11MuC{SK{i+}4(gTbX1hgc9^R%FE}$((q)olyoAJy8UXvJOjcE;oU7QfB%O(Mt zufYPU6cwsJdTh+B{VQUuyo@unMr?lidca%vZuY#~G12bU8<+L-w(jF>wOh=YaL-$J z<2`NGKNhzx>=TRqah*21{*&9WFXXs?&E`ArakiU3pi6ctac}+PZf3j1dWF31Gk`wL zHoL`aN&Pn2^zL8PU7^`xwS{o@X+1>-4>GNw6Z$7rI?!_u=V71quCh&8r z9TMVQ`!ZccpsK4!{Y&+jN>s=D9_w6pUsJ2lmvLs#w~IBlMCW!re|~gVJ2YVNIJjSE~-n|nFvZ5$f31c-`Vlh73T5MsTMVspm-v zzpP*qoKvs4K+ecS)r;qQx)fYc)e_xVJ0NRcty;M2Hp=k+VOF{aczCscxr# zX;K0L@#>dR;hjO41+E5#zR}PC!dxXF^iV^2MG$d7QATrWy=ufLJcR`g6ZtP9LVkiu z_fE*8R73Cz>}Q&%s30#>HLnywbq);i9#4%SYoblMjg-dZo;r)BNYOHudaL7&Fn&#N z6glV5u|08?ostZ>fi#dGh8g(I-G_F6N%vW?u#vZPJ*M>%jx|$SfBO@b%gt-{hlOK$WV1PC(f~BpaBA9X>6v3jFF%ir_ z>&`wRf-%+s5lo?Kp+6kLg@H-dbjcJaX&DQ_kls)Tk==@@KDbU82?q@4RaA|C=jH9s zy|mjuM7hR60Z>nA5&!lZK{_m&J=Vz|qy(H>_i5wKXFKRLyOnqUdU7`lwM{Tv;s{Ik zem4JwlT}-ZOK-cI-Mjb|gBB(g@nhls#0hWQ-C~0+Sytd?>EdK%wJT|l*b+sVYOZBA1C*$22rp36+}!XiZBy@>dcL&ZgUb);4a=t_0<7yhu*#EP8&#yMHy2`G9nAN zsqo)K_Cp=RNBU+vMmGbZ!?v+|72e z`$hW#=ka;Fn0xo`sy(<+AIHEsPYeHF&(#7hk@90bmze*lz7T+d9t=5uADIY}SYQfr zM3yBPO7c}sVm&_%y9d3e?i`&Fh>MA5VPK%XE{lC~nrgz$Z#(Pf-F*G1PB+bNmy4Ae zrsl2-JM%MS-OUzD5@7u&K^WIn*45+&=R^Cl&S9T>a++I&G3u0Xp9S!fLowTDfHbif zF1JnAgOaR@Z{~}E9N_kU>bX*!DijW^h*oIyJ0|Ml$q%!SFch0* zsM`*;;BLWp7hSH!@3*!}D|GS;0I#5t?B6J(o<^|C zj9C%-(JVWEV0vpU>AWbf^X^9_D)ML`f9LAVhhH2CjJS;GA0m6yi`wcWV&vRe<&>sk zKEkNZcpb(R4$xzrg$9iaHmmwFQ@?F-2)${s483J>lwrf-C`P*iFtNz0!wtJKmS2Kf zaL6T?cw2 zDy5UhH9D0oE1AUSLkv?@I1qDYOF77Uvs+jqkTJ}1NrBw1S39pFK`6&CKi)*i{%v=Z zG5Ilxf~mSNC7qk)dj4k>KDZliwz~CZH|rlR?Q?oiW@M#vR$?8QF+l{o!tY@v8OdVX=MiYWnU$#(fX#EsWNEb%E5}7)QeNs13(o}fit97&ha<}Z}yx+7W+33jox|hk+z1_=n`u=W~w9l+!*TMz>mBXz1iSVlP zz;K%y070f?k+pr$bnOJ?zCb-s)0b7Bp#Fk;s-;hYDMJ%8KVrHT{ucW}%RvCtgeKqR zBmgQwhjjS~NEGxD`5_3ms;NVNV2x{tLUTP>8PK#3RtVH%(4qEaKuxBxxk3 ztFkZEoH2RYtRELEceV4L-1QSEiO~>P@AESPhbZL9fsKEdAIta++MioFXRrQ?*yid0 z)$Iy`e5xMk%2Pi^6EJs-T46wU?Tct?12)z9P6}RJQyK;Uyo}MxKFM-_x5Ksqm|H6^ z>z~P3Fhz`{2C9lGIYTEHj$7SQqQB?|*D zms8LEk%5=_sD#cI5-Pj1$$=SL zTvpz2->XzR)rx4f@?Z3S51Vq9kju$ry7XumHc@Tqcf0N5Kg;;;2r%qh%ggH8?-Evldk|B zJ`jaK-5;>=t2gw2_Q|`*Fa~S_Atq;+w(Ak!v`vPY%W5Rz4J}UQsms6Ov)*jMnxe^Y z{2=f?d^xW;`5Ann!A7i(@~g8-ISWq2$NGd?buokmS-mTrq^LK)tU%mjYF1Qp={$L@ zeIF0BISaLy8kDm{_0EX*Pl_+COmk&{CX6VIp7|uv#qIY4ritZ$s&9o0Qp} zsIi*S+8J(t9%u#j58dQkNOG)IqtNYm7B@6TXhHLoQqDw#jys1?j(*u)7>OJk%^L_} zU~BU7V^T)y5%+4^Qqi$VLoIlaZCIu8!?YduO?@$RytlPLs)HG{mhDh^@W$ApD8D@- zf377(;dO)BDmj^|9&?mkT)hESXFZygMWV)&Y^&~nF~K(gz9m-657pn1nJPdSwvQUZupRFFpFnFZM?-Hyekikg5*BxlXb+&9j|XD-+b8rogNg#?~VSB_PH{ zU8@MWNXxMm`c(DrHawYkz581I?{axGlbJ_J z8EndUQ>lrq1~#m-S3mT!GR7?~Pb!388+ET4emdTm=2D?<`(gpN+Q-;V`c)j&>jLV% zggg$@RB(igqva8s;SzSND)<(0>x=RX`fo^oPPMua7deB9TV%KO%?YI^s2hjVOrQtR zv`KDd{Tu-!la!s#!X_ps_?}40OfUieQU}@Bf%o&nN$beo{pbp%5b_^Pp{rEl>TdiM zYrvIYVM0+S|5MA=kzb*VyiRFSWw~Kn^cWUW9K-4qpZ8J*2XWOBkekfk6+rX7jA<@^ zCen3R!OI@;6ugDta%oJ3+x!G?5e&IHCYEIN61+v&odj_U4bM zO{yu>dg%*!&Sz2qnK+0~Pka`cTE}Bu5V90U^P?lcfs$C8wTW)Wb%Zaio`+%HtiK3z z*p}9M%qnkKCjKc!uFeej<);@8Kb%^B2+cNhj>EA^H9%g_0lo}O>ZK8kqYf!0d04%` ztiGIYPl+Yr(ik_Fe~7O1%^aDW#@IY*oJQ!h&TvjlKW-8tqxwi7j0UiF|^y?e+SdyJLWygBw8OT5mu*GOqZw=oWXy~Z}z zrQ$~I;yT4$FpKLH$iAgEQrI6-kJS%dyREZ&4@+UroA|=rEG3m%y(#GZ_Renkl&kc} zk#aO;{|-}X2foX?X8)4jkAH_*TZ?mkhdtR#u63NG=&L%U;;&-Rqa`{2f0$CUu4ZT% zU;3_De1bd<{T;>uKC<^M?{TqzT0G8{oXCy4Slz8RbN5kY%-cP$7OQ)2_pn&~ss6BZ zf4EC*0zI?nXE{N?twV3u_83``$&6n=nOyz4_wqBtf2jZtP12>>>Y zo}8&rOq|NmL4vRB=Szh=>nOBG8Xe5N) z_O9(v4Y!BFTkhZ*kyX`y1f;HM04Ut68?A)LC9M#3TrQW@!ll%=BMI3XY`FTt$@V+* z@DNKCW~}h~3;?4Jfc?NKZ#E6ZT54a6x;Z~ayU;L9>|wi1#^%)}T{#O*#pGt_$vE@% za_P=@i}eatY}L{4swa}+-Lo(4AZ<}&ATOJ13{)O-9q}Fpf>;%QP=6W002}D#!KXzY`zM#uFi(7ZKTkL*O3U@Z{z5AEv{YFy_9M?vLp@uMI%+oymu(}#i{ZLa`9?7js!ha^$wM(R3w!B^~`Br0ovuf8jcHs!V$j2ZN0 zr+?;DO(x|*)Q^?_P+M_eMGoX0oSp_0h?*>-4oVBC({!zWpp&UT;bvtWBbU*-4D`#> z$(PNU<3VMe1@3f0TrFuK&^GAKGU=Ltwm{u}rXo|3?OIjFBCMi#vLMjJwco(%Xv+9Rla~~4d^)GPMZ+McOM9JZc0}ScV zBjPqa5}LMl7j`u=VGS)#!X&vL+;Z`>Jh5Y#yH_2c97YB8@M-fq2KVoA5N z-OPJj-^y`wPWq&~#cH;iFJ?<`w~>LztXgW_VrfhFUXk3*Y)`;A*2%0UyivpaY9 z%X?aXFBkJ)$Y4PSx~uJCxA@_DY&v|Fv5^XDwkoK3oULZ}Rh_}OjU1TZuNU=YotG%t zzroX1YmCOlevu$5!~RDW7ShGyUmw$mGNO3#UqVdM^f3-@uCCE?>6$X?C$$jz_kf4j zvsmAD5N6vSoxdoIQOm&s2ZqCd0WY2yu)f)UP#MUt*@^=1ZW>{tuV^W_gFZTg=wuoU zxc~Iz@YdglfKTa|2vo1x`;(v3u71~`Gc zm)xTvwfv0oCG!q~lfUiPX%W0m(J0m`92F% z%$9IN5OI0JidquYO_zQ(53vA*v*hGew;c1%fSM6zig;Lv6ISJeQX9kjnk1{T%}~l# z@{x!S#gPCYcNGZLh7&4L6NXbnLC-U?|%3D1F>1m`7;{p?G6vM9+2 z+omSCN^cja)cLGf%6o?v9PSx!3+UwMZ(a~asLVB1o{IHF5bn9EdO}=(n=mo(-fFx9 zJ!*02e$bw-vKkzXihOQzga&>SdW2(G8x?058xaV*(9)-1FYntJz1M)1#z?&gam{^9 z-1b=rP2pZBHVMdyipjyfvtR+`&1A-7`Z8pj^`85MPo}IGaFY2Ej;SCR@3HBh(-op5 zoSWJF&-=~#d3B2`(z#oIZ(I^!vD&%n3h4rNK(t4A+N>X+c1Yo^`#4+e7ITnz_8#uV zu6ZM2lEym;=Wgl#g)2-}bg|yR?(O!)x4YTucDA`iiX-=&>pXSRS(c}2%*DpJR*ZA> z;{dU}FhVObKhEVe0=2YZMS}d)D4|zPn%djU(*0UaC041f-P4PI2%76S=y83N9erE?*>9&ndrtx5o?xC<%K0J3CSUti z3sX-NiuNJH-%(=yv`GKuVZ`eM(~4?pgGrV=tpF`W@AY*D?#&Z;R-@+Zii5{V4K4AP z^^Hlh7dUFs>?I9<44R#P*`B8s7lmq^_!-7Q@&R_lePO5YvxC6C)u*8#U1um~e#TTy zq{4p_86ka|NpSM|M__H3q%M^f#sM2Rh=#4g{hFZ_tmg;=_QO<&{Sn@Y?FBwL znFikj{hqj7|KtTCr`|;-{F6G}@=z4%uA22F8GKvQj=?5C9mD0-Q11s`5uQX+7F=8z zfStlvJ#DET4v!Les^?KM?}s9?43D57-ea7A$hvxoW@}#tti5?Tz^tDMOL|;C^{@&H%iFx|5OfUM|C#lg+P>d1lK!jN&Z{Gms=cwwOuE7k<`mJgfUx_v0_Sel7& zkWq()l(m0Fyj1WF54HPq5s5k@ZXwn!S|2-NQzhEe&WHXGk&+!WY*juSbjRvjBJ_l3 z`SQ2e7gPsir8s&0W0DiPOh#F-6$vr7QNUP@NsXa@fr-tF^O!aW)@NE-B(M1$5#=|( zfpXYg<2##%C3#O9nPAWq4?2p%`p_vrs282UBz81FHbR@Ivwgn#!<{!d`ex7 zx_7hZ<&Ks400Xcr)r`6s>_-}+0 z7^A*_R14g^Opzv%iQB&&g+{{9s@Ih>M1sbNSg%?@OQR66s618z$RS=}80}BB%=#dx z*8D8ULF=1CSGBNt%kFeMwI($>f;R$fE@mN#RG{ zOIY8l^Y%wyJx(Sqjo5>~DTi{(Z`%-(c z{#xp)OUVn7a-&&Z%lrl(#%bB?d3r&Zqo0}hrkIn+a}|xtU+Nm-ip3>maph{EhCU19 zk_)8z>E`&=cOLK>#UKxTO(^1m|KluW)cx@ka>@Jgl<i1nd}_hb7b5i_}e8Hl*4%{au4ZHFOlaCi-BJqU3_|N9zLn%QC= z9h>i<0WzQMRmv(|EQKdz0|%PfrS>CA8IqFG7EXY^;`*+ zCBepf_oFbV?&ouVD#4?6PY`|6_5{74eWI!NS&uihyN#5=l;Og|T`S7&SC&G)!l2YAs*(T9E%_Py3fkmP@z^joaz;2Id94ZnqF*a+Q4EyY^-QSt{^(XnrA)!imZ+WI+ zQok@@r|^V3If3lE=9 zxh8%3o*z;OuVExe@@2fQ*FXV=5_#=}w7dHK>l{ToB*{U3%gIkk@`So*1R0P@OBC;Z zgkqicsRU*3n2C{+SAlF4iHO*|v`Um&RHr_N=X_T3b6EpSCslHepB-{+f1wUyR@;ge z@(;M^xFLYt@L8m*Fu((LvanfGUs9_s1R$HzwYt%%job%7b%qPrJIS-x+DkoD=gUx+ zlX}E9uC4pLm#ZmlrQ0xmPxg4X*rnEL`Z4)SQL3&V)EQSA$Z(9gz;`;s(QPUNkbru! zq{2cJXv7v!`O(k<3>roje^9_6umFpX#T8J{Agn-&<12C@sDPpdF$GlI9#TLlq#6tY z3V^u#>CeKg83;}E`#o_-E$Y3AFN_QAWAh7T2Wv zI>0ipF+Jd7cl+zk-D2r_TX(jZKOjnT?$_)4rFzTzX-g2V%l8(KvwN40`RU$ZAiMQ? zS>No&E@L*J=grcauU9+wFUaNaUFN^OhI>dGo+X_1%DYu5?{9G>p5;AYB6~Xokxs}gg?8h zQ%D&zbyS-OvU>4`hC;0~X@rj?LoC7f5fINml+zjqV;ZDHohHd>8Z-$Sup5A`VIYM1 z)g$C$&k*2<{W0;H)WWTfQKq6%2S9v>>QkXcIFuc&D^~mcf3(bK`z&J-JXS3SZOcy5 zIUiw#ck?qv#6fDjdcdpF4i=KS;mQGm^so_e zQ|aK2FaY*-PG+?#r-E9IgE=S_4-}iDOQtEad)qETiKEUUXwuG$p9_!ZWGc`;6DskH z%3Dh$m1)33e?nPCcUC~x461EvE7KK&2MzQx9YjgxV+U0Xxq+S5P#QKp zXN^;DW1hl)bC;0y-^uWL*%Em0d3Sw-oeeW%GvCN~i{VVDd3bP2gAodt&|U=kcg+Px z=c2%OEh+3^)BWg_!#>B{3ezF=>GAHiQ6_TpVNfU(e`UmtoP)>*VnTYVK{GCB2E=sh z3gIlK5q9d_AGlU&8EV2^Cq^N0z^&Vp>(v9J!*1Q+Tn!NBkK_f{3{sF5Jv9tk;M79u zJsFPgA!M5FLHdJEt{SS!8#KIWOkk2wa@@+kQWj7^Y&nr-Nk$M??<^?$>3mWd=VV-U z`UZCZf9Q<*ltXNYx-Qx=Udt$w60vAUXn zX~;Zy^NvN4dg#sUGpc@N+4J|PG(bI&dP<7ue-2dyP7ycadYYP9jH(AwIohiGhqTVj zG{x+pWcO1yy?upbfe{;$wg}Wf-bLa?N#^s|f}(MNz`=4OgIe^}pm+udyEdQa=^PCdXhceh*lFX+#)kUOY% zJKN2+?v4>&|9}yQJkI(J_2+D{Q$M*|Z@l^JX*LI*N`MqZ_mVZQR95Dq-$Ex~mS6xXs zceCvdSD5sx_s`4O1}WV*4(TzZe=ntYj-8*sfhw*9+TvyC@u#==-#<{LYLLzUSKHZa zH>x86c;8Qvb7tKX30)eS2Wpi)Zc72jc zRYDS_k`Bm02ZW-`=Qdj}DJp1$p+)wLaav=1MtJb>rX-+4cGNT-!8_Sye^oCtTybsJ z;zkYyjr)zW`fFnY2agfv!P;3ao2{;W^J#56zGwchfV1EkrZ^tR=6u>K+kn|J=Fz^l z4?s^_K-Q}WapcoqSsUvfdS380)?Tv;v*E_P-|!iwv)@>H3)tE_$My6w_4i!MWz`k7 zAvEEyt%J4V-{1f8UF#=Pe?M@leX~ftrs5nP^;Phh*@hmc9`>4V@AglJ#$AYPfzs+D zedPYpIXJBEO+EtID}VK9Z`Rrjur6t@8K}VwDiA-PExO6HcanGTo5D3$T9mb0*|s+B z*4+GX+$~@3KkZh0JHua@z?HWG`X6QvwU=-tvyIgwwW>Qlk={D4e^t2#4dy%@Is?{d zTwmkBuI25Woo6vc{!0wDG~D6IW!>y-+3ht4tx=5=b3~K*;WHbdeVzh=mmr=p zdP;D1n_q1K5F{X;=AYN)k3+lBh&QVab>(4PF%mz~h-h{=$@fp#$Ay zN$RKS)4)xVH{Deg=T|>?E_+Sz4YVItQ>fe=(Ai?G9u1z3huKW``%w zS{)iYX>@4fq|M=plO~5o$`-d2BLW>(!SNi0E1rY!Qs7dHOoDjaTb$v7W2d2F`#im( zGRRI-iz3kmgLv*7W2irB$5!{{4AiFuT5Au)s*)=ZEUpJIm`4R=B3J zr4dO-+d%d`7R4Knf~CoJ(6>b?L8yiuQckHdu6jk9k*s1L> zfk`9R92h^0%~5X{9jzR67~3tL@tQHi;Ayb?m8~zgrI9te95zMv4V)3C$5I?p(Kv9n z@N1AEPWs=XlEdz96hI%>q=eWb4byx9Y20UWUf_EX|t*kPE^akGMz=)d$ou98XOCF zys?U1-xQPu{4vo4coCtvydMfseZrIP9<$cxyybtFK@u0A`rybg!)YL4<~u^NCoby} zpZ!WTNx(7l;58~fnQ+3dLqgqKJEnq043+Sde=DL#2iinaNt<;RJtGyIpKi_=w7;&9s4lsCMw$s$S$(YGDcV7i z1E35r5E}%OEXoi%KtT_V&!EP-M=isJv$1khYo4pqI0S~rXp=jnu4oZOXvam zf3!YJR*H*omvm+;3DHX{ggweWCWy=T&^x~)9H}+!Wq_Cs!7L#trPW4#k0G-#Ru6K!c`+1UztlM9|CCqfF&^fTs_j~yUO z6YwbZ9E4tcx&)BRawQq#*v;5z!PXn9J_BX^RT-_Y6>pJf6oL<93@NmVvv8V30lE?o}Cjr$C)6LceB)7w53S9 zPtd$RGpKR5(3umxLI+cJ-JYZLk^Pb3-ye(#277#6`3sFa{vX^x#yCP=NChp4f=r~o zYlnt;t23ynOq6)m*JRA{hiOIgm{q*>6W>^dUG6d7Qgc|HBBdX!pbw*w-Z zS;uYKVV)HU5&JQwzPI_8G;`yS^-7w>Y*vkm{}>@*emj;`b_v!%nzfFyM@Z1=4xwRH z{jr=#at*z1q2DFG!X2=7f2-AIwcD$HTjhD)OuLG|gqv1h+Njg9r&)Cl7-3r@oS+do z(d86hsE{h+h6s5J{_rU`n-marQ(e%?RD&B3CQ-dE)L20+%9Ds7m!72zT8wg=F|=zi z4v21^+@j76(bbT>5Rd7c5YNz{)u9W5KwCbWXATx5O{&Z&FX9X8e+bTPqVW=+{w|~J zldb*L#Vq!r*@2`1FhP>i?$V#MpOK#D>9H?-36+i5A&!@KPvW?Ss3L3sq-td67%c+*V@fvqP159=rn!WETGc zlfW$Gg&VqPN z^Lx}O_f8tPx6sNB`VS)i&>o)I4&Q1l^(YyEJ6fUwy|Mp@N@##VJ98`zKD05#k(z~P z0d5_dkT&d{XSoM@HAI48)86Soxz^TswzPpnWUsx#^W5f|PJ3k5aQ~2DT0CWd>~0lB zKdPqKco!OTf2hu+AdXv3L_>m|W)Ozy!7jv`g?Wcx8?bj^W78#Jaqn~b`Z~NuW~o`V zoY!kk15`J_YN!g-qNO-MSsj?}sP^2hIZ1w~3<$`PUzROZLr=`un7g&NGWQmtY-8`Z z2iLR@6h?J9h2z@R?oj37N5=ATa1+e)BhB7|0_8R`f5Hg(PH};Z@KEqrCF1ue`_#fJ zaS04mEM&?C1q$k%W9gC7@g`7bs_b-5MU~(K>r*KB`TXZJK1SxTh~J0VI+hrBU)TuB zFix>Uu|#@LtINTwf8u5@ec(DOSl=@hSJA$tW)4`!dl34$_)~j5Ay$6_qpBvxLeNzb zE;uj{e{2P&>;uDtOzehoMtfg{wOdmv(1F+r1-1wqp(vs29EOZo??idN^OrJC3cu!r$MV+-bY{M_7YE7Uz0sF8FmE^qh!62k8U)l6LqP-hMovNK+OU*yj*G~<2H1zoP+r89 z@G~GuaIMbHd0LRQ@1kbh%eJSb{;{ruj1QB`9r8dcY~ZehR1^+(l@PomD> kdXO9R{bzAz>wBq?yqb_mg4JiWrmOGw!72Loe=0?`H1|61u>b%7 delta 21220 zcmV)6K*+zN@Bx+Z0kHiffA)Fh{w2G-(%^2rUV@FOj3UVsyXtuz%*|z!Kz_~4g5-GC z%Yx;3G0Ox)MnJ1D<&CQmBJsVa5i0pHrMu?P>fDbaxb2-~9X~rDEUgECpJ3F)Q40=z zfNbm{^dpa4k&iHn)Tyc>j7!odfy`JJ>zV^$2JnNFhBR~vJd_`{e+8CfGz9`AyBqRU zgbm`zza$?b=uV3x*R`!|%)1D7QeI@jKb=2vFaK4wM!g!rQU=nxHTetLq_i~V&607@ z_qwDM0Z5BGD(}ozzc{|bnLY2;EFi+0D&x@AdgZc!e$1AOTj*+3L%S8Sr7Z6t031pW z;k<~W{~jVv<5*aMf5`V)m}2hY*l@3zx_;uCSTH4K z=yNEs_9dG4x5~wy?~mf-bC9uDzb~gCcoZV42aZsv3 zmyBYWjJ33zD0!h;k778eQ;k*-(SU`DWSbMzGLUTvs-s<$L*bskp7? zQW2Fq1DwTb=WaI7Pdk?HakldZ_x5?YSltsBi)`%061X8c&ieV_uDr!9D5>H7KED;Y z9DPu0MY?pGhe&o9FU`bj2)=Nv^8l7^3fezrx>j&`f4e(Dbsj!PR3Dr>Ta)QZomx+E z3ghs6*VFy<)va7`t?d{`J!%*U)TPXEB<{tC5#GG}LZ&*OfxX(Ze=IJq&9_*H*-c>$ zR6sMz0UDZ0XM{?x@}QzQ&o^P7`?zl&QzX4rW`(rRJ;{JEFXT7EE$;#}^W$#)6PXic zj9(-tf4@TXcf}A3K6d`zS7Wc&v=kRJ4#Mi(GwK$C9V&l8?P-YksNOV|UmU(moK*V< zVl%;B#B24MLcIU-Qu(_P{NXe^mU6G(PORP;Wi>P0^YkOERzry&`!N zTq-QfNNXTZ#t!0m zI?oK_=}bL}XW`{cBv>M$%Opaij6E$ng1Hb6d&f{EbD}O$btQFiY|chhZ%BwLTYmK} zl*r4dUI5S3^G6-a2XB70sk}4t} zK>ZlF5T6WPuT+UP&3UXa-Wv?89>mp{<|dsv^XPzf=68U? zJ&9|D#p2*sN!l50GA>UqBJ+}0uWEUoT6a&@pVV%^I{ef_>J&UmSt2RBQ1jhm3etgV50Yi1STTo zgp|Rw4hU4}$ap};;!Ymb9O}sjo#HeK69G$*a!#FfhJkiM2beU;!(IpE4odm=gLN)? zyw>)~Y)wQmow~zJQ7yd~j?Ke=AL^|;;vBipV42ZsK*n%f;|68(0%R`sNgU)XP@d_x zhI~zVKCLx%ue$!gg5;RSYe3o*c7VzY?=|!BC#*Ew$yh9Npr8-*Bf_-lCv4LNr=IOY(9BCb<`d#zvuQ)g~e z`TL>Sv&Vqc8MTGiUT;8u)2M4GI;A&3=Ll`j=idF$t8bRp3sBWL5yByz@A36wG1K>> zL!yzz52CNu4@qB8?N#VK&7%0otcn&!y);K_;)cXAJ8V!@<8qMDR@X}g*=dN-RJ|iZ z9HdS^Kv1wSS{qfpvnM2QLo&=m{UXz>0e|=SnO62@s##2#p;Nr68^gPqK(s`bV z#EgSy5LZ&m9+4-1pJflonR4=sWy&^r26lHWUz6F+IkKPEA%XB!h=Zz5wiStH~OiCoC%hPGN{iy+imLF~aBc_JaX{7XR0~9rL+W?14 zjb=i~qpm%yKoU2#b@HrdXs{~h8s)6f2=?U1r62KwXYzBKA3P4(R9y_%%?QaK0ISq0cCtq-CvWpEJ1mEiE3H^q%#?2msWFW3ee0EoxP2Q*L% zTV(Nv2#a}@aD@2MnTo+xU6(g9Qr=`@&fOj&|n)MLnKot%ZK z`Z$wdy3pl_de{m-+aI?@lF?LRa5%JMK;eqAA_zKD!*GPwR8N|!pB@UPm4P5Z7u}&o zv_1v|s!j$tm|iTx1l{b)SdRRZ0enE9>Sln0>Bb_A)=iQeBJt=CZrn}LNhhhMIOxrz zGo@L7-u?*N&=1Ku$cbSbs6em!Cp-z#D4NhvA>g*?FZZAIfx}qT0S4W-jGduTkfrDx zCyo3)rGW;xWmk)d6Zr@mbL+v-2lLaZ_@qNOu#?6 z=uX_(V^#nM3~ctz0S24LS;yd2+1v+&Ej?L(5Qt=b778Mzaz&|QQJh)SvUO_bZqYwL zt*Q2T;fpOAvR0Uc=(n*7Bt1nEx=w6}gCaEfcCoxuNp z!YQXCoRYXW5*c4oQ#1s)ar%O-7Ele)EUq_7z$026OeM4t*Zf$<@T<H1ckW&N%sq zWGFhK=@e~Z=+A=4`w%ZQ!o19jO0}?Dng3I%T6csAXP* zP%mgT=Z?L)dc+W=hef=~XQI?1nPA}1gQXfn?;;h4++(4u+E(Gw_D9=fj|zK#X3kFP zTAzj?4MJxMxyRP8+Y#JHw{$zJnrv(7u_#AiGM(4RKXlK}u$Zf*kW9RX;={}1Fil1A z8;Z!UQO2w+j!8Ca8WfXr2UCa>gt_c#U$}F3s1nm-QY6}hiW;~Qy;ja7zZGZa>#ZaerQ%a&wxHiV>0cs3?t1v2pE2?C~ zCsANh!i-@{WIFK?o`}_Xj=)Qk=qn0i!NeswrH)`zBCU0`)YD8jn+j3bO}i96w`|ve zO>szb_SGhYQl+{525xDC9yC`27$%qo`!$rlxjAc*t25-x{5mrLH6$>wsai~~vqUqK zGc`OK8`X3!ecjVU(t{v>gGr8wheWiyvVm+Jjl~}{dmV#*#)r0cGd_I3m+?^tos18x z^)WsyX?597Bn3WJBqapiRvX((Idap+uQSJ~Hpz)0)ES5F>^}$RU%*w80G7RB#bNNP z3PX0K5<*cZ$Np`Lp>>3og0y||siy7-Pk%02Ujk{5M%0Or(Cu}9E}^>`QaQMslbDxj znq&n7vw6+59*_PhMHUJM>iMK7IS{rm**>$WwjAiQFFCUay@#)<_n((13PAaC^CqAdm-aRG@2&N#z)x{zhZ^4EL2}EK~o15y{&x-+7KFf=X~+T z%lC3(h z_9?WU@+V>*{Ook2Zi_wEPfblz`9R8fm~9@to8@}`r}yZ8?jF{+-t%hv(lxFU$2$Z??MiW;g2}F6m30R?)YM z=SN=VYQ19NtXIol-oxVlfd=cD)$U>AZXec5vSpp=>$^K3VD1;f17Q$kBq#X>&Z5B=MOx< z#pCSWy;kjOIJXX3>dxilZQZ|~XG_`j+`pcdi}`}-WB-^fmNy%B_9qYSN?(ch3r|_{ z;=hFLJG~Qoc2BDQlHOp&^Dz#>gZ9PckVBBJ#}@*BVCCK~7x#;sCDg{Z;$2SdK#kFg z)Gg5t_?RJRgap^+2neOt5f)j)10K?9L$&qwh07PE2|HmN7NH+`$NHx-$oBS8sAh`I zj1fAm(C~mcg&{ZX)23>yC{i~PDpX%4`|f1LlM&HDBi?ISwWe7*j2 z;WEL09^BcjyJ3Po&2|q=sDC}X8!m+*dyXWoEs4>l^qaG&00H~ZdSBMTdZi9Pa7&2C%!gtQ!Ui;XoDrzwL0^PX zy)W;`a>XevkSgqf#AoWM9!myQkw#wSl=IXnUizoCk+sy0|3#+#9TtehYX(NWrN#1p zL0|*cMKudRT4CcB&jvu@SlgchG@73RJGVZCqBZ_R5GoZ)ofqUaOHL|_T_t|1_hBZ8 z9rmcZZv8YVFJFiU*J}X!Dbhx~dJH5@^1@RF0IPZKzXNrZACnJ|1a38>Co03WRO}0{ zx;TN-QM)EmwN&%2A2Jd)d3pG6L7_B%-?L9n>iInt*?Rw!e!GN9q|$7weSBCB-SVpr z-E$`-nCzlqtfJFYBxywXFu;H?kTOgP;+pzPStAxj!nFp4gj}{K8Wi)U;SgoDCM?Th zOmI~7$8}XhWVCq^=J0lHO933c+{EI#m!0FVnd1l_ZJE$o)<;rUG&z;207CfBQth8&!#EK?MB!2nEPly&Rp| zhx(@4&soZuZ`M!vLY=4CEke3lh`8(CAO?GO9YK#r2R!)^;k(GbI9SA(bU>pGEIJJ8 zXiaHS)Mml;^-e_LBR2~S?cs5MuM6}

    4EnDh&C3r#WG>_#fB1Tl{dn-A{K3I&^18 zt)DmEpH#|v<~16jW* zYSR_6*@#!UtvKXkU1wJJIvU=nIz+uvr*`wQ-u}w8H6;_4+4g8a27ujvSu_pUkfM?-n_~P_|%2!G1|@$Hl@G_?yM{t$EvHT$XI1!3Eb05_m(T#yv9+E$g%{y zJ97z$_Q@BRXj2r}kKzQ*Aaa&;{2&Nb zH10=Unk6zeFA(V%`n>qdOI`_pK)m{8RL}@HNgSQSwnq_hc_N5^znaUQFhE#{6GaQ^ z2nYuw67d24I^6)mVwn;Yo=A;y3S+uXB!jLK3E|O67!!4p#Ddn}Q+2>AqjWVEO=RMg zB>hhrW+EUUP}#Zq@`&~Ro_HCDGBl)`_pbSf3FD_O#~1HkHexui&cKi*JEU*G)U&UbkE?QXMJ-9zM)7uSg3r-UAj9O{wmP8j(*b|;T~ z7Q2-Pgo%9-=tJ0=Ec^v*O&tF8wG>xRXN&0-t$yA4V}0Xocj}J&e72gq%Oz+lWE=yw z&mqVC>uIr}e$3r$L9Wo#Y_nTbH^8^g^SSHZ(t*!gGQ(Ye-I7)OuV?p}`XQU=)r$Nf zOp3*A=h;9{x3e9rR?Fq%jh~C)Q6)RuZ&R^{`dX9FpYGw-2rbON%ith9b-XB(mCpFU zr|OR?(mkbeb}UY5s)<*%=;3AMiz?%MuF=bfn#PrpiCj)&Ra&E*QzzH^ z-Ugf{W$Gb+-bS_{^RHYsnis}-k(GPQgxZ7xhF-g{y$hiGWPR&mvlk<)~+ciV{8j#lyU~@r(UY26s8`l$Hgd9#BBs*0hl*N2+YR6ni3d6oyJgZlOU; z#xC7cJHGiT$Fs(8DdIfpMHV!7wFbj(^;#j$i~5Q8xBL;w20C7>a&t2o7T;+rD;8_9 z`fYxHO@Ea3tZ)|fk(re9SBg6K_s8x)4Z+LWIAjNDg_6AFI1z2pHYCvc#t;-=H_F61 zyvsn0Me9V0>$8)bef47xd#dUJnZXl|kXhWJolUYz&FfecOKx`t7kL3p^^>>F@mqq6 z93aTvamXV%Mk@?$+XEWV@GR04PiVtoo!}^c3uCSwjNlQ6&V;gfIRlHe zGwVV7oZ6ZU4$aP_`Z9HhzrMz{RSyUfT$-Ik_G}|ql7qX%L>smp3N*uU2*vANpkkfh zcSwwd51ABKIL0#H%w(}jP7gWCW^t5bbfTeZPRXug21{UYqZiQ}-jwJtgL7OfNG?dUJtE6nCu?>U)5M zPQmH12SgT^tus-^t>3Wg^o4FU2Dfd00aE?;u8hO@K-=FQG6??LKv8|T0VMfxI}L65 zLmbdfZQ?jbY$Xw#v6Y8)$m1|fA3D=0?$o4kctQ)6#T#0um{)H;%q_1wO)|d$Kz>LTS4m_efjB8`#pPrS$Q~@RX05Oa?r6AwW_q+- z8v->`18``MdYQaT_>sCj?uBt$GVpRylqnrkBuPZ@Rs$T$jC!&T`n@tc&Qv-H*Xf)@ zF;otwZJKH=3{wJ`x`uK5eG$Hg#g`}I0B;B*%qn{V8?_AJ`9Uwj>h=bI!LUGDztEAL0dhcF`{QB_%#Q&(v_1x8YkUl-&i25p ztug9>JYFU4`0u{72JD5e0jwITWElJr#zFGYe;t5I7N2Pp?!&@+_X9Z-JH&oOMfPsx z@YKG2YLtgojnZD-C5p_C(OF)GU{q$ZA*6Y#;R>IZW=ZR)sHoh370TUziK39xot%to zUKUVy#ZD}BWw>!TAgXwZT2a&p)=8Qk1?Sk#3Ft;03IROgPY6V-J0b8)Z$f}wbS4BY zG%25raoLp+zynW0AXyvvHrUlq}5inyXCGo41Hj49F##NoVX(GYD^}#4N zHw27)9Yk+Q9E*K{-NP7v02tyq4aXeOX>9qAFOl&4*H@vssqkc&9wiJP%@r(aP@Zs6 zLox)6I*+vDG^Ftcpc+~w$!pwxwOG#Zwe=)Vy=@$oJRiv%;%aPakgLJ;g*`TFY8{&L zL+UB5P%tzTM@X&%g$Ot(ETO&5OoiAV*_wlCuAnhhiVo$}%1khSz>Xp15f2LxJ(n3^ zQtyoilQLkGBZ*kY5ojPYl%>ts3>x2@%|Ks>7-(GjY|vnm=Ys~3HX}4~*h3OF7~2HX zAX{Sv8qpFekbrzMSOZO%!y2s7IDtsDh6yAlalUQxnjnD)p-$UP!tH9reIjr^|{fB#m0eRP&YOjz_WIFp4p8MYH_ zBg_jeLx)ev#88;9VvbywZ05JCMa zJ6csbrn#%367mW^$1O$Lu-HR=78XYJCc#!wS_@#$k5#Dq&h6p%3#}mMB|V`PZ^AMa zD#X$S@-YK{5$DM55(-QQ& z+C|RIZ2qS=U$1tX^%DEkz!-nyZrxo4cmLXP0JppK6Na-D*}KT7t5F)IxsQRrwqqhO z!;b+lz6+-->ME2*InNVPbDjlP*Lg)p{f)e~HH6A3IO*1{3B@;Tf1$*pL{i%}&U>gs z4(3pQg*axl8Zx)F1l$re7Op*-%_xSI6$^`fP1RBcQ?8} z>jI8^D|`|geLMUj9eYdsTPX3i_$7XIPKz6Vid|v8#6({ozW@bx+;2#f>*SNsm}}+V z!V%ZYCo%EY%)i5TX3NM#>=%58#N0b4PcrrSrRMtavylNbOUgJ<=gdyF@gK#k4@{Ep zfDECsEy9y`J$P28g$U@ds&PG)hltKKhbeM7_T zbKmnFc<8WhmuaY}R?*{0-R#Rl>QwA4LqG(xT*l;=PFK zllydTss76lA+)^rB-{&+a^Lt8&kJO`)+rG1SM4c#3Fhj2ub*L^1%2nhhP%+qh-AWc zgo)Go2oK5VA|$NYLr6HYgD~Q({R7P3*0!_hOy}A3&!91F1n9^Kl6eRx4bh7#M}+C!E$j>uUt3V zElTt7Hnng8Z8;)s>J8tFXCCmH#29N#YZ&a}gjiiR3CMg67EqDN$oD>>(Jw*Aw4T;IB$y6bVj zSwF9CDId}U-nw_Q=jD!xcDLTRte>}aA7`uGV$Otn-ntv_X|w*ZxOHKlSnQAMwAuBa z+>U)A$Ng(I-+7O--TVPvvQvqB>nC?J+bz~BbJ?JcmJyH3e6U) zErhdA>nSpLkZA>-*gwI2Vkcdnm8)_uR#^k9z5Xf8K zI^OqK=eqlvT7|xhGkd;Wtg$6Jx9j=yqr2Ln0gK1ky^EHXZeq4v?0#W;mIeb}n$v}q zj{>W4qh)=Z+H_}sDd*9>UCg|VyIn7zD-ZLqxPQQZg~?m4e{$l~51t=6iP(mhzqSWE zuu97D4~I+~w715)X#EJUBb>pP|83Kt=;<0j;F3TM~LHpBMl`J)q$Mdd&rLMkcCWJl`81 zhN3}yj8#~Fs~K9uyV$)$FLbQ;Goc&Sk-_pcLbvsRy5)g=2zl;j+48kmMH7N9r zh6WJkDgmK~8p&Ta(>z55d6}wt zr3k8XV2Jm4Y7AKuZPIO|G$!}dSu{n8ma)`Z9dCqx@oR#k$T@$G?TNGOlw`;aq=Eb} z%)oc{dke!F9q&IAA!hqG~)ZZ-4Hk-TooUH4X}ZdP2Zc;oIC8*It40yj$+Co8L6NqfY9mMF>`*Y7G(=VZD1IJsvvhKH!KH`_7lK`Qkl zuRGx{e+Z9x?QlrDjT6Q{ak2)rB&v{eC#IxxyZGU5wu{{_+7~#F&)db^yLVUZ!G-#N zI0nvnTKNBZt`=~KlppK4#Qab7g#Z-vV95E%M3BS+Q;;LFEXh!kuW}OW`Dxfa=sk7k z=!`&IOgsw%1NC)T?32?}6K;OnSwHXQ>qm9EX?D9@tkf_ycU{<-pCRjRwpfw?>puy? zxURCUCO0@A+Lv_>``nY$+#-xor-b`|EP$UJirGE`q>06Fxoxr@lw?(WGhYnk0Jm4q zmEu&Pa9~BWLZja?Q5R2sn0<;`Gw~C2A?Iecbyd$o7wgPttJ}q`oCDwyPqW45 z=VI%6^N00fj_o7^=x%}eqI%C1cPq=rXt%a;2L!A{^$M_$>%UfB+WgSlcXmX7Wdgdy zn7FApLQ8h9C;MQBGm5jQ4TY5PW?1r*pCHFKU8Hx(VeFi{?-=IcB79RQoG@x$`P{_a=K*ep&0Ln0Y0Tckt-hGxkdjg~= zDml*?g2)4>3sYL&^a22a<+2Yn3LIX9iNw1=dBhHDwikyK4^mG>KbH(ubt&f;! z^}@rJ?f2m7REd-CX-x-z!!B%1=Ynr;O-Da3cbnPuG=g1b%!<&DX4wJLTWd+@MR}cf zKPpj?M+5mgS7$!_;z(e`WkmlF*`r?6Rwof7=gumpG!^p^Ms>#PFs5*T9_uVLXk4&a z)t8z2ZHq(bO^apdEsLWJ8x}_~+7*C_MOGbd*p;#T65Nujjp7`CK-Hojk75scc!vBt9Qvn5x2o zm@`|-LEf9)!V-auVU|k@IB3a&LH) z*C`A~LIo%$f^}Ebf@j)RwU8P1RZS}1_P94EN9gq3$q_JrZF@2kJ9WJSb^Tcrt~RC{ zDQI(Q9MUal9o4_Nf;!94r$H=iC^t|Jrf~-M>0tNZOp;AC(_t@V7!`!G-xfrZ(H+@L zLmI5HY|?}8nXa2ayoO5EcxP{6wC*F9f5z(QGL$gQwV+}8w~AY#Z-}#_wHw* z%J%Q6m4LRyAk1t1W5R(c#pYKnqDTrq@?OFysy0gr$yL5BsnixaTK!$KEE!*<*D0XP zr3nnGl3%5e{sro58bVc=c3=65rNO-Hcce?shQ~X9T1)Bq8pcupu76hXKXML;!vZ4VXH}QT)Jg1Uo;Jtoj7?7u-`VeG*I=nwa?!)3xxo*cV!V4g#PiH2E$k0Z<7#q{~l0qM(n+4?(z9 zO&tPjTtgI^>%q!^rhTwNFh`DU9PqknatdP+7f&KdBQaf-eW~V*$2xLCQXo%iIf zpFl~BhQNBCpAk4jAx{o${KNcM#&6L6+{!t7^Qt;xM(l7wvWsFw#NtU}EwiUqKT6tOjOvZvKVk9+CRaD7ALfArI zbWkUxX3uY+!$BLhwIpObi3bheOC*_}-e z%y=xqJzb+)yqO0LR87P6G))6R6Nj3Am^;%NQD$9px(LVPvhs%eUZvWpRz$0n|Du1` zl(U3fP9`HiQ&07>mqD`UGs321V*5AATrcRDv4AlZqlkgD6Yx(;Poak3PNq z`%ID*3_<4)L~Czjar-F6H6SO7PM-2`9NoWVDxP$|**hZL(I}PF52s-#j-8u$H9X%Nb^-7mS&|dmB0Hn9HFVaq^x!?!uOWFnx)?9q=Uw;cbL8qA? zoUdPRgdeHo&x;tHfz*O<+8qRc@94)tgqbMXpkJY;vQ48qMA$R$!qQVc%aQ$sJ+yGpqwSDcSgK_ zO4LJ%m+&g1FJg=T67nRw5N?FCLDTA+}8QNPv<14G}A{=i9;7b<$+(88YS5r1eJN&KQPgI?tzJ@c?T-f>Kv%h5#K<@ zHm(81+1S$lfy0NE;xr0>69LPB)nd_3s}Hb#8%k%}q|Ek2jn$0S&T#WUE3kj)Cg(zu zW33v6ZpX8@p)o=Wnx~X$;njpn4|3C z>J6|u>(Q(%5;dM=TXl~Kz5(zpv08qp{*KI40V)FP<^e@?S@Kgq%f@I6Q?^bqLONlC^1`?YvrB zHF{JPx|S~+mf*;L|EhPMJU`Aqs;2w!vw*+L80Cu3c2@fv3j4^C`0%@{$m%6*@bR|0 znnAW#b9zm8-Lghnj;+wAs(-iP$-L{`*Xn8x=VV%ADp_i30 zZgF{1A^h5?d(H6E@y0Zl3U%8T3%J!j#&*)L;;3F1Q12ywlIGknzJ&2}Fax3fS2pE~9>~t13F*(8a zL{esg3HX;f$i5D|pC3+INA~VVS15&$|6mGTr4m++_Z)0GjV*Omi`juDc3e_K2t8Ed-ZKV=CO{ zCwPls$kj2iB&(O;EyC_3c+0T(h$|HU-)lDb)daFPe?)CkO`+CHU&wPllM2YhL411R zv&hss9_xaTr8t@&9RUuM#M-P)bUUsid};MO4D)7x{Y99=wzSq`R(ZoR@lPpob!NaX zKfQ4H;nYHCwxM$zj#a7w@`4WVWnfY-jbI#gNGZv~>IG)?<$QZeED4v!xVij8bfs_R z$mBG}=1Jo;LZ@|xb7J~&lc3owHFMJ??3h6?potlwE}_ZkpltB!g{*2ho_S$&gnYG~ zsIl^Yst3*L-9y&cW30U9&9UED;&ryYMoJ^PjdAETwz)19H)$snqICLGQPBcFU(+rALmGqbd7$m{L3NUDh@Gm-K%8 zJIvZzobx;E$zF1;<0M62)gcvs6@wlv$@%|(!<3qJHABnz(s#|`6XbE|?=TMVk-cwu zkBimfakk_{ZrsJ{ZoQeik1Au{?s>IX-Fv%-#p+M>ho$?&U1AgHnMFU#3Hogvdb_p< zA#hH?LgjgUVp>_W?luA>=e6I6H1faHsbaW>TS=!{efRgsGx;4RtNw^dM$j=pO707P z8Fc{buUW0?RRM%poXf|xL=WIJi(5E7>LBdF`2h*sFaz0sm9TnkIEYj73be84baLY~ z!p=()e0jMzoN#Ag`lzGu1JvSOA951KF$rjlGK)w6uxa$l4j5s}qfA zvIdD&cJpz@gOi1#oM#HxV$(@@Ys*v}9FzlClfpxMn$LZ?U|qB{Dq`-1cZ zUCvqDx~tt{_lr`vvvKd;zdZM^-DWo55lP#p^=j*SPqU5u@9x(V`l*68BO|=KHiAwN z=GB{nZHcH=%N8bWL}alad43vy;wkSUlh)?>AvU-9kd*oA9l``N>e8~m5Avc%etam^ zGXuC#bqFiG2$O{monzgSfZV7N)NnOcS0N|`Q;Yg(7`ydj$~TN31+m#a1*Dli6!d6& z1qfpIExi8?n@*U1aMV*eyjS^InSU178-x5Z%0pf5Z9GpA}YDG#E5eyse5+KK}! zav<;E^faJA)MOELP+CBprfUVAO#KNrE9)4!jMinKU!G3BY|b1HD(ft8rxW68Neh9t zL3fr(*95c$>h?1gf#MAGFqKihNNbwc_uL?1-B8Y1Exms|yIVES@n);-Pj^H44E21} zle>XMi6-RN?m>Ree0}SGdb90T@_@52gSdIV*(~OgxY|`4b%bcKV&8YU;!s`E!e}x{ zdD0Y8If%o%sEwIbKlGaWkhrdYfvbMQlk6l)4qqH#NQWK~x9O44w6(jitC0z7XmKKU zTV)uWwZ9DB3m(clY8B>?VBETiB3PUOtDlaiVgR;f6CG#=*+%_;>&Z|%va-&)0a5A) zWgw?D47uj%LG_;DY<26+Zq`3s%6BxpNB4H|{K$%2tydhF^=kRc1D;8#Sx-q6?!Q2a zu0@>Le7=5`1J-=w&VYlU#+k1lAD>r?c?I!y>-7>#x}EK2-sAdKj+=ARC*3Vpv(V(c7GHn@a{z|rCtvS z)tZMNsl*zo$O_ErLc@x`yyO)r9EexHj0(JTjuy@LS(swBgd2j0%M(`AlBjOF^s9M@ z1t6RyC$GBYn0E%$j4)Hg!$O>}Dj$^E7~a<;S(R;nhEleYk3@VZjsyU?t4K(ALR-x# zjA=TM@-!Vt09^-ROwd7GMv>aoMvAA>xrz+ibzP2NkgKxBw#1{+Q$UeS{OlwpQg z52(e9ut4h`wdP!jLSpbvV0?@N4X`z;8{*)yy%7#2oMR=m@eK}Whc|@ed31vdp9eR% ztTsr0;Ka}V5hqWzwB87T5bh5UIB`<_jo|^sz}LS&IKZWQV*^5%Sa0jd0LL@~14i&X zF2JR`VF4iu+-#Fh?L{^*>P=})7{UTyGCujKpb_%CC9Z>C0g4E@}O{^^C4d7 z6mYY2Qbs-CTC9`TXw{eusV;}Xo1qeuVNl?O(w;uynyUe+pA|GhUXT%(t0IjosM$LS zU2m|aYIAEAB)~vx2moi;Am9jbCV-9 z@SD&h9K+hEIK$Y8K-h(rJ_UPu-^S>@2COtj>P3ia?qlM%&q8Pl_d>BrKu%Ol4(^== z3n*_UGal2IA=|9?+%J4GWyOG#%#Uz?Oa;Msk4^uat`H^R+|1^G-fz~=t6N-=&fR+B zk^qa<&Q(`P7qA1OJ;Kvw{rI#)3UA%V*=o0#gT%AZHqNzToTDEHi0y?DT9Ns2E~gQHsHF`n z66B{w3B794)ZS*6?$>fEu}XFAo?b-IT*pC=>!Tz`s2>KHU9NFv_0$ONA*XRFq+KsU z^eU6vqHbWl#vthE;{wQjI|bT%3K;hU^R!aV4>>mZ+OJxedZJLY4;lWB66>c$`Y#V7 zUMHAVR8t#FvgBz6XeoNHuRCymZ=S%j8Z~EE96U~HXoC;Stlh;22Yr`aU zskAT-*uX(FY!&X;46R^2M;Ndlrb6tG=!WWKX$fOAQuWN8*C@s#HrN?|%LRh9xh96r zL1Ta}>j+E5a@5|;R=SC>2;ZAaFH^KL5L1)j&CY8t@X5(E_#Wu@#O3-YFAzEPE;8Yt z)ajOoqDXhutS`yn+nRO^HUa7wF0Y1qKk$n1B$Be=;>rN*6vpalOZ9Mgl)zIxkCJ&m z6p>|k1O@RP;{-(3)k`#gTl+F#?aj*pX8lZ9(&PH6hh>;!I%^|YKX!uYo(%wGMPDio zZXQ-g4)hj=jGN^TJ<7!k3zb;0CZM-`*yPsjLvhE_OoW4sIxM8D{VU?7f^T@J-Jgp{ z)ERLLv2M}&*b$p5(WZ7j^oNL)?4V(*^5LL6R^Jk#Cp^oSzs0_PpgJHc#mVa*lbq0H zGRlIjNQk+O0>)}gY77lbY+jtlv_Y^w)5;=w&F_dPzxfT6!|od2*)%N4d)mkZgQj@U zQ54pPP60x_=maLQqXDuJ+C-i0^UWXbyvflwgTC1HJ@VGQn>{agtjs5OvxQ~x`5w7h z-#*V_pP8zS_gn;j59;0GC;LOzlf2#t$ngU|t@b9ue_uACtfG)}~N)dE@?g@{Gvu@XQI@dCqWf2w8H2SK&wXF(2HpM_~OK0kHP_TU2Q zeI)fB-nQ@yLcbq?oFGfmR0QoydTL1~$DBqUEucsWKk{CG!unpFw?F#oaWZLX#2)-j zIh0c#-;_~gWn4XL(kbma#Z*7NqQZ=7gmDn=1!vor+KctqQdeC{UWk+%&GK62H~274 z%Vy8h3&I@z%)~dvoJ5|hXk7kM*AQ1ME-8yER|_@tSs0gGAk|Md$FIKgfY&GndFX3G z5f}U)XDOq9?vJOCOWu#Cgm0W5XCb=pVVIDadmZy_esohA z@fEtC#&_7_*o&n^;`RE4WZ~g>^-_qz;CE<;V{H9@wve_tu31Lc8jOYT>b|}~tPe%J zAKM>^n90pR#7%9+A$Dv#3~__QYf$S!h#UIf*PznO7W43sjp2w-b>PU8{j!h~DY1V` zRYn>wiK8#7L$3Howe0Do_U#BPw8;EWn>m$P$OEqDN~kOeHr~4*g+X;cpZik@9<_Ud z=$p2GCzxh^7|_!6ROVRAlev1sQ*q<%K9Rf=d9hQ&+g%ue4=!lJGA=ot5VuoxNY{$h zg_oQLE9BoiT=IPjsK8`u)i{8@WXSc^i)q{T*3wYBXx2cvG)@6bbl71Qg*c(jRtZbz zv=`MuA}@UPPEjD<(QRz<>Ze_4z@wjgve(0Zm#cM5c!-lscyHn>r-3k6D|Lc;0woIr zwY;51{ukmt5bXLs%X&djer$wv+eRlLQ5mR|WJ!5A!q>M4xT5*1_fiH2QE<_s_CZKI z4ASO?pjAz%=4zfJGPJ}1>y!j!L0;R`WE|jSLtPkluTYn*ALGP}FQCUab@|=HV)f@@ zb?+_RAMO%)p>bE;6JNxy3AhV)l1`R?ASM`R@p_{#400-i0DyE%O{l9pSmC|AGELnH z2$*~l!CO0t2H7g$%B}&e5>o9Dr?gZPxiS|hfSgK-EX~4Pc=&wEHR;p${E$L;4I@F4 zFXMf^1|p>0)$d>DDAFNG4)R-0eoB%j)I}r6fK*zdc=sa|>$FcLD0|0DjFh|zWTQw# zf5hgcRiezII`ug`=d+TZ%Nk%hsgiU2?2uy%br7@KRT6G}+*_5u;jZSUkJ^-pST)^H*p1syy>Y+MchPs^8BerpE-RHerO=&CLhVgr{ z$GgQYwN}%Q$zO_6b^V~uxY9s|W6TAeb>qDak$&Dz_SMTXs-cxL+sD1;QhBl7qT#o)2HCf(NomVu4w0T;X5Uw7^nOV``F zv(5YgQJQnVUf(a(Ti#Dwf_PoNw|Jc0yL8M?_XY#mt=G%?W;b>jvjIJCmfn25+PQy0 zE{E?j|MfN8L)!2x;jCBQtx9=+e~T;eEbjpm+1nwAl=gkl(`Nl+v0bcJ?ya|b*sP!L zAD*6(%5-*{+1=e@PHI|}^vjwiW{QXH3(K%N4)Y`Y*bZB);Ji`ASLQFNk-G4Nzj1Z0CWulA=IxPAs2gw07vYPe~H(m7H)Nn zG8K(F0OC7Tp9(d?q3mc~vD)vaWk%a)8H?btYB^|Ic9PEd2rImspD7{^Qsd=Q7~*79 z1SCK2>Va3rnbA`V=0KN?NLNuGrm}Ugkkk!V4iKb=jfk5{2X}-4u&;A6t5rD_)M^~e zL8*A4*c@FlO_|->b`eS(e{~i?lXhPGTzEt$Q-SuGP>E+$-dZB5OamSg$}+mM0=i~U zZBtvBt{6OMpqJ?&N-7^Cflrth>b6{WAHmBF?6ii`u<1E#oO&Dc6#kpLgslHghS$rM zz=O}b>l^HBm>HY-M#ftVXF|=xgHsxeP{4%tBGA8UE-*S51-@%Ze_;ok?nkE__BrNO zm=38=k9W6?GLf4PgF>MwBW~mzL_QD`(o+qZaX~X6rdwACXEBYiQ|JD`wMxrS6Ye@O z3W)=5-JV>p9vB^V>jvj)fG~d~FSurqg0$$VVbB7n7E;sh<_G z%5kMU3{R7!VJafkz<&??FpQE_7NXuir#Zi|u$ERyYb;Acf9AoPcPxt3LvLoEQS~d! zp1((>0qTL&Q&L2Cs3LHRxDnUW)XZX3J&4NDR^30Ob!Mh1W)CI1pStPoDW3>~I_{u)`t>g7j!uhr)3f)1{ye3nZ>X4@kq1j>@7nA!YZfWsJph zXc&?6XbYGj3y3YCx{niyDnB^>y_ri`{Bs2c6%)Vqe`Uuji`D;tib_x3LAR}$L+V!v zIlJeTN;2@r`o`PtW;@q=T5osi0j9aT-O7JKe~yLRLA~4AZnkxIjPUvgj6mdZ)^Dgk zXN#Ts$=!P6&1X-uIq)Pe0ROM&^=<}cKX$3pCfiai;@mE_yTx)j+buw^foY7VjeF;A z+|?Z2f1nL$<1SWG33K<+UG0dh?emkn`LWo#x8B`ih5xeVOyG3AN`bbCAJ@08clW$p zqKefhPww5$o88WycJ78wqjZzCjF5cPxo=(E36dDOPo`7n{9Wv!lYlle_qZuNa@CL zNRJ_XDaCW_{QM16aV5|eFGG(%y~Y3jfhtvlY&al04hTh=Ke}waq*Fl#=KrhhY_=QK zkpR5!r^q?8ZXRHE#HJJG+QtJ;dU`e-Vu;OYVtn~YI`i}+iC=-hRF$&1H*LEjSU<;Mwka{ zXSr;)y7tYdwe9$x`NIOvf@hfGcp#heX|HSpX3LmI``$hPJ#7J5uOh^ePk&`?tb6Er z!P{7S%__`>8}oj{XOzx@N`$y;Cu)a6>2xPDP)uX*x zYcs&Qq`hXK1~aHY{Cu|PCez+Y-obAQ*Ia2))^26n+PGVD^TTnse7XO$Tk-7-e}82H zSKbQff0#McUc!;gHdc?+s_ytidh57W+~K_{J$o*my~z5*39dW2!WGRTKb^XA1cXQ}%@pbdx2ipQ=v-H%Z=fe^*tUU;W^@ z{PZESD2#YmjmBzbX?cq19KhbhNKUppjM?|HFV2`9o;+)HXzZlXp^1|=hbK;&92zNG z+)|7PbXWz)a}=(44#G=;OD!@9;&E?rh6|3JhKlX;^oq(LJ54Q$L>mm^xpR!6{-_;W z-Ip^^pB8AXJrJu(u0XK3e;&YK9u<^{bfq6W@rMeFK4YeU5kl(6G`bt~Xkd#S$WH4Y zYZ8RG>j@Sv_Du~#J5iDbA-`@8YxlA|(WC}2nnev@=u4GGBpq!7+4oo!Z#)W?Cfh;Z z7NrEC8g@uIrOLSK6=_DY>Is-}JeSoiM7VRFH{jJY6dS=Y52rile-xSSsZ(U4+fHHg zb6O@L&-Ptr7g~VIY(Zc@pW&!1PltQ-*FT8Bl-q35U^NFOja+kJ{4h30y|%9_njwEa36RDt3KSP!{mVL=)gegyQmk zC_wcIPriH1TA%Zl|6K-2Tzu+-Bf|`*frOdw2+5wftV?|Me=F4_0msaP*Qoep!U?|) z33YGnm?o`rI;44v&Z+vCinK9l3a)A`p$F*G`Yc%~F2Y^XnXM#5FRc*v zDEpWoF5g4%{El#>*0h%aVm1V`grJmG8}&Vg%)(eb5bBWB+TAtElQEPzfd|v8q|i~5 z;2Lc^M%AL_IJc4ZTH$5w83>BIuw3il+SaqV5$C_3e>~rEUB@L=NX^}wzkb4EpqG-p zrxni%@CD>5==N*Cm{7u;jk;*}>F?;0`yu-@Ml9CH#IU-6l;;HEXk6|M znS0IHn&XRjnws7`^7K_wCTgl?lNhOpql`u>&S`l%7rDL$i(3`ToUg3)cDE9&Nufnr zupwMue^sk{@o@V_eG=p;H%j&{(yhXu;`e_tdDM38<%%!!ZF3ni>-D z!1)nDFISH;mE!@PHW&^TgQBdCsf14vT2YY|5ivY=fGkbGqu6s0dhzKJKrYLbWQ=EX z?R)ma&a7{XwH(O2aGvF9WZ@=&^$~xz^8N_2e-QTuOvNC*tx^F2PoODr?7qFs!|oEP zDYz6r6D)C*Ea8hm{;?)#1@n1!PV5|Kf=u4cQghLkBJDmw^ZLx7#@#|^PV@>LOxbmN zj?zc=M}~iYFeVu6@pa`dH1ha=a040R2zenDv?K~Lk@}Kve)?}^QpDE;u^3XIyPTTv zf7_#{aYdb^h)Cl}KShSsxA;#{X8a8!8&&CGi0>+eN9KYy-R@dW@XTuhHfJm}^3Yba z&>B;r!KN)`Id_w0L7TGch!|63fN|#a^snksYMI>*h-_vZw`qrYRwP91$C&!w=3mmx zjYHNeX%@3tH7fpNgoOF+SXS93SOaO+e>%z@Awj1*goai1$8sXcHT1fLewX+Pcfi`M zR-4ssuljA3=Xo>jD*h5~T77AwPRE{R)j42Klhhi*<=#eF%qfC;hJk~Wb-&#|M81v%H^mtB_kj4eOMPG1e7%1CpL6Tii zQDd{f6IE70pbd=zkD9d!6qfzpRb`b1j~P8sYb7Po@in)JH`-!+vvri2Or) zcxF3%tFhFhWCZSLi3;?_{v#@(0S4{Nu{8M5#uP_t7M=yTb!bA`uy>y29_ZB&35HF3 zrvv3$Tj$x*1`?6I_6pB)f17JM?U7l-{X>Rn@st6wyHynZsG4HqU1-dqI+KDpZaEPR z33i%67^Vli5N{Ud9e!=V-hquxmxRT=&*|&y@EVz=X4P_DuQ?4+-2khhDo~4-;s9lJ zV7jB)bGzmw`Jpl(AV+>#wp0y0F=J!y*51n8TZFQWz2hES(>_obf7Rs_j%!=HLzRag z8Oz7PO)$@oGFi^3ODH{|hsB?~`M@q+= zK%J?w(>WDYf)A`uq2TB9pVRmlna3i2A7<-VV%&XUBPhc-#SX<1={>D32e1B#o4xdb z>!@IT&s1DR`;wYDe_$E!LFnh=Pwn-DSp5x*s+t%JL03t*;J`qz6_~OQ3=cA~8_F5& zeHGSjO{qW!Vk;EbB5Z`BgsyWKGGe_G<@wHE$~Y+JdjXW4K#b1Ijp~ifMGiplj75v`PN<>B!l-xU)sRD z;T#}7#6M{eP)`g64d5F&1)*!hQpPzhBJUbtA1*_A5m&;`fF!}SJ{t(us0vvhGvqOd zA{8(d3h5|?f9OOrkxFlgs#Y##rdeoTUcv9$8acwYQH!8#__UCZ6n>hk5r*_?PXxC| zBoUC?I})R5`7PPIya@jprpLSQ{qOI*@`d$xnM67NS$qkjKjN1nhh6;;tw!QFtdzS1Xqb=w$!FfB9Yf@_YTu4VOI# zS#g6y{*8U1sO9zZd-FwAjjd=@UEjKe{TkOFRX;w7I)CdyZqWCi#hI<|r9$#*LLv!P TpVgYKzTXF@=-dAR)+L;(JpX26 diff --git a/docs/searchindex.js b/docs/searchindex.js index c1a7c4c7e..6690e4b52 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles":{"API Selection":[[1,"api-selection"]],"Automatic Python function Support:":[[1,"automatic-python-function-support"]],"Batch Prediction":[[1,"batch-prediction"]],"Caches":[[1,"caches"]],"Chats":[[1,"chats"]],"Client context managers":[[1,"client-context-managers"]],"Close a client":[[1,"close-a-client"]],"Compute Tokens":[[1,"compute-tokens"]],"Count Tokens (Asynchronous)":[[1,"count-tokens-asynchronous"]],"Count Tokens and Compute Tokens":[[1,"count-tokens-and-compute-tokens"]],"Create":[[1,"create"],[1,"id6"]],"Create a client":[[1,"create-a-client"]],"Custom base url":[[1,"custom-base-url"]],"Delete":[[1,"delete"],[1,"id8"]],"Disabling automatic function calling":[[1,"disabling-automatic-function-calling"]],"Edit Image":[[1,"edit-image"]],"Embed Content":[[1,"embed-content"]],"Enum Response Schema":[[1,"enum-response-schema"]],"Error Handling":[[1,"error-handling"]],"Extra Request Body":[[1,"extra-request-body"]],"Faster async client option: Aiohttp":[[1,"faster-async-client-option-aiohttp"]],"Files":[[1,"files"]],"Function Calling":[[1,"function-calling"]],"Function calling with ANY tools config mode":[[1,"function-calling-with-any-tools-config-mode"]],"GAOS Client Resources":[[0,"gaos-client-resources"]],"Gemini Developer API":[[1,"id7"]],"Generate Content":[[1,"generate-content"]],"Generate Content (Asynchronous Non Streaming)":[[1,"generate-content-asynchronous-non-streaming"]],"Generate Content (Asynchronous Streaming)":[[1,"generate-content-asynchronous-streaming"]],"Generate Content (Synchronous Streaming)":[[1,"generate-content-synchronous-streaming"]],"Generate Content with Caches":[[1,"generate-content-with-caches"]],"Generate Images":[[1,"generate-images"]],"Generate Videos (Image to Video)":[[1,"generate-videos-image-to-video"]],"Generate Videos (Text to Video)":[[1,"generate-videos-text-to-video"]],"Generate Videos (Video to Video)":[[1,"generate-videos-video-to-video"]],"Get":[[1,"get"],[1,"id3"]],"Get Tuned Model":[[1,"get-tuned-model"]],"Get Tuning Job":[[1,"get-tuning-job"]],"Google Gen AI SDK":[[1,null]],"How to structure contents argument for generate_content":[[1,"how-to-structure-contents-argument-for-generate-content"]],"Imagen":[[1,"imagen"]],"Imports":[[1,"imports"]],"Installation":[[1,"installation"]],"JSON Response":[[1,"json-response"]],"JSON Response Schema":[[1,"json-response-schema"]],"JSON Schema support":[[1,"json-schema-support"]],"List":[[1,"list"]],"List Base Models":[[1,"list-base-models"]],"List Base Models (Asynchronous)":[[1,"list-base-models-asynchronous"]],"List Batch Jobs (Asynchronous)":[[1,"list-batch-jobs-asynchronous"]],"List Batch Jobs with Pager":[[1,"list-batch-jobs-with-pager"]],"List Batch Jobs with Pager (Asynchronous)":[[1,"list-batch-jobs-with-pager-asynchronous"]],"List Tuned Models":[[1,"list-tuned-models"]],"List Tuned Models (Asynchronous)":[[1,"list-tuned-models-asynchronous"]],"List Tuning Jobs":[[1,"list-tuning-jobs"]],"Local Compute Tokens":[[1,"local-compute-tokens"]],"Local Count Tokens":[[1,"local-count-tokens"]],"Manually declare and invoke a function for function calling":[[1,"manually-declare-and-invoke-a-function-for-function-calling"]],"Mix types in contents":[[1,"mix-types-in-contents"]],"Model Context Protocol (MCP) support (experimental)":[[1,"model-context-protocol-mcp-support-experimental"]],"Models":[[1,"models"]],"Provide a function call part":[[1,"provide-a-function-call-part"]],"Provide a list of function call parts":[[1,"provide-a-list-of-function-call-parts"]],"Provide a list of non function call parts":[[1,"provide-a-list-of-non-function-call-parts"]],"Provide a list of string":[[1,"provide-a-list-of-string"]],"Provide a list[types.Content]":[[1,"provide-a-list-types-content"]],"Provide a non function call part":[[1,"provide-a-non-function-call-part"]],"Provide a string":[[1,"provide-a-string"]],"Provide a types.Content instance":[[1,"provide-a-types-content-instance"]],"Proxy":[[1,"proxy"]],"Pydantic Model Schema support":[[1,"pydantic-model-schema-support"]],"Reference":[[1,"reference"]],"Safety Settings":[[1,"safety-settings"]],"Send Message (Asynchronous Non-Streaming)":[[1,"send-message-asynchronous-non-streaming"]],"Send Message (Asynchronous Streaming)":[[1,"send-message-asynchronous-streaming"]],"Send Message (Synchronous Non-Streaming)":[[1,"send-message-synchronous-non-streaming"]],"Send Message (Synchronous Streaming)":[[1,"send-message-synchronous-streaming"]],"Streaming for image content":[[1,"streaming-for-image-content"]],"Streaming for text content":[[1,"streaming-for-text-content"]],"Submodules":[[0,null]],"System Instructions and Other Configs":[[1,"system-instructions-and-other-configs"]],"Text Response":[[1,"text-response"]],"Tune":[[1,"tune"]],"Tunings":[[1,"tunings"]],"Typed Config":[[1,"typed-config"]],"Types":[[1,"types"]],"Update Tuned Model":[[1,"update-tuned-model"],[1,"id5"]],"Upload":[[1,"upload"]],"Upscale Image":[[1,"upscale-image"]],"Use Tuned Model":[[1,"use-tuned-model"]],"Veo":[[1,"veo"]],"genai.client module":[[0,"module-genai.client"]],"genai.live module":[[0,"module-genai.live"]],"genai.models module":[[0,"module-genai.models"]],"genai.tokens module":[[0,"module-genai.tokens"]],"genai.tunings module":[[0,"module-genai.tunings"]],"genai.types module":[[0,"module-genai.types"]],"google":[[2,null]],"with text content input (image output)":[[1,"with-text-content-input-image-output"]],"with text content input (text output)":[[1,"with-text-content-input-text-output"]],"with uploaded file (Gemini Developer API only)":[[1,"with-uploaded-file-gemini-developer-api-only"]]},"docnames":["genai","index","modules"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["genai.rst","index.rst","modules.rst"],"indexentries":{"a_flat_major_f_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.A_FLAT_MAJOR_F_MINOR",false]],"a_major_g_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.A_MAJOR_G_FLAT_MINOR",false]],"access_token (genai.types.authconfigoauthconfig attribute)":[[0,"genai.types.AuthConfigOauthConfig.access_token",false]],"access_token (genai.types.authconfigoauthconfigdict attribute)":[[0,"genai.types.AuthConfigOauthConfigDict.access_token",false]],"account_creation (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.ACCOUNT_CREATION",false]],"aclose() (genai.client.asyncclient method)":[[0,"genai.client.AsyncClient.aclose",false]],"active (genai.types.filestate attribute)":[[0,"genai.types.FileState.ACTIVE",false]],"active_documents_count (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.active_documents_count",false]],"active_documents_count (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.active_documents_count",false]],"activity_end (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.activity_end",false]],"activity_end (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.activity_end",false]],"activity_end (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.activity_end",false]],"activity_end (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.activity_end",false]],"activity_end (genai.types.voiceactivitytype attribute)":[[0,"genai.types.VoiceActivityType.ACTIVITY_END",false]],"activity_handling (genai.types.realtimeinputconfig attribute)":[[0,"genai.types.RealtimeInputConfig.activity_handling",false]],"activity_handling (genai.types.realtimeinputconfigdict attribute)":[[0,"genai.types.RealtimeInputConfigDict.activity_handling",false]],"activity_handling_unspecified (genai.types.activityhandling attribute)":[[0,"genai.types.ActivityHandling.ACTIVITY_HANDLING_UNSPECIFIED",false]],"activity_start (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.activity_start",false]],"activity_start (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.activity_start",false]],"activity_start (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.activity_start",false]],"activity_start (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.activity_start",false]],"activity_start (genai.types.voiceactivitytype attribute)":[[0,"genai.types.VoiceActivityType.ACTIVITY_START",false]],"activityenddict (class in genai.types)":[[0,"genai.types.ActivityEndDict",false]],"activityhandling (class in genai.types)":[[0,"genai.types.ActivityHandling",false]],"activitystartdict (class in genai.types)":[[0,"genai.types.ActivityStartDict",false]],"adaptation_phrases (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.adaptation_phrases",false]],"adaptation_phrases (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.adaptation_phrases",false]],"adapter_size (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.adapter_size",false]],"adapter_size (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.adapter_size",false]],"adapter_size (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.adapter_size",false]],"adapter_size (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.adapter_size",false]],"adapter_size (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.adapter_size",false]],"adapter_size (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.adapter_size",false]],"adapter_size (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.adapter_size",false]],"adapter_size (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.adapter_size",false]],"adapter_size_eight (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_EIGHT",false]],"adapter_size_four (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_FOUR",false]],"adapter_size_one (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_ONE",false]],"adapter_size_sixteen (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_SIXTEEN",false]],"adapter_size_thirty_two (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_THIRTY_TWO",false]],"adapter_size_two (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_TWO",false]],"adapter_size_unspecified (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_UNSPECIFIED",false]],"adaptersize (class in genai.types)":[[0,"genai.types.AdapterSize",false]],"add_watermark (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.add_watermark",false]],"add_watermark (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.add_watermark",false]],"add_watermark (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.add_watermark",false]],"add_watermark (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.add_watermark",false]],"add_watermark (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.add_watermark",false]],"add_watermark (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.add_watermark",false]],"additional_config (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.additional_config",false]],"additional_config (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.additional_config",false]],"additional_properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.additional_properties",false]],"additional_properties (genai.types.schema attribute)":[[0,"genai.types.Schema.additional_properties",false]],"additional_properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.additional_properties",false]],"agents (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.agents",false]],"agents (genai.client.client property)":[[0,"genai.client.Client.agents",false]],"aggregate_summary_fn (genai.types.metric attribute)":[[0,"genai.types.Metric.aggregate_summary_fn",false]],"aggregate_summary_fn (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.aggregate_summary_fn",false]],"aggregation_metric (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.aggregation_metric",false]],"aggregation_metric (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.aggregation_metric",false]],"aggregation_metric_unspecified (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.AGGREGATION_METRIC_UNSPECIFIED",false]],"aggregation_output (genai.types.evaluatedatasetresponse attribute)":[[0,"genai.types.EvaluateDatasetResponse.aggregation_output",false]],"aggregation_output (genai.types.evaluatedatasetresponsedict attribute)":[[0,"genai.types.EvaluateDatasetResponseDict.aggregation_output",false]],"aggregation_results (genai.types.aggregationoutput attribute)":[[0,"genai.types.AggregationOutput.aggregation_results",false]],"aggregation_results (genai.types.aggregationoutputdict attribute)":[[0,"genai.types.AggregationOutputDict.aggregation_results",false]],"aggregationmetric (class in genai.types)":[[0,"genai.types.AggregationMetric",false]],"aggregationoutputdict (class in genai.types)":[[0,"genai.types.AggregationOutputDict",false]],"aggregationresultdict (class in genai.types)":[[0,"genai.types.AggregationResultDict",false]],"aio (genai.client.client property)":[[0,"genai.client.Client.aio",false]],"aiohttp_client (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.aiohttp_client",false]],"allow_adult (genai.types.persongeneration attribute)":[[0,"genai.types.PersonGeneration.ALLOW_ADULT",false]],"allow_all (genai.types.persongeneration attribute)":[[0,"genai.types.PersonGeneration.ALLOW_ALL",false]],"allow_prominent_people (genai.types.prominentpeople attribute)":[[0,"genai.types.ProminentPeople.ALLOW_PROMINENT_PEOPLE",false]],"allowed_function_names (genai.types.functioncallingconfig attribute)":[[0,"genai.types.FunctionCallingConfig.allowed_function_names",false]],"allowed_function_names (genai.types.functioncallingconfigdict attribute)":[[0,"genai.types.FunctionCallingConfigDict.allowed_function_names",false]],"alpha (genai.types.ragretrievalconfighybridsearch attribute)":[[0,"genai.types.RagRetrievalConfigHybridSearch.alpha",false]],"alpha (genai.types.ragretrievalconfighybridsearchdict attribute)":[[0,"genai.types.RagRetrievalConfigHybridSearchDict.alpha",false]],"any (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.ANY",false]],"any_of (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.any_of",false]],"any_of (genai.types.schema attribute)":[[0,"genai.types.Schema.any_of",false]],"any_of (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.any_of",false]],"api_auth (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.api_auth",false]],"api_auth (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.api_auth",false]],"api_key (genai.client.client attribute)":[[0,"genai.client.Client.api_key",false]],"api_key (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.api_key",false]],"api_key (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.api_key",false]],"api_key (genai.types.toolexaaisearch attribute)":[[0,"genai.types.ToolExaAiSearch.api_key",false]],"api_key (genai.types.toolexaaisearchdict attribute)":[[0,"genai.types.ToolExaAiSearchDict.api_key",false]],"api_key (genai.types.toolparallelaisearch attribute)":[[0,"genai.types.ToolParallelAiSearch.api_key",false]],"api_key (genai.types.toolparallelaisearchdict attribute)":[[0,"genai.types.ToolParallelAiSearchDict.api_key",false]],"api_key_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.API_KEY_AUTH",false]],"api_key_config (genai.types.apiauth attribute)":[[0,"genai.types.ApiAuth.api_key_config",false]],"api_key_config (genai.types.apiauthdict attribute)":[[0,"genai.types.ApiAuthDict.api_key_config",false]],"api_key_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.api_key_config",false]],"api_key_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.api_key_config",false]],"api_key_secret (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.api_key_secret",false]],"api_key_secret (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.api_key_secret",false]],"api_key_secret_version (genai.types.apiauthapikeyconfig attribute)":[[0,"genai.types.ApiAuthApiKeyConfig.api_key_secret_version",false]],"api_key_secret_version (genai.types.apiauthapikeyconfigdict attribute)":[[0,"genai.types.ApiAuthApiKeyConfigDict.api_key_secret_version",false]],"api_key_string (genai.types.apiauthapikeyconfig attribute)":[[0,"genai.types.ApiAuthApiKeyConfig.api_key_string",false]],"api_key_string (genai.types.apiauthapikeyconfigdict attribute)":[[0,"genai.types.ApiAuthApiKeyConfigDict.api_key_string",false]],"api_key_string (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.api_key_string",false]],"api_key_string (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.api_key_string",false]],"api_spec (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.api_spec",false]],"api_spec (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.api_spec",false]],"api_spec_unspecified (genai.types.apispec attribute)":[[0,"genai.types.ApiSpec.API_SPEC_UNSPECIFIED",false]],"api_version (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.api_version",false]],"api_version (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.api_version",false]],"apiauthapikeyconfigdict (class in genai.types)":[[0,"genai.types.ApiAuthApiKeyConfigDict",false]],"apiauthdict (class in genai.types)":[[0,"genai.types.ApiAuthDict",false]],"apikeyconfigdict (class in genai.types)":[[0,"genai.types.ApiKeyConfigDict",false]],"apispec (class in genai.types)":[[0,"genai.types.ApiSpec",false]],"args (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.args",false]],"args (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.args",false]],"args (genai.types.toolcall attribute)":[[0,"genai.types.ToolCall.args",false]],"args (genai.types.toolcalldict attribute)":[[0,"genai.types.ToolCallDict.args",false]],"array (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.ARRAY",false]],"array (genai.types.type attribute)":[[0,"genai.types.Type.ARRAY",false]],"as_image() (genai.types.blob method)":[[0,"genai.types.Blob.as_image",false]],"as_image() (genai.types.part method)":[[0,"genai.types.Part.as_image",false]],"aspect_ratio (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.aspect_ratio",false]],"aspect_ratio (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.aspect_ratio",false]],"aspect_ratio (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.aspect_ratio",false]],"aspect_ratio (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.aspect_ratio",false]],"aspect_ratio (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.aspect_ratio",false]],"aspect_ratio (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.aspect_ratio",false]],"aspect_ratio (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.aspect_ratio",false]],"aspect_ratio (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.aspect_ratio",false]],"aspect_ratio_eight_by_one (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_EIGHT_BY_ONE",false]],"aspect_ratio_five_by_four (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FIVE_BY_FOUR",false]],"aspect_ratio_four_by_five (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FOUR_BY_FIVE",false]],"aspect_ratio_four_by_one (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FOUR_BY_ONE",false]],"aspect_ratio_four_by_three (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FOUR_BY_THREE",false]],"aspect_ratio_nine_by_sixteen (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_NINE_BY_SIXTEEN",false]],"aspect_ratio_one_by_eight (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_ONE_BY_EIGHT",false]],"aspect_ratio_one_by_four (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_ONE_BY_FOUR",false]],"aspect_ratio_one_by_one (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_ONE_BY_ONE",false]],"aspect_ratio_sixteen_by_nine (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_SIXTEEN_BY_NINE",false]],"aspect_ratio_three_by_four (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_THREE_BY_FOUR",false]],"aspect_ratio_three_by_two (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_THREE_BY_TWO",false]],"aspect_ratio_twenty_one_by_nine (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_TWENTY_ONE_BY_NINE",false]],"aspect_ratio_two_by_three (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_TWO_BY_THREE",false]],"aspect_ratio_unspecified (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_UNSPECIFIED",false]],"aspectratio (class in genai.types)":[[0,"genai.types.AspectRatio",false]],"asset (genai.types.videogenerationreferencetype attribute)":[[0,"genai.types.VideoGenerationReferenceType.ASSET",false]],"async_client_args (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.async_client_args",false]],"async_client_args (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.async_client_args",false]],"asyncclient (class in genai.client)":[[0,"genai.client.AsyncClient",false]],"asyncgemininextgenagents (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents",false]],"asyncgemininextgenenvironments (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments",false]],"asyncgemininextgeninteractions (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions",false]],"asyncgemininextgentriggers (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers",false]],"asyncgemininextgenwebhooks (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks",false]],"asynclive (class in genai.live)":[[0,"genai.live.AsyncLive",false]],"asyncmodels (class in genai.models)":[[0,"genai.models.AsyncModels",false]],"asyncsession (class in genai.live)":[[0,"genai.live.AsyncSession",false]],"asynctokens (class in genai.tokens)":[[0,"genai.tokens.AsyncTokens",false]],"asynctunings (class in genai.tunings)":[[0,"genai.tunings.AsyncTunings",false]],"attempts (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.attempts",false]],"attempts (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.attempts",false]],"audio (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.audio",false]],"audio (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.audio",false]],"audio (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.audio",false]],"audio (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.audio",false]],"audio (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.AUDIO",false]],"audio (genai.types.modality attribute)":[[0,"genai.types.Modality.AUDIO",false]],"audio (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.audio",false]],"audio (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.audio",false]],"audio_bitrate_bps (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.audio_bitrate_bps",false]],"audio_bitrate_bps (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.audio_bitrate_bps",false]],"audio_chunks (genai.types.livemusicservercontent attribute)":[[0,"genai.types.LiveMusicServerContent.audio_chunks",false]],"audio_chunks (genai.types.livemusicservercontentdict attribute)":[[0,"genai.types.LiveMusicServerContentDict.audio_chunks",false]],"audio_duration_seconds (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.audio_duration_seconds",false]],"audio_duration_seconds (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.audio_duration_seconds",false]],"audio_offset (genai.types.voiceactivity attribute)":[[0,"genai.types.VoiceActivity.audio_offset",false]],"audio_offset (genai.types.voiceactivitydict attribute)":[[0,"genai.types.VoiceActivityDict.audio_offset",false]],"audio_stream_end (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.audio_stream_end",false]],"audio_stream_end (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.audio_stream_end",false]],"audio_stream_end (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.audio_stream_end",false]],"audio_stream_end (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.audio_stream_end",false]],"audio_timestamp (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.audio_timestamp",false]],"audio_timestamp (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.audio_timestamp",false]],"audio_timestamp (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.audio_timestamp",false]],"audio_timestamp (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.audio_timestamp",false]],"audio_track_extraction (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.audio_track_extraction",false]],"audio_track_extraction (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.audio_track_extraction",false]],"audio_transcription (genai.types.part attribute)":[[0,"genai.types.Part.audio_transcription",false]],"audio_transcription (genai.types.partdict attribute)":[[0,"genai.types.PartDict.audio_transcription",false]],"audio_transcription_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.audio_transcription_config",false]],"audio_transcription_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.audio_transcription_config",false]],"audio_transcription_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.audio_transcription_config",false]],"audio_transcription_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.audio_transcription_config",false]],"audiochunkdict (class in genai.types)":[[0,"genai.types.AudioChunkDict",false]],"audioresponseformatdict (class in genai.types)":[[0,"genai.types.AudioResponseFormatDict",false]],"audiotranscriptionconfigdict (class in genai.types)":[[0,"genai.types.AudioTranscriptionConfigDict",false]],"auth_config (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.auth_config",false]],"auth_config (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.auth_config",false]],"auth_config (genai.types.googlemaps attribute)":[[0,"genai.types.GoogleMaps.auth_config",false]],"auth_config (genai.types.googlemapsdict attribute)":[[0,"genai.types.GoogleMapsDict.auth_config",false]],"auth_tokens (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.auth_tokens",false]],"auth_tokens (genai.client.client property)":[[0,"genai.client.Client.auth_tokens",false]],"auth_type (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.auth_type",false]],"auth_type (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.auth_type",false]],"auth_type_unspecified (genai.types.authtype attribute)":[[0,"genai.types.AuthType.AUTH_TYPE_UNSPECIFIED",false]],"authconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigDict",false]],"authconfiggoogleserviceaccountconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigGoogleServiceAccountConfigDict",false]],"authconfighttpbasicauthconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigHttpBasicAuthConfigDict",false]],"authconfigoauthconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigOauthConfigDict",false]],"authconfigoidcconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigOidcConfigDict",false]],"author_attribution (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.author_attribution",false]],"author_attribution (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.author_attribution",false]],"authtokendict (class in genai.types)":[[0,"genai.types.AuthTokenDict",false]],"authtype (class in genai.types)":[[0,"genai.types.AuthType",false]],"auto (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.AUTO",false]],"auto (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.auto",false]],"auto_mode (genai.types.generationconfigroutingconfig attribute)":[[0,"genai.types.GenerationConfigRoutingConfig.auto_mode",false]],"auto_mode (genai.types.generationconfigroutingconfigdict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigDict.auto_mode",false]],"auto_truncate (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.auto_truncate",false]],"auto_truncate (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.auto_truncate",false]],"automatic_activity_detection (genai.types.realtimeinputconfig attribute)":[[0,"genai.types.RealtimeInputConfig.automatic_activity_detection",false]],"automatic_activity_detection (genai.types.realtimeinputconfigdict attribute)":[[0,"genai.types.RealtimeInputConfigDict.automatic_activity_detection",false]],"automatic_function_calling (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.automatic_function_calling",false]],"automatic_function_calling (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.automatic_function_calling",false]],"automatic_function_calling_history (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.automatic_function_calling_history",false]],"automaticactivitydetectiondict (class in genai.types)":[[0,"genai.types.AutomaticActivityDetectionDict",false]],"automaticfunctioncallingconfigdict (class in genai.types)":[[0,"genai.types.AutomaticFunctionCallingConfigDict",false]],"autorater_config (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.autorater_config",false]],"autorater_config (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.autorater_config",false]],"autorater_config (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.autorater_config",false]],"autorater_config (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.autorater_config",false]],"autorater_model (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.autorater_model",false]],"autorater_model (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.autorater_model",false]],"autorater_prompt (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.autorater_prompt",false]],"autorater_prompt (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.autorater_prompt",false]],"autorater_response_parse_config (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.autorater_response_parse_config",false]],"autorater_response_parse_config (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.autorater_response_parse_config",false]],"autorater_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.autorater_scorer",false]],"autorater_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.autorater_scorer",false]],"autoraterconfigdict (class in genai.types)":[[0,"genai.types.AutoraterConfigDict",false]],"avatar_config (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.avatar_config",false]],"avatar_config (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.avatar_config",false]],"avatar_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.avatar_config",false]],"avatar_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.avatar_config",false]],"avatar_name (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.avatar_name",false]],"avatar_name (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.avatar_name",false]],"avatarconfigdict (class in genai.types)":[[0,"genai.types.AvatarConfigDict",false]],"average (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.AVERAGE",false]],"avg_logprobs (genai.types.candidate attribute)":[[0,"genai.types.Candidate.avg_logprobs",false]],"avg_logprobs (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.avg_logprobs",false]],"b_flat_major_g_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.B_FLAT_MAJOR_G_MINOR",false]],"b_major_a_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.B_MAJOR_A_FLAT_MINOR",false]],"background (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.BACKGROUND",false]],"balanced (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.BALANCED",false]],"base_model (genai.types.createtuningjobparameters attribute)":[[0,"genai.types.CreateTuningJobParameters.base_model",false]],"base_model (genai.types.createtuningjobparametersdict attribute)":[[0,"genai.types.CreateTuningJobParametersDict.base_model",false]],"base_model (genai.types.pretunedmodel attribute)":[[0,"genai.types.PreTunedModel.base_model",false]],"base_model (genai.types.pretunedmodeldict attribute)":[[0,"genai.types.PreTunedModelDict.base_model",false]],"base_model (genai.types.tunedmodelinfo attribute)":[[0,"genai.types.TunedModelInfo.base_model",false]],"base_model (genai.types.tunedmodelinfodict attribute)":[[0,"genai.types.TunedModelInfoDict.base_model",false]],"base_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.base_model",false]],"base_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.base_model",false]],"base_steps (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.base_steps",false]],"base_steps (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.base_steps",false]],"base_steps (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.base_steps",false]],"base_steps (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.base_steps",false]],"base_teacher_model (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.base_teacher_model",false]],"base_teacher_model (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.base_teacher_model",false]],"base_teacher_model (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.base_teacher_model",false]],"base_teacher_model (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.base_teacher_model",false]],"base_teacher_model (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.base_teacher_model",false]],"base_teacher_model (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.base_teacher_model",false]],"base_url (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.base_url",false]],"base_url (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.base_url",false]],"base_url_resource_scope (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.base_url_resource_scope",false]],"base_url_resource_scope (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.base_url_resource_scope",false]],"baseline (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.BASELINE",false]],"baseline_response_field_name (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.baseline_response_field_name",false]],"baseline_response_field_name (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.baseline_response_field_name",false]],"batch_jobs (genai.types.listbatchjobsresponse attribute)":[[0,"genai.types.ListBatchJobsResponse.batch_jobs",false]],"batch_jobs (genai.types.listbatchjobsresponsedict attribute)":[[0,"genai.types.ListBatchJobsResponseDict.batch_jobs",false]],"batch_size (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.batch_size",false]],"batch_size (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.batch_size",false]],"batch_size (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.batch_size",false]],"batch_size (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.batch_size",false]],"batch_size (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.batch_size",false]],"batch_size (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.batch_size",false]],"batch_size (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.batch_size",false]],"batch_size (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.batch_size",false]],"batches (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.batches",false]],"batches (genai.client.client property)":[[0,"genai.client.Client.batches",false]],"batchjobdestinationdict (class in genai.types)":[[0,"genai.types.BatchJobDestinationDict",false]],"batchjobdict (class in genai.types)":[[0,"genai.types.BatchJobDict",false]],"batchjoboutputinfodict (class in genai.types)":[[0,"genai.types.BatchJobOutputInfoDict",false]],"batchjobsourcedict (class in genai.types)":[[0,"genai.types.BatchJobSourceDict",false]],"behavior (class in genai.types)":[[0,"genai.types.Behavior",false]],"behavior (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.behavior",false]],"behavior (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.behavior",false]],"beta (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.beta",false]],"beta (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.beta",false]],"beta (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.beta",false]],"beta (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.beta",false]],"bigquery_destination (genai.types.vertexmultimodaldatasetdestination attribute)":[[0,"genai.types.VertexMultimodalDatasetDestination.bigquery_destination",false]],"bigquery_destination (genai.types.vertexmultimodaldatasetdestinationdict attribute)":[[0,"genai.types.VertexMultimodalDatasetDestinationDict.bigquery_destination",false]],"bigquery_output_table (genai.types.batchjoboutputinfo attribute)":[[0,"genai.types.BatchJobOutputInfo.bigquery_output_table",false]],"bigquery_output_table (genai.types.batchjoboutputinfodict attribute)":[[0,"genai.types.BatchJobOutputInfoDict.bigquery_output_table",false]],"bigquery_source (genai.types.evaluationdataset attribute)":[[0,"genai.types.EvaluationDataset.bigquery_source",false]],"bigquery_source (genai.types.evaluationdatasetdict attribute)":[[0,"genai.types.EvaluationDatasetDict.bigquery_source",false]],"bigquery_uri (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.bigquery_uri",false]],"bigquery_uri (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.bigquery_uri",false]],"bigquery_uri (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.bigquery_uri",false]],"bigquery_uri (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.bigquery_uri",false]],"bigquerysourcedict (class in genai.types)":[[0,"genai.types.BigQuerySourceDict",false]],"billable_character_count (genai.types.embedcontentmetadata attribute)":[[0,"genai.types.EmbedContentMetadata.billable_character_count",false]],"billable_character_count (genai.types.embedcontentmetadatadict attribute)":[[0,"genai.types.EmbedContentMetadataDict.billable_character_count",false]],"billable_sum (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.billable_sum",false]],"billable_sum (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.billable_sum",false]],"binary_color_threshold (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.binary_color_threshold",false]],"binary_color_threshold (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.binary_color_threshold",false]],"bit_rate (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.bit_rate",false]],"bit_rate (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.bit_rate",false]],"bleu (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.BLEU",false]],"bleu_metric_value (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.bleu_metric_value",false]],"bleu_metric_value (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.bleu_metric_value",false]],"bleu_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.bleu_spec",false]],"bleu_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.bleu_spec",false]],"bleumetricvaluedict (class in genai.types)":[[0,"genai.types.BleuMetricValueDict",false]],"bleuspecdict (class in genai.types)":[[0,"genai.types.BleuSpecDict",false]],"blobdict (class in genai.types)":[[0,"genai.types.BlobDict",false]],"block_high_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_HIGH_AND_ABOVE",false]],"block_higher_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_HIGHER_AND_ABOVE",false]],"block_low_and_above (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_LOW_AND_ABOVE",false]],"block_low_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_LOW_AND_ABOVE",false]],"block_low_and_above (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_LOW_AND_ABOVE",false]],"block_medium_and_above (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE",false]],"block_medium_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_MEDIUM_AND_ABOVE",false]],"block_medium_and_above (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_MEDIUM_AND_ABOVE",false]],"block_none (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_NONE",false]],"block_none (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_NONE",false]],"block_only_extremely_high (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_ONLY_EXTREMELY_HIGH",false]],"block_only_high (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_ONLY_HIGH",false]],"block_only_high (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_ONLY_HIGH",false]],"block_prominent_people (genai.types.prominentpeople attribute)":[[0,"genai.types.ProminentPeople.BLOCK_PROMINENT_PEOPLE",false]],"block_reason (genai.types.generatecontentresponsepromptfeedback attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedback.block_reason",false]],"block_reason (genai.types.generatecontentresponsepromptfeedbackdict attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict.block_reason",false]],"block_reason_message (genai.types.generatecontentresponsepromptfeedback attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedback.block_reason_message",false]],"block_reason_message (genai.types.generatecontentresponsepromptfeedbackdict attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict.block_reason_message",false]],"block_very_high_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_VERY_HIGH_AND_ABOVE",false]],"blocked (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.blocked",false]],"blocked (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.blocked",false]],"blocked_reason_unspecified (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.BLOCKED_REASON_UNSPECIFIED",false]],"blockedreason (class in genai.types)":[[0,"genai.types.BlockedReason",false]],"blocking (genai.types.behavior attribute)":[[0,"genai.types.Behavior.BLOCKING",false]],"blocking_confidence (genai.types.enterprisewebsearch attribute)":[[0,"genai.types.EnterpriseWebSearch.blocking_confidence",false]],"blocking_confidence (genai.types.enterprisewebsearchdict attribute)":[[0,"genai.types.EnterpriseWebSearchDict.blocking_confidence",false]],"blocking_confidence (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.blocking_confidence",false]],"blocking_confidence (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.blocking_confidence",false]],"blocklist (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.BLOCKLIST",false]],"blocklist (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.BLOCKLIST",false]],"blocklist (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.BLOCKLIST",false]],"body (genai.types.httpresponse attribute)":[[0,"genai.types.HttpResponse.body",false]],"body (genai.types.httpresponsedict attribute)":[[0,"genai.types.HttpResponseDict.body",false]],"body_segments (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.body_segments",false]],"body_segments (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.body_segments",false]],"body_segments (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.body_segments",false]],"body_segments (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.body_segments",false]],"bool_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.bool_value",false]],"bool_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.bool_value",false]],"boolean (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.BOOLEAN",false]],"boolean (genai.types.type attribute)":[[0,"genai.types.Type.BOOLEAN",false]],"bpm (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.bpm",false]],"bpm (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.bpm",false]],"brightness (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.brightness",false]],"brightness (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.brightness",false]],"buckets (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.buckets",false]],"buckets (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.buckets",false]],"buckets (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.buckets",false]],"buckets (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.buckets",false]],"c_major_a_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.C_MAJOR_A_MINOR",false]],"cache_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.cache_tokens_details",false]],"cache_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.cache_tokens_details",false]],"cache_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.cache_tokens_details",false]],"cache_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.cache_tokens_details",false]],"cached_content (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.cached_content",false]],"cached_content (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.cached_content",false]],"cached_content_token_count (genai.types.counttokensresponse attribute)":[[0,"genai.types.CountTokensResponse.cached_content_token_count",false]],"cached_content_token_count (genai.types.counttokensresponsedict attribute)":[[0,"genai.types.CountTokensResponseDict.cached_content_token_count",false]],"cached_content_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.cached_content_token_count",false]],"cached_content_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.cached_content_token_count",false]],"cached_content_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.cached_content_token_count",false]],"cached_content_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.cached_content_token_count",false]],"cached_contents (genai.types.listcachedcontentsresponse attribute)":[[0,"genai.types.ListCachedContentsResponse.cached_contents",false]],"cached_contents (genai.types.listcachedcontentsresponsedict attribute)":[[0,"genai.types.ListCachedContentsResponseDict.cached_contents",false]],"cachedcontentdict (class in genai.types)":[[0,"genai.types.CachedContentDict",false]],"cachedcontentusagemetadatadict (class in genai.types)":[[0,"genai.types.CachedContentUsageMetadataDict",false]],"caches (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.caches",false]],"caches (genai.client.client property)":[[0,"genai.client.Client.caches",false]],"cancel() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.cancel",false]],"cancel() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.cancel",false]],"cancel() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.cancel",false]],"cancel() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.cancel",false]],"cancelbatchjobconfigdict (class in genai.types)":[[0,"genai.types.CancelBatchJobConfigDict",false]],"canceltuningjobconfigdict (class in genai.types)":[[0,"genai.types.CancelTuningJobConfigDict",false]],"canceltuningjobresponsedict (class in genai.types)":[[0,"genai.types.CancelTuningJobResponseDict",false]],"candidate (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.CANDIDATE",false]],"candidate_count (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.candidate_count",false]],"candidate_count (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.candidate_count",false]],"candidate_count (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.candidate_count",false]],"candidate_count (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.candidate_count",false]],"candidate_response_field_name (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.candidate_response_field_name",false]],"candidate_response_field_name (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.candidate_response_field_name",false]],"candidatedict (class in genai.types)":[[0,"genai.types.CandidateDict",false]],"candidates (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.candidates",false]],"candidates (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.candidates",false]],"candidates (genai.types.logprobsresulttopcandidates attribute)":[[0,"genai.types.LogprobsResultTopCandidates.candidates",false]],"candidates (genai.types.logprobsresulttopcandidatesdict attribute)":[[0,"genai.types.LogprobsResultTopCandidatesDict.candidates",false]],"candidates_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.candidates_token_count",false]],"candidates_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.candidates_token_count",false]],"candidates_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.candidates_tokens_details",false]],"candidates_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.candidates_tokens_details",false]],"categories (genai.types.safetyattributes attribute)":[[0,"genai.types.SafetyAttributes.categories",false]],"categories (genai.types.safetyattributesdict attribute)":[[0,"genai.types.SafetyAttributesDict.categories",false]],"category (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.category",false]],"category (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.category",false]],"category (genai.types.safetysetting attribute)":[[0,"genai.types.SafetySetting.category",false]],"category (genai.types.safetysettingdict attribute)":[[0,"genai.types.SafetySettingDict.category",false]],"chats (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.chats",false]],"chats (genai.client.client property)":[[0,"genai.client.Client.chats",false]],"checkpoint_id (genai.types.checkpoint attribute)":[[0,"genai.types.Checkpoint.checkpoint_id",false]],"checkpoint_id (genai.types.checkpointdict attribute)":[[0,"genai.types.CheckpointDict.checkpoint_id",false]],"checkpoint_id (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.checkpoint_id",false]],"checkpoint_id (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.checkpoint_id",false]],"checkpoint_id (genai.types.pretunedmodel attribute)":[[0,"genai.types.PreTunedModel.checkpoint_id",false]],"checkpoint_id (genai.types.pretunedmodeldict attribute)":[[0,"genai.types.PreTunedModelDict.checkpoint_id",false]],"checkpoint_id (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.checkpoint_id",false]],"checkpoint_id (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.checkpoint_id",false]],"checkpoint_interval (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.checkpoint_interval",false]],"checkpoint_interval (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.checkpoint_interval",false]],"checkpoint_interval (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.checkpoint_interval",false]],"checkpoint_interval (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.checkpoint_interval",false]],"checkpointdict (class in genai.types)":[[0,"genai.types.CheckpointDict",false]],"checkpoints (genai.types.model attribute)":[[0,"genai.types.Model.checkpoints",false]],"checkpoints (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.checkpoints",false]],"checkpoints (genai.types.tunedmodel attribute)":[[0,"genai.types.TunedModel.checkpoints",false]],"checkpoints (genai.types.tunedmodeldict attribute)":[[0,"genai.types.TunedModelDict.checkpoints",false]],"chosen_candidates (genai.types.logprobsresult attribute)":[[0,"genai.types.LogprobsResult.chosen_candidates",false]],"chosen_candidates (genai.types.logprobsresultdict attribute)":[[0,"genai.types.LogprobsResultDict.chosen_candidates",false]],"chunk_id (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.chunk_id",false]],"chunk_id (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.chunk_id",false]],"chunking_config (genai.types.importfileconfig attribute)":[[0,"genai.types.ImportFileConfig.chunking_config",false]],"chunking_config (genai.types.importfileconfigdict attribute)":[[0,"genai.types.ImportFileConfigDict.chunking_config",false]],"chunking_config (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.chunking_config",false]],"chunking_config (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.chunking_config",false]],"chunkingconfigdict (class in genai.types)":[[0,"genai.types.ChunkingConfigDict",false]],"citation_metadata (genai.types.candidate attribute)":[[0,"genai.types.Candidate.citation_metadata",false]],"citation_metadata (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.citation_metadata",false]],"citationdict (class in genai.types)":[[0,"genai.types.CitationDict",false]],"citationmetadatadict (class in genai.types)":[[0,"genai.types.CitationMetadataDict",false]],"citations (genai.types.citationmetadata attribute)":[[0,"genai.types.CitationMetadata.citations",false]],"citations (genai.types.citationmetadatadict attribute)":[[0,"genai.types.CitationMetadataDict.citations",false]],"client (class in genai.client)":[[0,"genai.client.Client",false]],"client_args (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.client_args",false]],"client_args (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.client_args",false]],"client_content (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.client_content",false]],"client_content (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.client_content",false]],"client_content (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.client_content",false]],"client_content (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.client_content",false]],"client_content (genai.types.livemusicsourcemetadata attribute)":[[0,"genai.types.LiveMusicSourceMetadata.client_content",false]],"client_content (genai.types.livemusicsourcemetadatadict attribute)":[[0,"genai.types.LiveMusicSourceMetadataDict.client_content",false]],"client_mode (genai.client.debugconfig attribute)":[[0,"genai.client.DebugConfig.client_mode",false]],"close() (genai.client.client method)":[[0,"genai.client.Client.close",false]],"close() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.close",false]],"cloud_run_reward_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.cloud_run_reward_scorer",false]],"cloud_run_reward_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.cloud_run_reward_scorer",false]],"cloud_run_uri (genai.types.reinforcementtuningcloudrunrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningCloudRunRewardScorer.cloud_run_uri",false]],"cloud_run_uri (genai.types.reinforcementtuningcloudrunrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningCloudRunRewardScorerDict.cloud_run_uri",false]],"code (genai.types.executablecode attribute)":[[0,"genai.types.ExecutableCode.code",false]],"code (genai.types.executablecodedict attribute)":[[0,"genai.types.ExecutableCodeDict.code",false]],"code (genai.types.filestatus attribute)":[[0,"genai.types.FileStatus.code",false]],"code (genai.types.filestatusdict attribute)":[[0,"genai.types.FileStatusDict.code",false]],"code (genai.types.googlerpcstatus attribute)":[[0,"genai.types.GoogleRpcStatus.code",false]],"code (genai.types.googlerpcstatusdict attribute)":[[0,"genai.types.GoogleRpcStatusDict.code",false]],"code (genai.types.joberror attribute)":[[0,"genai.types.JobError.code",false]],"code (genai.types.joberrordict attribute)":[[0,"genai.types.JobErrorDict.code",false]],"code_execution (genai.types.tool attribute)":[[0,"genai.types.Tool.code_execution",false]],"code_execution (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.code_execution",false]],"code_execution_result (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.code_execution_result",false]],"code_execution_result (genai.types.part attribute)":[[0,"genai.types.Part.code_execution_result",false]],"code_execution_result (genai.types.partdict attribute)":[[0,"genai.types.PartDict.code_execution_result",false]],"code_execution_reward_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.code_execution_reward_scorer",false]],"code_execution_reward_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.code_execution_reward_scorer",false]],"codeexecutionresultdict (class in genai.types)":[[0,"genai.types.CodeExecutionResultDict",false]],"collection (genai.types.resourcescope attribute)":[[0,"genai.types.ResourceScope.COLLECTION",false]],"comment (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.comment",false]],"comment (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.comment",false]],"communication_tool (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.COMMUNICATION_TOOL",false]],"completed_epoch_count (genai.types.tuningjobmetadata attribute)":[[0,"genai.types.TuningJobMetadata.completed_epoch_count",false]],"completed_epoch_count (genai.types.tuningjobmetadatadict attribute)":[[0,"genai.types.TuningJobMetadataDict.completed_epoch_count",false]],"completed_step_count (genai.types.tuningjobmetadata attribute)":[[0,"genai.types.TuningJobMetadata.completed_step_count",false]],"completed_step_count (genai.types.tuningjobmetadatadict attribute)":[[0,"genai.types.TuningJobMetadataDict.completed_step_count",false]],"completion (genai.types.geminipreferenceexamplecompletion attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletion.completion",false]],"completion (genai.types.geminipreferenceexamplecompletiondict attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletionDict.completion",false]],"completion_stats (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.completion_stats",false]],"completion_stats (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.completion_stats",false]],"completions (genai.types.geminipreferenceexample attribute)":[[0,"genai.types.GeminiPreferenceExample.completions",false]],"completions (genai.types.geminipreferenceexampledict attribute)":[[0,"genai.types.GeminiPreferenceExampleDict.completions",false]],"completionstatsdict (class in genai.types)":[[0,"genai.types.CompletionStatsDict",false]],"composite_reward_config (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.composite_reward_config",false]],"composite_reward_config (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.composite_reward_config",false]],"composite_reward_config (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.composite_reward_config",false]],"composite_reward_config (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.composite_reward_config",false]],"compositereinforcementtuningrewardconfigdict (class in genai.types)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigDict",false]],"compositereinforcementtuningrewardconfigweightedrewardconfigdict (class in genai.types)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict",false]],"compression_quality (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.compression_quality",false]],"compression_quality (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.compression_quality",false]],"compression_quality (genai.types.imageconfigimageoutputoptions attribute)":[[0,"genai.types.ImageConfigImageOutputOptions.compression_quality",false]],"compression_quality (genai.types.imageconfigimageoutputoptionsdict attribute)":[[0,"genai.types.ImageConfigImageOutputOptionsDict.compression_quality",false]],"computation_based_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.computation_based_metric_spec",false]],"computation_based_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.computation_based_metric_spec",false]],"computation_based_metric_type_unspecified (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.COMPUTATION_BASED_METRIC_TYPE_UNSPECIFIED",false]],"computationbasedmetricspecdict (class in genai.types)":[[0,"genai.types.ComputationBasedMetricSpecDict",false]],"computationbasedmetrictype (class in genai.types)":[[0,"genai.types.ComputationBasedMetricType",false]],"compute_tokens() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.compute_tokens",false]],"compute_tokens() (genai.models.models method)":[[0,"genai.models.Models.compute_tokens",false]],"computer_use (genai.types.tool attribute)":[[0,"genai.types.Tool.computer_use",false]],"computer_use (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.computer_use",false]],"computerusedict (class in genai.types)":[[0,"genai.types.ComputerUseDict",false]],"computetokensconfigdict (class in genai.types)":[[0,"genai.types.ComputeTokensConfigDict",false]],"computetokensresponsedict (class in genai.types)":[[0,"genai.types.ComputeTokensResponseDict",false]],"computetokensresultdict (class in genai.types)":[[0,"genai.types.ComputeTokensResultDict",false]],"confidence_scores (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.confidence_scores",false]],"confidence_scores (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.confidence_scores",false]],"confidence_threshold (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.confidence_threshold",false]],"confidence_threshold (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.confidence_threshold",false]],"config (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.config",false]],"config (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.config",false]],"config (genai.types.createauthtokenparameters attribute)":[[0,"genai.types.CreateAuthTokenParameters.config",false]],"config (genai.types.createauthtokenparametersdict attribute)":[[0,"genai.types.CreateAuthTokenParametersDict.config",false]],"config (genai.types.createtuningjobparameters attribute)":[[0,"genai.types.CreateTuningJobParameters.config",false]],"config (genai.types.createtuningjobparametersdict attribute)":[[0,"genai.types.CreateTuningJobParametersDict.config",false]],"config (genai.types.embedcontentbatch attribute)":[[0,"genai.types.EmbedContentBatch.config",false]],"config (genai.types.embedcontentbatchdict attribute)":[[0,"genai.types.EmbedContentBatchDict.config",false]],"config (genai.types.embedcontentparameters attribute)":[[0,"genai.types.EmbedContentParameters.config",false]],"config (genai.types.embedcontentparametersdict attribute)":[[0,"genai.types.EmbedContentParametersDict.config",false]],"config (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.config",false]],"config (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.config",false]],"config (genai.types.liveconnectconstraints attribute)":[[0,"genai.types.LiveConnectConstraints.config",false]],"config (genai.types.liveconnectconstraintsdict attribute)":[[0,"genai.types.LiveConnectConstraintsDict.config",false]],"config (genai.types.liveconnectparameters attribute)":[[0,"genai.types.LiveConnectParameters.config",false]],"config (genai.types.liveconnectparametersdict attribute)":[[0,"genai.types.LiveConnectParametersDict.config",false]],"config (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.config",false]],"config (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.config",false]],"config (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.config",false]],"config (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.config",false]],"config (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.config",false]],"config (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.config",false]],"config (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.config",false]],"config (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.config",false]],"connect() (genai.live.asynclive method)":[[0,"genai.live.AsyncLive.connect",false]],"consent_audio (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.consent_audio",false]],"consent_audio (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.consent_audio",false]],"content (genai.types.candidate attribute)":[[0,"genai.types.Candidate.content",false]],"content (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.content",false]],"content_type (genai.types.safetyattributes attribute)":[[0,"genai.types.SafetyAttributes.content_type",false]],"content_type (genai.types.safetyattributesdict attribute)":[[0,"genai.types.SafetyAttributesDict.content_type",false]],"contentdict (class in genai.types)":[[0,"genai.types.ContentDict",false]],"contentembeddingdict (class in genai.types)":[[0,"genai.types.ContentEmbeddingDict",false]],"contentembeddingstatisticsdict (class in genai.types)":[[0,"genai.types.ContentEmbeddingStatisticsDict",false]],"contentreferenceimagedict (class in genai.types)":[[0,"genai.types.ContentReferenceImageDict",false]],"contents (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.contents",false]],"contents (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.contents",false]],"contents (genai.types.embedcontentbatch attribute)":[[0,"genai.types.EmbedContentBatch.contents",false]],"contents (genai.types.embedcontentbatchdict attribute)":[[0,"genai.types.EmbedContentBatchDict.contents",false]],"contents (genai.types.embedcontentparameters attribute)":[[0,"genai.types.EmbedContentParameters.contents",false]],"contents (genai.types.embedcontentparametersdict attribute)":[[0,"genai.types.EmbedContentParametersDict.contents",false]],"contents (genai.types.geminipreferenceexample attribute)":[[0,"genai.types.GeminiPreferenceExample.contents",false]],"contents (genai.types.geminipreferenceexampledict attribute)":[[0,"genai.types.GeminiPreferenceExampleDict.contents",false]],"contents (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.contents",false]],"contents (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.contents",false]],"contents (genai.types.reinforcementtuningexample attribute)":[[0,"genai.types.ReinforcementTuningExample.contents",false]],"contents (genai.types.reinforcementtuningexampledict attribute)":[[0,"genai.types.ReinforcementTuningExampleDict.contents",false]],"contents_per_example_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.contents_per_example_distribution",false]],"contents_per_example_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.contents_per_example_distribution",false]],"context_window_compression (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.context_window_compression",false]],"context_window_compression (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.context_window_compression",false]],"context_window_compression (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.context_window_compression",false]],"context_window_compression (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.context_window_compression",false]],"contextwindowcompressionconfigdict (class in genai.types)":[[0,"genai.types.ContextWindowCompressionConfigDict",false]],"control_image_config (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.control_image_config",false]],"control_type (genai.types.controlreferenceconfig attribute)":[[0,"genai.types.ControlReferenceConfig.control_type",false]],"control_type (genai.types.controlreferenceconfigdict attribute)":[[0,"genai.types.ControlReferenceConfigDict.control_type",false]],"control_type_canny (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_CANNY",false]],"control_type_default (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_DEFAULT",false]],"control_type_face_mesh (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_FACE_MESH",false]],"control_type_scribble (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_SCRIBBLE",false]],"controlreferenceconfigdict (class in genai.types)":[[0,"genai.types.ControlReferenceConfigDict",false]],"controlreferenceimagedict (class in genai.types)":[[0,"genai.types.ControlReferenceImageDict",false]],"controlreferencetype (class in genai.types)":[[0,"genai.types.ControlReferenceType",false]],"correct_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer.correct_answer_reward",false]],"correct_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict.correct_answer_reward",false]],"correct_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.correct_answer_reward",false]],"correct_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.correct_answer_reward",false]],"count (genai.types.datasetdistributiondistributionbucket attribute)":[[0,"genai.types.DatasetDistributionDistributionBucket.count",false]],"count (genai.types.datasetdistributiondistributionbucketdict attribute)":[[0,"genai.types.DatasetDistributionDistributionBucketDict.count",false]],"count (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucket.count",false]],"count (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.count",false]],"count_tokens() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.count_tokens",false]],"count_tokens() (genai.models.models method)":[[0,"genai.models.Models.count_tokens",false]],"counttokensconfigdict (class in genai.types)":[[0,"genai.types.CountTokensConfigDict",false]],"counttokensresponsedict (class in genai.types)":[[0,"genai.types.CountTokensResponseDict",false]],"counttokensresultdict (class in genai.types)":[[0,"genai.types.CountTokensResultDict",false]],"create() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.create",false]],"create() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.create",false]],"create() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.create",false]],"create() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.create",false]],"create() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.create",false]],"create() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.create",false]],"create() (genai.tokens.asynctokens method)":[[0,"genai.tokens.AsyncTokens.create",false]],"create() (genai.tokens.tokens method)":[[0,"genai.tokens.Tokens.create",false]],"create_environment() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.create_environment",false]],"create_environment() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.create_environment",false]],"create_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.create_time",false]],"create_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.create_time",false]],"create_time (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.create_time",false]],"create_time (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.create_time",false]],"create_time (genai.types.document attribute)":[[0,"genai.types.Document.create_time",false]],"create_time (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.create_time",false]],"create_time (genai.types.file attribute)":[[0,"genai.types.File.create_time",false]],"create_time (genai.types.filedict attribute)":[[0,"genai.types.FileDict.create_time",false]],"create_time (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.create_time",false]],"create_time (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.create_time",false]],"create_time (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.create_time",false]],"create_time (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.create_time",false]],"create_time (genai.types.tunedmodelinfo attribute)":[[0,"genai.types.TunedModelInfo.create_time",false]],"create_time (genai.types.tunedmodelinfodict attribute)":[[0,"genai.types.TunedModelInfoDict.create_time",false]],"create_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.create_time",false]],"create_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.create_time",false]],"createauthtokenconfigdict (class in genai.types)":[[0,"genai.types.CreateAuthTokenConfigDict",false]],"createauthtokenparametersdict (class in genai.types)":[[0,"genai.types.CreateAuthTokenParametersDict",false]],"createbatchjobconfigdict (class in genai.types)":[[0,"genai.types.CreateBatchJobConfigDict",false]],"createcachedcontentconfigdict (class in genai.types)":[[0,"genai.types.CreateCachedContentConfigDict",false]],"createembeddingsbatchjobconfigdict (class in genai.types)":[[0,"genai.types.CreateEmbeddingsBatchJobConfigDict",false]],"createfileconfigdict (class in genai.types)":[[0,"genai.types.CreateFileConfigDict",false]],"createfileresponsedict (class in genai.types)":[[0,"genai.types.CreateFileResponseDict",false]],"createfilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.CreateFileSearchStoreConfigDict",false]],"createtuningjobconfigdict (class in genai.types)":[[0,"genai.types.CreateTuningJobConfigDict",false]],"createtuningjobparametersdict (class in genai.types)":[[0,"genai.types.CreateTuningJobParametersDict",false]],"credential_secret (genai.types.authconfighttpbasicauthconfig attribute)":[[0,"genai.types.AuthConfigHttpBasicAuthConfig.credential_secret",false]],"credential_secret (genai.types.authconfighttpbasicauthconfigdict attribute)":[[0,"genai.types.AuthConfigHttpBasicAuthConfigDict.credential_secret",false]],"credentials (genai.client.client attribute)":[[0,"genai.client.Client.credentials",false]],"crop (genai.types.imageresizemode attribute)":[[0,"genai.types.ImageResizeMode.CROP",false]],"custom_base_model (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.custom_base_model",false]],"custom_base_model (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.custom_base_model",false]],"custom_base_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.custom_base_model",false]],"custom_base_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.custom_base_model",false]],"custom_code_execution_result (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.custom_code_execution_result",false]],"custom_code_execution_result (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.custom_code_execution_result",false]],"custom_code_execution_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.custom_code_execution_spec",false]],"custom_code_execution_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.custom_code_execution_spec",false]],"custom_code_parser_config (genai.types.evaluationparserconfig attribute)":[[0,"genai.types.EvaluationParserConfig.custom_code_parser_config",false]],"custom_code_parser_config (genai.types.evaluationparserconfigdict attribute)":[[0,"genai.types.EvaluationParserConfigDict.custom_code_parser_config",false]],"custom_configs (genai.types.toolexaaisearch attribute)":[[0,"genai.types.ToolExaAiSearch.custom_configs",false]],"custom_configs (genai.types.toolexaaisearchdict attribute)":[[0,"genai.types.ToolExaAiSearchDict.custom_configs",false]],"custom_configs (genai.types.toolparallelaisearch attribute)":[[0,"genai.types.ToolParallelAiSearch.custom_configs",false]],"custom_configs (genai.types.toolparallelaisearchdict attribute)":[[0,"genai.types.ToolParallelAiSearchDict.custom_configs",false]],"custom_function (genai.types.metric attribute)":[[0,"genai.types.Metric.custom_function",false]],"custom_function (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.custom_function",false]],"custom_metadata (genai.types.document attribute)":[[0,"genai.types.Document.custom_metadata",false]],"custom_metadata (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.custom_metadata",false]],"custom_metadata (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.custom_metadata",false]],"custom_metadata (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.custom_metadata",false]],"custom_metadata (genai.types.importfileconfig attribute)":[[0,"genai.types.ImportFileConfig.custom_metadata",false]],"custom_metadata (genai.types.importfileconfigdict attribute)":[[0,"genai.types.ImportFileConfigDict.custom_metadata",false]],"custom_metadata (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.custom_metadata",false]],"custom_metadata (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.custom_metadata",false]],"custom_output (genai.types.pairwisemetricresult attribute)":[[0,"genai.types.PairwiseMetricResult.custom_output",false]],"custom_output (genai.types.pairwisemetricresultdict attribute)":[[0,"genai.types.PairwiseMetricResultDict.custom_output",false]],"custom_output (genai.types.pointwisemetricresult attribute)":[[0,"genai.types.PointwiseMetricResult.custom_output",false]],"custom_output (genai.types.pointwisemetricresultdict attribute)":[[0,"genai.types.PointwiseMetricResultDict.custom_output",false]],"custom_output_format_config (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.custom_output_format_config",false]],"custom_output_format_config (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.custom_output_format_config",false]],"custom_output_format_config (genai.types.pointwisemetricspec attribute)":[[0,"genai.types.PointwiseMetricSpec.custom_output_format_config",false]],"custom_output_format_config (genai.types.pointwisemetricspecdict attribute)":[[0,"genai.types.PointwiseMetricSpecDict.custom_output_format_config",false]],"custom_vocabulary (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.custom_vocabulary",false]],"custom_vocabulary (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.custom_vocabulary",false]],"customcodeexecutionresultdict (class in genai.types)":[[0,"genai.types.CustomCodeExecutionResultDict",false]],"customcodeexecutionspecdict (class in genai.types)":[[0,"genai.types.CustomCodeExecutionSpecDict",false]],"customized_avatar (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.customized_avatar",false]],"customized_avatar (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.customized_avatar",false]],"customizedavatardict (class in genai.types)":[[0,"genai.types.CustomizedAvatarDict",false]],"custommetadatadict (class in genai.types)":[[0,"genai.types.CustomMetadataDict",false]],"customoutputdict (class in genai.types)":[[0,"genai.types.CustomOutputDict",false]],"customoutputformatconfigdict (class in genai.types)":[[0,"genai.types.CustomOutputFormatConfigDict",false]],"d_flat_major_b_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.D_FLAT_MAJOR_B_FLAT_MINOR",false]],"d_major_b_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.D_MAJOR_B_MINOR",false]],"data (genai.types.audiochunk attribute)":[[0,"genai.types.AudioChunk.data",false]],"data (genai.types.audiochunkdict attribute)":[[0,"genai.types.AudioChunkDict.data",false]],"data (genai.types.blob attribute)":[[0,"genai.types.Blob.data",false]],"data (genai.types.blobdict attribute)":[[0,"genai.types.BlobDict.data",false]],"data (genai.types.functionresponseblob attribute)":[[0,"genai.types.FunctionResponseBlob.data",false]],"data (genai.types.functionresponseblobdict attribute)":[[0,"genai.types.FunctionResponseBlobDict.data",false]],"data (genai.types.liveservermessage property)":[[0,"genai.types.LiveServerMessage.data",false]],"data_modification (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.DATA_MODIFICATION",false]],"data_store (genai.types.vertexaisearchdatastorespec attribute)":[[0,"genai.types.VertexAISearchDataStoreSpec.data_store",false]],"data_store (genai.types.vertexaisearchdatastorespecdict attribute)":[[0,"genai.types.VertexAISearchDataStoreSpecDict.data_store",false]],"data_store_specs (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.data_store_specs",false]],"data_store_specs (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.data_store_specs",false]],"dataset (genai.types.aggregationoutput attribute)":[[0,"genai.types.AggregationOutput.dataset",false]],"dataset (genai.types.aggregationoutputdict attribute)":[[0,"genai.types.AggregationOutputDict.dataset",false]],"datasetdistributiondict (class in genai.types)":[[0,"genai.types.DatasetDistributionDict",false]],"datasetdistributiondistributionbucketdict (class in genai.types)":[[0,"genai.types.DatasetDistributionDistributionBucketDict",false]],"datasetstatsdict (class in genai.types)":[[0,"genai.types.DatasetStatsDict",false]],"datastore (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.datastore",false]],"datastore (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.datastore",false]],"day (genai.types.googletypedate attribute)":[[0,"genai.types.GoogleTypeDate.day",false]],"day (genai.types.googletypedatedict attribute)":[[0,"genai.types.GoogleTypeDateDict.day",false]],"debug_config (genai.client.client attribute)":[[0,"genai.client.Client.debug_config",false]],"default (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.default",false]],"default (genai.types.schema attribute)":[[0,"genai.types.Schema.default",false]],"default (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.default",false]],"default_checkpoint_id (genai.types.model attribute)":[[0,"genai.types.Model.default_checkpoint_id",false]],"default_checkpoint_id (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.default_checkpoint_id",false]],"default_checkpoint_id (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.default_checkpoint_id",false]],"default_checkpoint_id (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.default_checkpoint_id",false]],"defs (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.defs",false]],"defs (genai.types.schema attribute)":[[0,"genai.types.Schema.defs",false]],"defs (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.defs",false]],"delete() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.delete",false]],"delete() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.delete",false]],"delete() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.delete",false]],"delete() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.delete",false]],"delete() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.delete",false]],"delete() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.delete",false]],"delete() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.delete",false]],"delete() (genai.models.models method)":[[0,"genai.models.Models.delete",false]],"delete_environment() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.delete_environment",false]],"delete_environment() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.delete_environment",false]],"deletebatchjobconfigdict (class in genai.types)":[[0,"genai.types.DeleteBatchJobConfigDict",false]],"deletecachedcontentconfigdict (class in genai.types)":[[0,"genai.types.DeleteCachedContentConfigDict",false]],"deletecachedcontentresponsedict (class in genai.types)":[[0,"genai.types.DeleteCachedContentResponseDict",false]],"deletedocumentconfigdict (class in genai.types)":[[0,"genai.types.DeleteDocumentConfigDict",false]],"deletefileconfigdict (class in genai.types)":[[0,"genai.types.DeleteFileConfigDict",false]],"deletefileresponsedict (class in genai.types)":[[0,"genai.types.DeleteFileResponseDict",false]],"deletefilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.DeleteFileSearchStoreConfigDict",false]],"deletemodelconfigdict (class in genai.types)":[[0,"genai.types.DeleteModelConfigDict",false]],"deletemodelresponsedict (class in genai.types)":[[0,"genai.types.DeleteModelResponseDict",false]],"deleteresourcejobdict (class in genai.types)":[[0,"genai.types.DeleteResourceJobDict",false]],"delivery (class in genai.types)":[[0,"genai.types.Delivery",false]],"delivery (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.delivery",false]],"delivery (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.delivery",false]],"delivery (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.delivery",false]],"delivery (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.delivery",false]],"delivery (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.delivery",false]],"delivery (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.delivery",false]],"delivery_unspecified (genai.types.delivery attribute)":[[0,"genai.types.Delivery.DELIVERY_UNSPECIFIED",false]],"density (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.density",false]],"density (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.density",false]],"deployed_model_id (genai.types.endpoint attribute)":[[0,"genai.types.Endpoint.deployed_model_id",false]],"deployed_model_id (genai.types.endpointdict attribute)":[[0,"genai.types.EndpointDict.deployed_model_id",false]],"deprecated (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.DEPRECATED",false]],"description (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.description",false]],"description (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.description",false]],"description (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.description",false]],"description (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.description",false]],"description (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.description",false]],"description (genai.types.model attribute)":[[0,"genai.types.Model.description",false]],"description (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.description",false]],"description (genai.types.schema attribute)":[[0,"genai.types.Schema.description",false]],"description (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.description",false]],"description (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.description",false]],"description (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.description",false]],"description (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.description",false]],"description (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.description",false]],"dest (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.dest",false]],"dest (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.dest",false]],"dest (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.dest",false]],"dest (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.dest",false]],"details (genai.types.filestatus attribute)":[[0,"genai.types.FileStatus.details",false]],"details (genai.types.filestatusdict attribute)":[[0,"genai.types.FileStatusDict.details",false]],"details (genai.types.googlerpcstatus attribute)":[[0,"genai.types.GoogleRpcStatus.details",false]],"details (genai.types.googlerpcstatusdict attribute)":[[0,"genai.types.GoogleRpcStatusDict.details",false]],"details (genai.types.joberror attribute)":[[0,"genai.types.JobError.details",false]],"details (genai.types.joberrordict attribute)":[[0,"genai.types.JobErrorDict.details",false]],"diarization (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.diarization",false]],"diarization (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.diarization",false]],"disable (genai.types.automaticfunctioncallingconfig attribute)":[[0,"genai.types.AutomaticFunctionCallingConfig.disable",false]],"disable (genai.types.automaticfunctioncallingconfigdict attribute)":[[0,"genai.types.AutomaticFunctionCallingConfigDict.disable",false]],"disable_attribution (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.disable_attribution",false]],"disable_attribution (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.disable_attribution",false]],"disabled (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.disabled",false]],"disabled (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.disabled",false]],"disabled_safety_policies (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.disabled_safety_policies",false]],"disabled_safety_policies (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.disabled_safety_policies",false]],"display_name (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.display_name",false]],"display_name (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.display_name",false]],"display_name (genai.types.blob attribute)":[[0,"genai.types.Blob.display_name",false]],"display_name (genai.types.blobdict attribute)":[[0,"genai.types.BlobDict.display_name",false]],"display_name (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.display_name",false]],"display_name (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.display_name",false]],"display_name (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.display_name",false]],"display_name (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.display_name",false]],"display_name (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.display_name",false]],"display_name (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.display_name",false]],"display_name (genai.types.createembeddingsbatchjobconfig attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfig.display_name",false]],"display_name (genai.types.createembeddingsbatchjobconfigdict attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfigDict.display_name",false]],"display_name (genai.types.createfilesearchstoreconfig attribute)":[[0,"genai.types.CreateFileSearchStoreConfig.display_name",false]],"display_name (genai.types.createfilesearchstoreconfigdict attribute)":[[0,"genai.types.CreateFileSearchStoreConfigDict.display_name",false]],"display_name (genai.types.document attribute)":[[0,"genai.types.Document.display_name",false]],"display_name (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.display_name",false]],"display_name (genai.types.file attribute)":[[0,"genai.types.File.display_name",false]],"display_name (genai.types.filedata attribute)":[[0,"genai.types.FileData.display_name",false]],"display_name (genai.types.filedatadict attribute)":[[0,"genai.types.FileDataDict.display_name",false]],"display_name (genai.types.filedict attribute)":[[0,"genai.types.FileDict.display_name",false]],"display_name (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.display_name",false]],"display_name (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.display_name",false]],"display_name (genai.types.functionresponseblob attribute)":[[0,"genai.types.FunctionResponseBlob.display_name",false]],"display_name (genai.types.functionresponseblobdict attribute)":[[0,"genai.types.FunctionResponseBlobDict.display_name",false]],"display_name (genai.types.functionresponsefiledata attribute)":[[0,"genai.types.FunctionResponseFileData.display_name",false]],"display_name (genai.types.functionresponsefiledatadict attribute)":[[0,"genai.types.FunctionResponseFileDataDict.display_name",false]],"display_name (genai.types.groundingchunkmapsplaceanswersourcesauthorattribution attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution.display_name",false]],"display_name (genai.types.groundingchunkmapsplaceanswersourcesauthorattributiondict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict.display_name",false]],"display_name (genai.types.model attribute)":[[0,"genai.types.Model.display_name",false]],"display_name (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.display_name",false]],"display_name (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.display_name",false]],"display_name (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.display_name",false]],"display_name (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.display_name",false]],"display_name (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.display_name",false]],"display_name (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.display_name",false]],"display_name (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.display_name",false]],"display_name (genai.types.vertexmultimodaldatasetdestination attribute)":[[0,"genai.types.VertexMultimodalDatasetDestination.display_name",false]],"display_name (genai.types.vertexmultimodaldatasetdestinationdict attribute)":[[0,"genai.types.VertexMultimodalDatasetDestinationDict.display_name",false]],"distance_meters (genai.types.groundingchunkmapsroute attribute)":[[0,"genai.types.GroundingChunkMapsRoute.distance_meters",false]],"distance_meters (genai.types.groundingchunkmapsroutedict attribute)":[[0,"genai.types.GroundingChunkMapsRouteDict.distance_meters",false]],"distillation (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.DISTILLATION",false]],"distillation_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.distillation_data_stats",false]],"distillation_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.distillation_data_stats",false]],"distillation_sampling_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.distillation_sampling_spec",false]],"distillation_sampling_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.distillation_sampling_spec",false]],"distillation_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.distillation_spec",false]],"distillation_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.distillation_spec",false]],"distillationdatastatsdict (class in genai.types)":[[0,"genai.types.DistillationDataStatsDict",false]],"distillationhyperparametersdict (class in genai.types)":[[0,"genai.types.DistillationHyperParametersDict",false]],"distillationsamplingspecdict (class in genai.types)":[[0,"genai.types.DistillationSamplingSpecDict",false]],"distillationspecdict (class in genai.types)":[[0,"genai.types.DistillationSpecDict",false]],"diversity (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.DIVERSITY",false]],"document (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.DOCUMENT",false]],"document_name (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.document_name",false]],"document_name (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.document_name",false]],"document_name (genai.types.importfileresponse attribute)":[[0,"genai.types.ImportFileResponse.document_name",false]],"document_name (genai.types.importfileresponsedict attribute)":[[0,"genai.types.ImportFileResponseDict.document_name",false]],"document_name (genai.types.uploadtofilesearchstoreresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResponse.document_name",false]],"document_name (genai.types.uploadtofilesearchstoreresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResponseDict.document_name",false]],"document_ocr (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.document_ocr",false]],"document_ocr (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.document_ocr",false]],"documentdict (class in genai.types)":[[0,"genai.types.DocumentDict",false]],"documents (genai.types.listdocumentsresponse attribute)":[[0,"genai.types.ListDocumentsResponse.documents",false]],"documents (genai.types.listdocumentsresponsedict attribute)":[[0,"genai.types.ListDocumentsResponseDict.documents",false]],"documentstate (class in genai.types)":[[0,"genai.types.DocumentState",false]],"domain (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.domain",false]],"domain (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.domain",false]],"domain (genai.types.groundingchunkweb attribute)":[[0,"genai.types.GroundingChunkWeb.domain",false]],"domain (genai.types.groundingchunkwebdict attribute)":[[0,"genai.types.GroundingChunkWebDict.domain",false]],"done (genai.types.batchjob property)":[[0,"genai.types.BatchJob.done",false]],"done (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.done",false]],"done (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.done",false]],"done (genai.types.operation attribute)":[[0,"genai.types.Operation.done",false]],"done (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.done",false]],"done (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.done",false]],"done (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.done",false]],"done (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.done",false]],"dont_allow (genai.types.persongeneration attribute)":[[0,"genai.types.PersonGeneration.DONT_ALLOW",false]],"download_uri (genai.types.file attribute)":[[0,"genai.types.File.download_uri",false]],"download_uri (genai.types.filedict attribute)":[[0,"genai.types.FileDict.download_uri",false]],"downloadfileconfigdict (class in genai.types)":[[0,"genai.types.DownloadFileConfigDict",false]],"downloadmediaconfigdict (class in genai.types)":[[0,"genai.types.DownloadMediaConfigDict",false]],"dropped_example_indices (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.dropped_example_indices",false]],"dropped_example_indices (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.dropped_example_indices",false]],"dropped_example_indices (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.dropped_example_indices",false]],"dropped_example_indices (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.dropped_example_indices",false]],"dropped_example_reasons (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.dropped_example_reasons",false]],"duration (genai.types.groundingchunkmapsroute attribute)":[[0,"genai.types.GroundingChunkMapsRoute.duration",false]],"duration (genai.types.groundingchunkmapsroutedict attribute)":[[0,"genai.types.GroundingChunkMapsRouteDict.duration",false]],"duration (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.duration",false]],"duration (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.duration",false]],"duration_seconds (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.duration_seconds",false]],"duration_seconds (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.duration_seconds",false]],"dynamic_retrieval_config (genai.types.googlesearchretrieval attribute)":[[0,"genai.types.GoogleSearchRetrieval.dynamic_retrieval_config",false]],"dynamic_retrieval_config (genai.types.googlesearchretrievaldict attribute)":[[0,"genai.types.GoogleSearchRetrievalDict.dynamic_retrieval_config",false]],"dynamic_threshold (genai.types.dynamicretrievalconfig attribute)":[[0,"genai.types.DynamicRetrievalConfig.dynamic_threshold",false]],"dynamic_threshold (genai.types.dynamicretrievalconfigdict attribute)":[[0,"genai.types.DynamicRetrievalConfigDict.dynamic_threshold",false]],"dynamicretrievalconfigdict (class in genai.types)":[[0,"genai.types.DynamicRetrievalConfigDict",false]],"dynamicretrievalconfigmode (class in genai.types)":[[0,"genai.types.DynamicRetrievalConfigMode",false]],"e_flat_major_c_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.E_FLAT_MAJOR_C_MINOR",false]],"e_major_d_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.E_MAJOR_D_FLAT_MINOR",false]],"echo_target_language (genai.types.translationconfig attribute)":[[0,"genai.types.TranslationConfig.echo_target_language",false]],"echo_target_language (genai.types.translationconfigdict attribute)":[[0,"genai.types.TranslationConfigDict.echo_target_language",false]],"edit_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.edit_image",false]],"edit_image() (genai.models.models method)":[[0,"genai.models.Models.edit_image",false]],"edit_mode (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.edit_mode",false]],"edit_mode (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.edit_mode",false]],"edit_mode_bgswap (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_BGSWAP",false]],"edit_mode_controlled_editing (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_CONTROLLED_EDITING",false]],"edit_mode_default (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_DEFAULT",false]],"edit_mode_inpaint_insertion (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_INPAINT_INSERTION",false]],"edit_mode_inpaint_removal (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_INPAINT_REMOVAL",false]],"edit_mode_outpaint (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_OUTPAINT",false]],"edit_mode_product_image (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_PRODUCT_IMAGE",false]],"edit_mode_style (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_STYLE",false]],"editimageconfigdict (class in genai.types)":[[0,"genai.types.EditImageConfigDict",false]],"editimageresponsedict (class in genai.types)":[[0,"genai.types.EditImageResponseDict",false]],"editmode (class in genai.types)":[[0,"genai.types.EditMode",false]],"elastic_search (genai.types.apispec attribute)":[[0,"genai.types.ApiSpec.ELASTIC_SEARCH",false]],"elastic_search_params (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.elastic_search_params",false]],"elastic_search_params (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.elastic_search_params",false]],"embed_content (genai.types.embeddingapitype attribute)":[[0,"genai.types.EmbeddingApiType.EMBED_CONTENT",false]],"embed_content() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.embed_content",false]],"embed_content() (genai.models.models method)":[[0,"genai.models.Models.embed_content",false]],"embedcontentbatchdict (class in genai.types)":[[0,"genai.types.EmbedContentBatchDict",false]],"embedcontentconfigdict (class in genai.types)":[[0,"genai.types.EmbedContentConfigDict",false]],"embedcontentmetadatadict (class in genai.types)":[[0,"genai.types.EmbedContentMetadataDict",false]],"embedcontentparametersdict (class in genai.types)":[[0,"genai.types.EmbedContentParametersDict",false]],"embedcontentresponsedict (class in genai.types)":[[0,"genai.types.EmbedContentResponseDict",false]],"embedding (genai.types.singleembedcontentresponse attribute)":[[0,"genai.types.SingleEmbedContentResponse.embedding",false]],"embedding (genai.types.singleembedcontentresponsedict attribute)":[[0,"genai.types.SingleEmbedContentResponseDict.embedding",false]],"embedding_model (genai.types.createfilesearchstoreconfig attribute)":[[0,"genai.types.CreateFileSearchStoreConfig.embedding_model",false]],"embedding_model (genai.types.createfilesearchstoreconfigdict attribute)":[[0,"genai.types.CreateFileSearchStoreConfigDict.embedding_model",false]],"embedding_model (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.embedding_model",false]],"embedding_model (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.embedding_model",false]],"embeddingapitype (class in genai.types)":[[0,"genai.types.EmbeddingApiType",false]],"embeddings (genai.types.embedcontentresponse attribute)":[[0,"genai.types.EmbedContentResponse.embeddings",false]],"embeddings (genai.types.embedcontentresponsedict attribute)":[[0,"genai.types.EmbedContentResponseDict.embeddings",false]],"embeddingsbatchjobsourcedict (class in genai.types)":[[0,"genai.types.EmbeddingsBatchJobSourceDict",false]],"en (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.en",false]],"enable_affective_dialog (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.enable_affective_dialog",false]],"enable_affective_dialog (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.enable_affective_dialog",false]],"enable_affective_dialog (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.enable_affective_dialog",false]],"enable_affective_dialog (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.enable_affective_dialog",false]],"enable_control_image_computation (genai.types.controlreferenceconfig attribute)":[[0,"genai.types.ControlReferenceConfig.enable_control_image_computation",false]],"enable_control_image_computation (genai.types.controlreferenceconfigdict attribute)":[[0,"genai.types.ControlReferenceConfigDict.enable_control_image_computation",false]],"enable_enhanced_civic_answers (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.enable_enhanced_civic_answers",false]],"enable_enhanced_civic_answers (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.enable_enhanced_civic_answers",false]],"enable_enhanced_civic_answers (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.enable_enhanced_civic_answers",false]],"enable_enhanced_civic_answers (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.enable_enhanced_civic_answers",false]],"enable_prompt_injection_detection (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.enable_prompt_injection_detection",false]],"enable_prompt_injection_detection (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.enable_prompt_injection_detection",false]],"enable_widget (genai.types.googlemaps attribute)":[[0,"genai.types.GoogleMaps.enable_widget",false]],"enable_widget (genai.types.googlemapsdict attribute)":[[0,"genai.types.GoogleMapsDict.enable_widget",false]],"encoded_polyline (genai.types.groundingchunkmapsroute attribute)":[[0,"genai.types.GroundingChunkMapsRoute.encoded_polyline",false]],"encoded_polyline (genai.types.groundingchunkmapsroutedict attribute)":[[0,"genai.types.GroundingChunkMapsRouteDict.encoded_polyline",false]],"encryption_spec (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.encryption_spec",false]],"encryption_spec (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.encryption_spec",false]],"encryption_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.encryption_spec",false]],"encryption_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.encryption_spec",false]],"encryptionspecdict (class in genai.types)":[[0,"genai.types.EncryptionSpecDict",false]],"end_index (genai.types.citation attribute)":[[0,"genai.types.Citation.end_index",false]],"end_index (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.end_index",false]],"end_index (genai.types.segment attribute)":[[0,"genai.types.Segment.end_index",false]],"end_index (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.end_index",false]],"end_of_speech_sensitivity (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.end_of_speech_sensitivity",false]],"end_of_speech_sensitivity (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.end_of_speech_sensitivity",false]],"end_offset (genai.types.videometadata attribute)":[[0,"genai.types.VideoMetadata.end_offset",false]],"end_offset (genai.types.videometadatadict attribute)":[[0,"genai.types.VideoMetadataDict.end_offset",false]],"end_offset (genai.types.wordinfo attribute)":[[0,"genai.types.WordInfo.end_offset",false]],"end_offset (genai.types.wordinfodict attribute)":[[0,"genai.types.WordInfoDict.end_offset",false]],"end_sensitivity_high (genai.types.endsensitivity attribute)":[[0,"genai.types.EndSensitivity.END_SENSITIVITY_HIGH",false]],"end_sensitivity_low (genai.types.endsensitivity attribute)":[[0,"genai.types.EndSensitivity.END_SENSITIVITY_LOW",false]],"end_sensitivity_unspecified (genai.types.endsensitivity attribute)":[[0,"genai.types.EndSensitivity.END_SENSITIVITY_UNSPECIFIED",false]],"end_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.end_time",false]],"end_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.end_time",false]],"end_time (genai.types.interval attribute)":[[0,"genai.types.Interval.end_time",false]],"end_time (genai.types.intervaldict attribute)":[[0,"genai.types.IntervalDict.end_time",false]],"end_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.end_time",false]],"end_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.end_time",false]],"endpoint (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.endpoint",false]],"endpoint (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.endpoint",false]],"endpoint (genai.types.tunedmodel attribute)":[[0,"genai.types.TunedModel.endpoint",false]],"endpoint (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.endpoint",false]],"endpoint (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.endpoint",false]],"endpoint (genai.types.tunedmodeldict attribute)":[[0,"genai.types.TunedModelDict.endpoint",false]],"endpointdict (class in genai.types)":[[0,"genai.types.EndpointDict",false]],"endpoints (genai.types.model attribute)":[[0,"genai.types.Model.endpoints",false]],"endpoints (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.endpoints",false]],"endsensitivity (class in genai.types)":[[0,"genai.types.EndSensitivity",false]],"engine (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.engine",false]],"engine (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.engine",false]],"enhance_input_image (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.enhance_input_image",false]],"enhance_input_image (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.enhance_input_image",false]],"enhance_prompt (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.enhance_prompt",false]],"enhance_prompt (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.enhance_prompt",false]],"enhance_prompt (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.enhance_prompt",false]],"enhance_prompt (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.enhance_prompt",false]],"enhance_prompt (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.enhance_prompt",false]],"enhance_prompt (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.enhance_prompt",false]],"enhanced_prompt (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.enhanced_prompt",false]],"enhanced_prompt (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.enhanced_prompt",false]],"enterprise (genai.client.client attribute)":[[0,"genai.client.Client.enterprise",false]],"enterprise_web_search (genai.types.tool attribute)":[[0,"genai.types.Tool.enterprise_web_search",false]],"enterprise_web_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.enterprise_web_search",false]],"enterprisewebsearchdict (class in genai.types)":[[0,"genai.types.EnterpriseWebSearchDict",false]],"entitylabeldict (class in genai.types)":[[0,"genai.types.EntityLabelDict",false]],"enum (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.enum",false]],"enum (genai.types.schema attribute)":[[0,"genai.types.Schema.enum",false]],"enum (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.enum",false]],"environment (class in genai.types)":[[0,"genai.types.Environment",false]],"environment (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.environment",false]],"environment (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.environment",false]],"environment_browser (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_BROWSER",false]],"environment_desktop (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_DESKTOP",false]],"environment_mobile (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_MOBILE",false]],"environment_unspecified (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_UNSPECIFIED",false]],"environments (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.environments",false]],"environments (genai.client.client property)":[[0,"genai.client.Client.environments",false]],"epoch (genai.types.checkpoint attribute)":[[0,"genai.types.Checkpoint.epoch",false]],"epoch (genai.types.checkpointdict attribute)":[[0,"genai.types.CheckpointDict.epoch",false]],"epoch (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.epoch",false]],"epoch (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.epoch",false]],"epoch_count (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.epoch_count",false]],"epoch_count (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.epoch_count",false]],"epoch_count (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.epoch_count",false]],"epoch_count (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.epoch_count",false]],"epoch_count (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.epoch_count",false]],"epoch_count (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.epoch_count",false]],"epoch_count (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.epoch_count",false]],"epoch_count (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.epoch_count",false]],"error (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.error",false]],"error (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.error",false]],"error (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.error",false]],"error (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.error",false]],"error (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.error",false]],"error (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.error",false]],"error (genai.types.file attribute)":[[0,"genai.types.File.error",false]],"error (genai.types.filedict attribute)":[[0,"genai.types.FileDict.error",false]],"error (genai.types.inlinedembedcontentresponse attribute)":[[0,"genai.types.InlinedEmbedContentResponse.error",false]],"error (genai.types.inlinedembedcontentresponsedict attribute)":[[0,"genai.types.InlinedEmbedContentResponseDict.error",false]],"error (genai.types.inlinedresponse attribute)":[[0,"genai.types.InlinedResponse.error",false]],"error (genai.types.inlinedresponsedict attribute)":[[0,"genai.types.InlinedResponseDict.error",false]],"error (genai.types.operation attribute)":[[0,"genai.types.Operation.error",false]],"error (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.error",false]],"error (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.error",false]],"error (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.error",false]],"error (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.error",false]],"error (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.error",false]],"error (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.error",false]],"error (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.error",false]],"error (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.error",false]],"es (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.es",false]],"evaluate_dataset_response (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.evaluate_dataset_response",false]],"evaluate_dataset_response (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.evaluate_dataset_response",false]],"evaluate_dataset_runs (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.evaluate_dataset_runs",false]],"evaluate_dataset_runs (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.evaluate_dataset_runs",false]],"evaluate_interval (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.evaluate_interval",false]],"evaluate_interval (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.evaluate_interval",false]],"evaluate_interval (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.evaluate_interval",false]],"evaluate_interval (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.evaluate_interval",false]],"evaluatedatasetresponsedict (class in genai.types)":[[0,"genai.types.EvaluateDatasetResponseDict",false]],"evaluatedatasetrundict (class in genai.types)":[[0,"genai.types.EvaluateDatasetRunDict",false]],"evaluation_config (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.evaluation_config",false]],"evaluation_config (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.evaluation_config",false]],"evaluation_config (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.evaluation_config",false]],"evaluation_config (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.evaluation_config",false]],"evaluation_function (genai.types.customcodeexecutionspec attribute)":[[0,"genai.types.CustomCodeExecutionSpec.evaluation_function",false]],"evaluation_function (genai.types.customcodeexecutionspecdict attribute)":[[0,"genai.types.CustomCodeExecutionSpecDict.evaluation_function",false]],"evaluation_run (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.evaluation_run",false]],"evaluation_run (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.evaluation_run",false]],"evaluationconfigdict (class in genai.types)":[[0,"genai.types.EvaluationConfigDict",false]],"evaluationdatasetdict (class in genai.types)":[[0,"genai.types.EvaluationDatasetDict",false]],"evaluationparserconfigcustomcodeparserconfigdict (class in genai.types)":[[0,"genai.types.EvaluationParserConfigCustomCodeParserConfigDict",false]],"evaluationparserconfigdict (class in genai.types)":[[0,"genai.types.EvaluationParserConfigDict",false]],"exa_ai_search (genai.types.tool attribute)":[[0,"genai.types.Tool.exa_ai_search",false]],"exa_ai_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.exa_ai_search",false]],"exact_match (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.EXACT_MATCH",false]],"exact_match (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.EXACT_MATCH",false]],"exact_match_metric_value (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.exact_match_metric_value",false]],"exact_match_metric_value (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.exact_match_metric_value",false]],"exact_match_scorer (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.exact_match_scorer",false]],"exact_match_scorer (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.exact_match_scorer",false]],"exactmatchmetricvaluedict (class in genai.types)":[[0,"genai.types.ExactMatchMetricValueDict",false]],"example (genai.types.schema attribute)":[[0,"genai.types.Schema.example",false]],"example (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.example",false]],"examples (genai.types.tuningdataset attribute)":[[0,"genai.types.TuningDataset.examples",false]],"examples (genai.types.tuningdatasetdict attribute)":[[0,"genai.types.TuningDatasetDict.examples",false]],"exception_if_mldev (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.exception_if_mldev",false]],"exception_if_mldev (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.exception_if_mldev",false]],"exception_if_vertex (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.exception_if_vertex",false]],"exception_if_vertex (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.exception_if_vertex",false]],"exclude_domains (genai.types.enterprisewebsearch attribute)":[[0,"genai.types.EnterpriseWebSearch.exclude_domains",false]],"exclude_domains (genai.types.enterprisewebsearchdict attribute)":[[0,"genai.types.EnterpriseWebSearchDict.exclude_domains",false]],"exclude_domains (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.exclude_domains",false]],"exclude_domains (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.exclude_domains",false]],"excluded_predefined_functions (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.excluded_predefined_functions",false]],"excluded_predefined_functions (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.excluded_predefined_functions",false]],"executable_code (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.executable_code",false]],"executable_code (genai.types.part attribute)":[[0,"genai.types.Part.executable_code",false]],"executable_code (genai.types.partdict attribute)":[[0,"genai.types.PartDict.executable_code",false]],"executablecodedict (class in genai.types)":[[0,"genai.types.ExecutableCodeDict",false]],"exp_base (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.exp_base",false]],"exp_base (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.exp_base",false]],"experiment (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.experiment",false]],"experiment (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.experiment",false]],"experimental (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.EXPERIMENTAL",false]],"expiration_time (genai.types.file attribute)":[[0,"genai.types.File.expiration_time",false]],"expiration_time (genai.types.filedict attribute)":[[0,"genai.types.FileDict.expiration_time",false]],"expire_time (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.expire_time",false]],"expire_time (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.expire_time",false]],"expire_time (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.expire_time",false]],"expire_time (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.expire_time",false]],"expire_time (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.expire_time",false]],"expire_time (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.expire_time",false]],"expire_time (genai.types.updatecachedcontentconfig attribute)":[[0,"genai.types.UpdateCachedContentConfig.expire_time",false]],"expire_time (genai.types.updatecachedcontentconfigdict attribute)":[[0,"genai.types.UpdateCachedContentConfigDict.expire_time",false]],"explanation (genai.types.pairwisemetricresult attribute)":[[0,"genai.types.PairwiseMetricResult.explanation",false]],"explanation (genai.types.pairwisemetricresultdict attribute)":[[0,"genai.types.PairwiseMetricResultDict.explanation",false]],"explanation (genai.types.pointwisemetricresult attribute)":[[0,"genai.types.PointwiseMetricResult.explanation",false]],"explanation (genai.types.pointwisemetricresultdict attribute)":[[0,"genai.types.PointwiseMetricResultDict.explanation",false]],"explicit_vad_signal (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.explicit_vad_signal",false]],"explicit_vad_signal (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.explicit_vad_signal",false]],"explicit_vad_signal (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.explicit_vad_signal",false]],"explicit_vad_signal (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.explicit_vad_signal",false]],"export_last_checkpoint_only (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.export_last_checkpoint_only",false]],"expression (genai.types.reinforcementtuningautoraterscorerexactmatchscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer.expression",false]],"expression (genai.types.reinforcementtuningautoraterscorerexactmatchscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict.expression",false]],"expression (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpression.expression",false]],"expression (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict.expression",false]],"external_api (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.external_api",false]],"external_api (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.external_api",false]],"externalapidict (class in genai.types)":[[0,"genai.types.ExternalApiDict",false]],"externalapielasticsearchparamsdict (class in genai.types)":[[0,"genai.types.ExternalApiElasticSearchParamsDict",false]],"externalapisimplesearchparamsdict (class in genai.types)":[[0,"genai.types.ExternalApiSimpleSearchParamsDict",false]],"extra_body (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.extra_body",false]],"extra_body (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.extra_body",false]],"f_major_d_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.F_MAJOR_D_MINOR",false]],"failed (genai.types.filestate attribute)":[[0,"genai.types.FileState.FAILED",false]],"failed_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.failed_count",false]],"failed_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.failed_count",false]],"failed_documents_count (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.failed_documents_count",false]],"failed_documents_count (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.failed_documents_count",false]],"fast (genai.types.tuningspeed attribute)":[[0,"genai.types.TuningSpeed.FAST",false]],"feature_selection_preference (genai.types.modelselectionconfig attribute)":[[0,"genai.types.ModelSelectionConfig.feature_selection_preference",false]],"feature_selection_preference (genai.types.modelselectionconfigdict attribute)":[[0,"genai.types.ModelSelectionConfigDict.feature_selection_preference",false]],"feature_selection_preference_unspecified (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.FEATURE_SELECTION_PREFERENCE_UNSPECIFIED",false]],"featureselectionpreference (class in genai.types)":[[0,"genai.types.FeatureSelectionPreference",false]],"fetchpredictoperationconfigdict (class in genai.types)":[[0,"genai.types.FetchPredictOperationConfigDict",false]],"file_data (genai.types.functionresponsepart attribute)":[[0,"genai.types.FunctionResponsePart.file_data",false]],"file_data (genai.types.functionresponsepartdict attribute)":[[0,"genai.types.FunctionResponsePartDict.file_data",false]],"file_data (genai.types.part attribute)":[[0,"genai.types.Part.file_data",false]],"file_data (genai.types.partdict attribute)":[[0,"genai.types.PartDict.file_data",false]],"file_id (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.file_id",false]],"file_id (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.file_id",false]],"file_name (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.file_name",false]],"file_name (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.file_name",false]],"file_name (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.file_name",false]],"file_name (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.file_name",false]],"file_name (genai.types.embeddingsbatchjobsource attribute)":[[0,"genai.types.EmbeddingsBatchJobSource.file_name",false]],"file_name (genai.types.embeddingsbatchjobsourcedict attribute)":[[0,"genai.types.EmbeddingsBatchJobSourceDict.file_name",false]],"file_search (genai.types.tool attribute)":[[0,"genai.types.Tool.file_search",false]],"file_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.file_search",false]],"file_search (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.FILE_SEARCH",false]],"file_search_store (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.file_search_store",false]],"file_search_store (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.file_search_store",false]],"file_search_store_names (genai.types.filesearch attribute)":[[0,"genai.types.FileSearch.file_search_store_names",false]],"file_search_store_names (genai.types.filesearchdict attribute)":[[0,"genai.types.FileSearchDict.file_search_store_names",false]],"file_search_stores (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.file_search_stores",false]],"file_search_stores (genai.client.client property)":[[0,"genai.client.Client.file_search_stores",false]],"file_search_stores (genai.types.listfilesearchstoresresponse attribute)":[[0,"genai.types.ListFileSearchStoresResponse.file_search_stores",false]],"file_search_stores (genai.types.listfilesearchstoresresponsedict attribute)":[[0,"genai.types.ListFileSearchStoresResponseDict.file_search_stores",false]],"file_uri (genai.types.filedata attribute)":[[0,"genai.types.FileData.file_uri",false]],"file_uri (genai.types.filedatadict attribute)":[[0,"genai.types.FileDataDict.file_uri",false]],"file_uri (genai.types.functionresponsefiledata attribute)":[[0,"genai.types.FunctionResponseFileData.file_uri",false]],"file_uri (genai.types.functionresponsefiledatadict attribute)":[[0,"genai.types.FunctionResponseFileDataDict.file_uri",false]],"filedatadict (class in genai.types)":[[0,"genai.types.FileDataDict",false]],"filedict (class in genai.types)":[[0,"genai.types.FileDict",false]],"files (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.files",false]],"files (genai.client.client property)":[[0,"genai.client.Client.files",false]],"files (genai.types.listfilesresponse attribute)":[[0,"genai.types.ListFilesResponse.files",false]],"files (genai.types.listfilesresponsedict attribute)":[[0,"genai.types.ListFilesResponseDict.files",false]],"files (genai.types.registerfilesresponse attribute)":[[0,"genai.types.RegisterFilesResponse.files",false]],"files (genai.types.registerfilesresponsedict attribute)":[[0,"genai.types.RegisterFilesResponseDict.files",false]],"filesearchdict (class in genai.types)":[[0,"genai.types.FileSearchDict",false]],"filesearchstoredict (class in genai.types)":[[0,"genai.types.FileSearchStoreDict",false]],"filesource (class in genai.types)":[[0,"genai.types.FileSource",false]],"filestate (class in genai.types)":[[0,"genai.types.FileState",false]],"filestatusdict (class in genai.types)":[[0,"genai.types.FileStatusDict",false]],"filter (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.filter",false]],"filter (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.filter",false]],"filter (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.filter",false]],"filter (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.filter",false]],"filter (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.filter",false]],"filter (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.filter",false]],"filter (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.filter",false]],"filter (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.filter",false]],"filter (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.filter",false]],"filter (genai.types.vertexaisearchdatastorespec attribute)":[[0,"genai.types.VertexAISearchDataStoreSpec.filter",false]],"filter (genai.types.vertexaisearchdatastorespecdict attribute)":[[0,"genai.types.VertexAISearchDataStoreSpecDict.filter",false]],"filter (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.filter",false]],"filtered_prompt (genai.types.livemusicservermessage attribute)":[[0,"genai.types.LiveMusicServerMessage.filtered_prompt",false]],"filtered_prompt (genai.types.livemusicservermessagedict attribute)":[[0,"genai.types.LiveMusicServerMessageDict.filtered_prompt",false]],"filtered_reason (genai.types.livemusicfilteredprompt attribute)":[[0,"genai.types.LiveMusicFilteredPrompt.filtered_reason",false]],"filtered_reason (genai.types.livemusicfilteredpromptdict attribute)":[[0,"genai.types.LiveMusicFilteredPromptDict.filtered_reason",false]],"financial_transactions (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.FINANCIAL_TRANSACTIONS",false]],"finish_message (genai.types.candidate attribute)":[[0,"genai.types.Candidate.finish_message",false]],"finish_message (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.finish_message",false]],"finish_reason (genai.types.candidate attribute)":[[0,"genai.types.Candidate.finish_reason",false]],"finish_reason (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.finish_reason",false]],"finish_reason_unspecified (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.FINISH_REASON_UNSPECIFIED",false]],"finished (genai.types.transcription attribute)":[[0,"genai.types.Transcription.finished",false]],"finished (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.finished",false]],"finishreason (class in genai.types)":[[0,"genai.types.FinishReason",false]],"first_page (genai.types.ragchunkpagespan attribute)":[[0,"genai.types.RagChunkPageSpan.first_page",false]],"first_page (genai.types.ragchunkpagespandict attribute)":[[0,"genai.types.RagChunkPageSpanDict.first_page",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersources attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSources.flag_content_uri",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersourcesdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict.flag_content_uri",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.flag_content_uri",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.flag_content_uri",false]],"flag_content_uri (genai.types.groundingmetadatasourceflagginguri attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUri.flag_content_uri",false]],"flag_content_uri (genai.types.groundingmetadatasourceflagginguridict attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUriDict.flag_content_uri",false]],"flex (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.FLEX",false]],"flip_enabled (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.flip_enabled",false]],"flip_enabled (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.flip_enabled",false]],"force (genai.types.deletedocumentconfig attribute)":[[0,"genai.types.DeleteDocumentConfig.force",false]],"force (genai.types.deletedocumentconfigdict attribute)":[[0,"genai.types.DeleteDocumentConfigDict.force",false]],"force (genai.types.deletefilesearchstoreconfig attribute)":[[0,"genai.types.DeleteFileSearchStoreConfig.force",false]],"force (genai.types.deletefilesearchstoreconfigdict attribute)":[[0,"genai.types.DeleteFileSearchStoreConfigDict.force",false]],"foreground (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.FOREGROUND",false]],"format (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.format",false]],"format (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.format",false]],"format (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.format",false]],"format (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.format",false]],"format (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.format",false]],"format (genai.types.schema attribute)":[[0,"genai.types.Schema.format",false]],"format (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.format",false]],"fps (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.fps",false]],"fps (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.fps",false]],"fps (genai.types.videometadata attribute)":[[0,"genai.types.VideoMetadata.fps",false]],"fps (genai.types.videometadatadict attribute)":[[0,"genai.types.VideoMetadataDict.fps",false]],"frequency_penalty (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.frequency_penalty",false]],"frequency_penalty (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.frequency_penalty",false]],"frequency_penalty (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.frequency_penalty",false]],"frequency_penalty (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.frequency_penalty",false]],"from_api_response() (genai.types.generatevideosoperation class method)":[[0,"genai.types.GenerateVideosOperation.from_api_response",false]],"from_api_response() (genai.types.importfileoperation class method)":[[0,"genai.types.ImportFileOperation.from_api_response",false]],"from_api_response() (genai.types.operation class method)":[[0,"genai.types.Operation.from_api_response",false]],"from_api_response() (genai.types.uploadtofilesearchstoreoperation class method)":[[0,"genai.types.UploadToFileSearchStoreOperation.from_api_response",false]],"from_bytes() (genai.types.functionresponsepart class method)":[[0,"genai.types.FunctionResponsePart.from_bytes",false]],"from_bytes() (genai.types.part class method)":[[0,"genai.types.Part.from_bytes",false]],"from_callable() (genai.types.functiondeclaration class method)":[[0,"genai.types.FunctionDeclaration.from_callable",false]],"from_callable_with_api_option() (genai.types.functiondeclaration class method)":[[0,"genai.types.FunctionDeclaration.from_callable_with_api_option",false]],"from_code_execution_result() (genai.types.part class method)":[[0,"genai.types.Part.from_code_execution_result",false]],"from_executable_code() (genai.types.part class method)":[[0,"genai.types.Part.from_executable_code",false]],"from_file() (genai.types.image class method)":[[0,"genai.types.Image.from_file",false]],"from_file() (genai.types.video class method)":[[0,"genai.types.Video.from_file",false]],"from_function_call() (genai.types.part class method)":[[0,"genai.types.Part.from_function_call",false]],"from_function_response() (genai.types.part class method)":[[0,"genai.types.Part.from_function_response",false]],"from_json_schema() (genai.types.schema class method)":[[0,"genai.types.Schema.from_json_schema",false]],"from_mcp_response() (genai.types.functionresponse class method)":[[0,"genai.types.FunctionResponse.from_mcp_response",false]],"from_text() (genai.types.part class method)":[[0,"genai.types.Part.from_text",false]],"from_uri() (genai.types.functionresponsepart class method)":[[0,"genai.types.FunctionResponsePart.from_uri",false]],"from_uri() (genai.types.part class method)":[[0,"genai.types.Part.from_uri",false]],"full_fine_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.full_fine_tuning_spec",false]],"full_fine_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.full_fine_tuning_spec",false]],"fullfinetuningspecdict (class in genai.types)":[[0,"genai.types.FullFineTuningSpecDict",false]],"function_call (genai.types.part attribute)":[[0,"genai.types.Part.function_call",false]],"function_call (genai.types.partdict attribute)":[[0,"genai.types.PartDict.function_call",false]],"function_calling_config (genai.types.toolconfig attribute)":[[0,"genai.types.ToolConfig.function_calling_config",false]],"function_calling_config (genai.types.toolconfigdict attribute)":[[0,"genai.types.ToolConfigDict.function_calling_config",false]],"function_calls (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.function_calls",false]],"function_calls (genai.types.liveservertoolcall attribute)":[[0,"genai.types.LiveServerToolCall.function_calls",false]],"function_calls (genai.types.liveservertoolcalldict attribute)":[[0,"genai.types.LiveServerToolCallDict.function_calls",false]],"function_declarations (genai.types.tool attribute)":[[0,"genai.types.Tool.function_declarations",false]],"function_declarations (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.function_declarations",false]],"function_response (genai.types.part attribute)":[[0,"genai.types.Part.function_response",false]],"function_response (genai.types.partdict attribute)":[[0,"genai.types.PartDict.function_response",false]],"function_responses (genai.types.liveclienttoolresponse attribute)":[[0,"genai.types.LiveClientToolResponse.function_responses",false]],"function_responses (genai.types.liveclienttoolresponsedict attribute)":[[0,"genai.types.LiveClientToolResponseDict.function_responses",false]],"functioncalldict (class in genai.types)":[[0,"genai.types.FunctionCallDict",false]],"functioncallingconfigdict (class in genai.types)":[[0,"genai.types.FunctionCallingConfigDict",false]],"functioncallingconfigmode (class in genai.types)":[[0,"genai.types.FunctionCallingConfigMode",false]],"functiondeclarationdict (class in genai.types)":[[0,"genai.types.FunctionDeclarationDict",false]],"functionresponseblobdict (class in genai.types)":[[0,"genai.types.FunctionResponseBlobDict",false]],"functionresponsedict (class in genai.types)":[[0,"genai.types.FunctionResponseDict",false]],"functionresponsefiledatadict (class in genai.types)":[[0,"genai.types.FunctionResponseFileDataDict",false]],"functionresponsepartdict (class in genai.types)":[[0,"genai.types.FunctionResponsePartDict",false]],"functionresponsescheduling (class in genai.types)":[[0,"genai.types.FunctionResponseScheduling",false]],"g_flat_major_e_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.G_FLAT_MAJOR_E_FLAT_MINOR",false]],"g_major_e_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.G_MAJOR_E_MINOR",false]],"gcs_destination (genai.types.outputconfig attribute)":[[0,"genai.types.OutputConfig.gcs_destination",false]],"gcs_destination (genai.types.outputconfigdict attribute)":[[0,"genai.types.OutputConfigDict.gcs_destination",false]],"gcs_output_directory (genai.types.batchjoboutputinfo attribute)":[[0,"genai.types.BatchJobOutputInfo.gcs_output_directory",false]],"gcs_output_directory (genai.types.batchjoboutputinfodict attribute)":[[0,"genai.types.BatchJobOutputInfoDict.gcs_output_directory",false]],"gcs_output_directory (genai.types.outputinfo attribute)":[[0,"genai.types.OutputInfo.gcs_output_directory",false]],"gcs_output_directory (genai.types.outputinfodict attribute)":[[0,"genai.types.OutputInfoDict.gcs_output_directory",false]],"gcs_source (genai.types.evaluationdataset attribute)":[[0,"genai.types.EvaluationDataset.gcs_source",false]],"gcs_source (genai.types.evaluationdatasetdict attribute)":[[0,"genai.types.EvaluationDatasetDict.gcs_source",false]],"gcs_uri (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.gcs_uri",false]],"gcs_uri (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.gcs_uri",false]],"gcs_uri (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.gcs_uri",false]],"gcs_uri (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.gcs_uri",false]],"gcs_uri (genai.types.image attribute)":[[0,"genai.types.Image.gcs_uri",false]],"gcs_uri (genai.types.imagedict attribute)":[[0,"genai.types.ImageDict.gcs_uri",false]],"gcs_uri (genai.types.tuningdataset attribute)":[[0,"genai.types.TuningDataset.gcs_uri",false]],"gcs_uri (genai.types.tuningdatasetdict attribute)":[[0,"genai.types.TuningDatasetDict.gcs_uri",false]],"gcs_uri (genai.types.tuningvalidationdataset attribute)":[[0,"genai.types.TuningValidationDataset.gcs_uri",false]],"gcs_uri (genai.types.tuningvalidationdatasetdict attribute)":[[0,"genai.types.TuningValidationDatasetDict.gcs_uri",false]],"gcs_uri (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.gcs_uri",false]],"gcs_uri (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.gcs_uri",false]],"gcsdestinationdict (class in genai.types)":[[0,"genai.types.GcsDestinationDict",false]],"gcssourcedict (class in genai.types)":[[0,"genai.types.GcsSourceDict",false]],"gemininextgenagents (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents",false]],"gemininextgenenvironments (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments",false]],"gemininextgeninteractions (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions",false]],"gemininextgentriggers (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers",false]],"gemininextgenwebhooks (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks",false]],"geminipreferenceexamplecompletiondict (class in genai.types)":[[0,"genai.types.GeminiPreferenceExampleCompletionDict",false]],"geminipreferenceexampledict (class in genai.types)":[[0,"genai.types.GeminiPreferenceExampleDict",false]],"genai.client":[[0,"module-genai.client",false]],"genai.live":[[0,"module-genai.live",false]],"genai.models":[[0,"module-genai.models",false]],"genai.tokens":[[0,"module-genai.tokens",false]],"genai.tunings":[[0,"module-genai.tunings",false]],"genai.types":[[0,"module-genai.types",false]],"generate_audio (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.generate_audio",false]],"generate_audio (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.generate_audio",false]],"generate_content() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_content",false]],"generate_content() (genai.models.models method)":[[0,"genai.models.Models.generate_content",false]],"generate_content_stream() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_content_stream",false]],"generate_content_stream() (genai.models.models method)":[[0,"genai.models.Models.generate_content_stream",false]],"generate_images() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_images",false]],"generate_images() (genai.models.models method)":[[0,"genai.models.Models.generate_images",false]],"generate_videos() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_videos",false]],"generate_videos() (genai.models.models method)":[[0,"genai.models.Models.generate_videos",false]],"generatecontentconfigdict (class in genai.types)":[[0,"genai.types.GenerateContentConfigDict",false]],"generatecontentresponsedict (class in genai.types)":[[0,"genai.types.GenerateContentResponseDict",false]],"generatecontentresponsepromptfeedbackdict (class in genai.types)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict",false]],"generatecontentresponseusagemetadatadict (class in genai.types)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict",false]],"generated (genai.types.filesource attribute)":[[0,"genai.types.FileSource.GENERATED",false]],"generated_audio_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_AUDIO_SAFETY",false]],"generated_content_blocklist (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_CONTENT_BLOCKLIST",false]],"generated_content_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_CONTENT_PROHIBITED",false]],"generated_content_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_CONTENT_SAFETY",false]],"generated_image_celebrity (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_CELEBRITY",false]],"generated_image_identifiable_people (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_IDENTIFIABLE_PEOPLE",false]],"generated_image_minors (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_MINORS",false]],"generated_image_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_PROHIBITED",false]],"generated_image_prominent_people_detected_by_rewriter (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_PROMINENT_PEOPLE_DETECTED_BY_REWRITER",false]],"generated_image_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_SAFETY",false]],"generated_images (genai.types.editimageresponse attribute)":[[0,"genai.types.EditImageResponse.generated_images",false]],"generated_images (genai.types.editimageresponsedict attribute)":[[0,"genai.types.EditImageResponseDict.generated_images",false]],"generated_images (genai.types.generateimagesresponse attribute)":[[0,"genai.types.GenerateImagesResponse.generated_images",false]],"generated_images (genai.types.generateimagesresponsedict attribute)":[[0,"genai.types.GenerateImagesResponseDict.generated_images",false]],"generated_images (genai.types.recontextimageresponse attribute)":[[0,"genai.types.RecontextImageResponse.generated_images",false]],"generated_images (genai.types.recontextimageresponsedict attribute)":[[0,"genai.types.RecontextImageResponseDict.generated_images",false]],"generated_images (genai.types.upscaleimageresponse attribute)":[[0,"genai.types.UpscaleImageResponse.generated_images",false]],"generated_images (genai.types.upscaleimageresponsedict attribute)":[[0,"genai.types.UpscaleImageResponseDict.generated_images",false]],"generated_masks (genai.types.segmentimageresponse attribute)":[[0,"genai.types.SegmentImageResponse.generated_masks",false]],"generated_masks (genai.types.segmentimageresponsedict attribute)":[[0,"genai.types.SegmentImageResponseDict.generated_masks",false]],"generated_other (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_OTHER",false]],"generated_video_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_VIDEO_SAFETY",false]],"generated_videos (genai.types.generatevideosresponse attribute)":[[0,"genai.types.GenerateVideosResponse.generated_videos",false]],"generated_videos (genai.types.generatevideosresponsedict attribute)":[[0,"genai.types.GenerateVideosResponseDict.generated_videos",false]],"generatedimagedict (class in genai.types)":[[0,"genai.types.GeneratedImageDict",false]],"generatedimagemaskdict (class in genai.types)":[[0,"genai.types.GeneratedImageMaskDict",false]],"generatedvideodict (class in genai.types)":[[0,"genai.types.GeneratedVideoDict",false]],"generateimagesconfigdict (class in genai.types)":[[0,"genai.types.GenerateImagesConfigDict",false]],"generateimagesresponsedict (class in genai.types)":[[0,"genai.types.GenerateImagesResponseDict",false]],"generatevideosconfigdict (class in genai.types)":[[0,"genai.types.GenerateVideosConfigDict",false]],"generatevideosresponsedict (class in genai.types)":[[0,"genai.types.GenerateVideosResponseDict",false]],"generatevideossourcedict (class in genai.types)":[[0,"genai.types.GenerateVideosSourceDict",false]],"generation_complete (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.generation_complete",false]],"generation_complete (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.generation_complete",false]],"generation_config (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.generation_config",false]],"generation_config (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.generation_config",false]],"generation_config (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.generation_config",false]],"generation_config (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.generation_config",false]],"generation_config (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.generation_config",false]],"generation_config (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.generation_config",false]],"generation_config (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.generation_config",false]],"generation_config (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.generation_config",false]],"generation_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.generation_config",false]],"generation_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.generation_config",false]],"generationconfigdict (class in genai.types)":[[0,"genai.types.GenerationConfigDict",false]],"generationconfigroutingconfigautoroutingmodedict (class in genai.types)":[[0,"genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict",false]],"generationconfigroutingconfigdict (class in genai.types)":[[0,"genai.types.GenerationConfigRoutingConfigDict",false]],"generationconfigroutingconfigmanualroutingmodedict (class in genai.types)":[[0,"genai.types.GenerationConfigRoutingConfigManualRoutingModeDict",false]],"generationconfigthinkingconfigdict (class in genai.types)":[[0,"genai.types.GenerationConfigThinkingConfigDict",false]],"get() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.get",false]],"get() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.get",false]],"get() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.get",false]],"get() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.get",false]],"get() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.get",false]],"get() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.get",false]],"get() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.get",false]],"get() (genai.models.models method)":[[0,"genai.models.Models.get",false]],"get() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.get",false]],"get() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.get",false]],"get_environment() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.get_environment",false]],"get_environment() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.get_environment",false]],"get_environment_files() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.get_environment_files",false]],"get_environment_files() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.get_environment_files",false]],"getbatchjobconfigdict (class in genai.types)":[[0,"genai.types.GetBatchJobConfigDict",false]],"getcachedcontentconfigdict (class in genai.types)":[[0,"genai.types.GetCachedContentConfigDict",false]],"getdocumentconfigdict (class in genai.types)":[[0,"genai.types.GetDocumentConfigDict",false]],"getfileconfigdict (class in genai.types)":[[0,"genai.types.GetFileConfigDict",false]],"getfilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.GetFileSearchStoreConfigDict",false]],"getmodelconfigdict (class in genai.types)":[[0,"genai.types.GetModelConfigDict",false]],"getoperationconfigdict (class in genai.types)":[[0,"genai.types.GetOperationConfigDict",false]],"gettuningjobconfigdict (class in genai.types)":[[0,"genai.types.GetTuningJobConfigDict",false]],"go_away (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.go_away",false]],"go_away (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.go_away",false]],"google_maps (genai.types.tool attribute)":[[0,"genai.types.Tool.google_maps",false]],"google_maps (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.google_maps",false]],"google_maps (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.GOOGLE_MAPS",false]],"google_maps_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.google_maps_uri",false]],"google_maps_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.google_maps_uri",false]],"google_maps_widget_context_token (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.google_maps_widget_context_token",false]],"google_maps_widget_context_token (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.google_maps_widget_context_token",false]],"google_search (genai.types.tool attribute)":[[0,"genai.types.Tool.google_search",false]],"google_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.google_search",false]],"google_search_dynamic_retrieval_score (genai.types.retrievalmetadata attribute)":[[0,"genai.types.RetrievalMetadata.google_search_dynamic_retrieval_score",false]],"google_search_dynamic_retrieval_score (genai.types.retrievalmetadatadict attribute)":[[0,"genai.types.RetrievalMetadataDict.google_search_dynamic_retrieval_score",false]],"google_search_image (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.GOOGLE_SEARCH_IMAGE",false]],"google_search_retrieval (genai.types.tool attribute)":[[0,"genai.types.Tool.google_search_retrieval",false]],"google_search_retrieval (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.google_search_retrieval",false]],"google_search_web (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.GOOGLE_SEARCH_WEB",false]],"google_service_account_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.GOOGLE_SERVICE_ACCOUNT_AUTH",false]],"google_service_account_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.google_service_account_config",false]],"google_service_account_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.google_service_account_config",false]],"googlemapsdict (class in genai.types)":[[0,"genai.types.GoogleMapsDict",false]],"googlemapsgroundingtypesdict (class in genai.types)":[[0,"genai.types.GoogleMapsGroundingTypesDict",false]],"googlemapsplacesdict (class in genai.types)":[[0,"genai.types.GoogleMapsPlacesDict",false]],"googlemapsroutingdict (class in genai.types)":[[0,"genai.types.GoogleMapsRoutingDict",false]],"googlerpcstatusdict (class in genai.types)":[[0,"genai.types.GoogleRpcStatusDict",false]],"googlesearchdict (class in genai.types)":[[0,"genai.types.GoogleSearchDict",false]],"googlesearchretrievaldict (class in genai.types)":[[0,"genai.types.GoogleSearchRetrievalDict",false]],"googletypedatedict (class in genai.types)":[[0,"genai.types.GoogleTypeDateDict",false]],"grounding_chunk_indices (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.grounding_chunk_indices",false]],"grounding_chunk_indices (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.grounding_chunk_indices",false]],"grounding_chunks (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.grounding_chunks",false]],"grounding_chunks (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.grounding_chunks",false]],"grounding_metadata (genai.types.candidate attribute)":[[0,"genai.types.Candidate.grounding_metadata",false]],"grounding_metadata (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.grounding_metadata",false]],"grounding_metadata (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.grounding_metadata",false]],"grounding_metadata (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.grounding_metadata",false]],"grounding_supports (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.grounding_supports",false]],"grounding_supports (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.grounding_supports",false]],"grounding_types (genai.types.googlemaps attribute)":[[0,"genai.types.GoogleMaps.grounding_types",false]],"grounding_types (genai.types.googlemapsdict attribute)":[[0,"genai.types.GoogleMapsDict.grounding_types",false]],"groundingchunkcustommetadatadict (class in genai.types)":[[0,"genai.types.GroundingChunkCustomMetadataDict",false]],"groundingchunkdict (class in genai.types)":[[0,"genai.types.GroundingChunkDict",false]],"groundingchunkimagedict (class in genai.types)":[[0,"genai.types.GroundingChunkImageDict",false]],"groundingchunkmapsdict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsDict",false]],"groundingchunkmapsplaceanswersourcesauthorattributiondict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict",false]],"groundingchunkmapsplaceanswersourcesdict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict",false]],"groundingchunkmapsplaceanswersourcesreviewsnippetdict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict",false]],"groundingchunkmapsroutedict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsRouteDict",false]],"groundingchunkretrievedcontextdict (class in genai.types)":[[0,"genai.types.GroundingChunkRetrievedContextDict",false]],"groundingchunkstringlistdict (class in genai.types)":[[0,"genai.types.GroundingChunkStringListDict",false]],"groundingchunkwebdict (class in genai.types)":[[0,"genai.types.GroundingChunkWebDict",false]],"groundingmetadatadict (class in genai.types)":[[0,"genai.types.GroundingMetadataDict",false]],"groundingmetadatasourceflagginguridict (class in genai.types)":[[0,"genai.types.GroundingMetadataSourceFlaggingUriDict",false]],"groundingsupportdict (class in genai.types)":[[0,"genai.types.GroundingSupportDict",false]],"guidance (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.guidance",false]],"guidance (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.guidance",false]],"guidance_scale (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.guidance_scale",false]],"guidance_scale (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.guidance_scale",false]],"guidance_scale (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.guidance_scale",false]],"guidance_scale (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.guidance_scale",false]],"handle (genai.types.sessionresumptionconfig attribute)":[[0,"genai.types.SessionResumptionConfig.handle",false]],"handle (genai.types.sessionresumptionconfigdict attribute)":[[0,"genai.types.SessionResumptionConfigDict.handle",false]],"harm_block_method_unspecified (genai.types.harmblockmethod attribute)":[[0,"genai.types.HarmBlockMethod.HARM_BLOCK_METHOD_UNSPECIFIED",false]],"harm_block_threshold_unspecified (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.HARM_BLOCK_THRESHOLD_UNSPECIFIED",false]],"harm_category_civic_integrity (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_CIVIC_INTEGRITY",false]],"harm_category_dangerous_content (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT",false]],"harm_category_harassment (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_HARASSMENT",false]],"harm_category_hate_speech (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_HATE_SPEECH",false]],"harm_category_image_dangerous_content (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_DANGEROUS_CONTENT",false]],"harm_category_image_harassment (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_HARASSMENT",false]],"harm_category_image_hate (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_HATE",false]],"harm_category_image_sexually_explicit (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_SEXUALLY_EXPLICIT",false]],"harm_category_jailbreak (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_JAILBREAK",false]],"harm_category_sexually_explicit (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT",false]],"harm_category_unspecified (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_UNSPECIFIED",false]],"harm_probability_unspecified (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.HARM_PROBABILITY_UNSPECIFIED",false]],"harm_severity_high (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_HIGH",false]],"harm_severity_low (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_LOW",false]],"harm_severity_medium (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_MEDIUM",false]],"harm_severity_negligible (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_NEGLIGIBLE",false]],"harm_severity_unspecified (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_UNSPECIFIED",false]],"harmblockmethod (class in genai.types)":[[0,"genai.types.HarmBlockMethod",false]],"harmblockthreshold (class in genai.types)":[[0,"genai.types.HarmBlockThreshold",false]],"harmcategory (class in genai.types)":[[0,"genai.types.HarmCategory",false]],"harmprobability (class in genai.types)":[[0,"genai.types.HarmProbability",false]],"harmseverity (class in genai.types)":[[0,"genai.types.HarmSeverity",false]],"has_ended (genai.types.tuningjob property)":[[0,"genai.types.TuningJob.has_ended",false]],"has_succeeded (genai.types.tuningjob property)":[[0,"genai.types.TuningJob.has_succeeded",false]],"has_union (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.has_union",false]],"has_union (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.has_union",false]],"headers (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.headers",false]],"headers (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.headers",false]],"headers (genai.types.httpresponse attribute)":[[0,"genai.types.HttpResponse.headers",false]],"headers (genai.types.httpresponsedict attribute)":[[0,"genai.types.HttpResponseDict.headers",false]],"headers (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.headers",false]],"headers (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.headers",false]],"headers (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.headers",false]],"headers (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.headers",false]],"headers (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.headers",false]],"headers (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.headers",false]],"hi (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.hi",false]],"high (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.HIGH",false]],"high (genai.types.reinforcementtuningthinkinglevel attribute)":[[0,"genai.types.ReinforcementTuningThinkingLevel.HIGH",false]],"high (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.HIGH",false]],"history_config (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.history_config",false]],"history_config (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.history_config",false]],"history_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.history_config",false]],"history_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.history_config",false]],"historyconfigdict (class in genai.types)":[[0,"genai.types.HistoryConfigDict",false]],"http_basic_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.HTTP_BASIC_AUTH",false]],"http_basic_auth_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.http_basic_auth_config",false]],"http_basic_auth_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.http_basic_auth_config",false]],"http_element_location (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.http_element_location",false]],"http_element_location (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.http_element_location",false]],"http_in_body (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_BODY",false]],"http_in_cookie (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_COOKIE",false]],"http_in_header (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_HEADER",false]],"http_in_path (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_PATH",false]],"http_in_query (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_QUERY",false]],"http_in_unspecified (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_UNSPECIFIED",false]],"http_options (genai.client.client attribute)":[[0,"genai.client.Client.http_options",false]],"http_options (genai.types.cancelbatchjobconfig attribute)":[[0,"genai.types.CancelBatchJobConfig.http_options",false]],"http_options (genai.types.cancelbatchjobconfigdict attribute)":[[0,"genai.types.CancelBatchJobConfigDict.http_options",false]],"http_options (genai.types.canceltuningjobconfig attribute)":[[0,"genai.types.CancelTuningJobConfig.http_options",false]],"http_options (genai.types.canceltuningjobconfigdict attribute)":[[0,"genai.types.CancelTuningJobConfigDict.http_options",false]],"http_options (genai.types.computetokensconfig attribute)":[[0,"genai.types.ComputeTokensConfig.http_options",false]],"http_options (genai.types.computetokensconfigdict attribute)":[[0,"genai.types.ComputeTokensConfigDict.http_options",false]],"http_options (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.http_options",false]],"http_options (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.http_options",false]],"http_options (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.http_options",false]],"http_options (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.http_options",false]],"http_options (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.http_options",false]],"http_options (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.http_options",false]],"http_options (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.http_options",false]],"http_options (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.http_options",false]],"http_options (genai.types.createembeddingsbatchjobconfig attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfig.http_options",false]],"http_options (genai.types.createembeddingsbatchjobconfigdict attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfigDict.http_options",false]],"http_options (genai.types.createfileconfig attribute)":[[0,"genai.types.CreateFileConfig.http_options",false]],"http_options (genai.types.createfileconfigdict attribute)":[[0,"genai.types.CreateFileConfigDict.http_options",false]],"http_options (genai.types.createfilesearchstoreconfig attribute)":[[0,"genai.types.CreateFileSearchStoreConfig.http_options",false]],"http_options (genai.types.createfilesearchstoreconfigdict attribute)":[[0,"genai.types.CreateFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.http_options",false]],"http_options (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.http_options",false]],"http_options (genai.types.deletebatchjobconfig attribute)":[[0,"genai.types.DeleteBatchJobConfig.http_options",false]],"http_options (genai.types.deletebatchjobconfigdict attribute)":[[0,"genai.types.DeleteBatchJobConfigDict.http_options",false]],"http_options (genai.types.deletecachedcontentconfig attribute)":[[0,"genai.types.DeleteCachedContentConfig.http_options",false]],"http_options (genai.types.deletecachedcontentconfigdict attribute)":[[0,"genai.types.DeleteCachedContentConfigDict.http_options",false]],"http_options (genai.types.deletedocumentconfig attribute)":[[0,"genai.types.DeleteDocumentConfig.http_options",false]],"http_options (genai.types.deletedocumentconfigdict attribute)":[[0,"genai.types.DeleteDocumentConfigDict.http_options",false]],"http_options (genai.types.deletefileconfig attribute)":[[0,"genai.types.DeleteFileConfig.http_options",false]],"http_options (genai.types.deletefileconfigdict attribute)":[[0,"genai.types.DeleteFileConfigDict.http_options",false]],"http_options (genai.types.deletefilesearchstoreconfig attribute)":[[0,"genai.types.DeleteFileSearchStoreConfig.http_options",false]],"http_options (genai.types.deletefilesearchstoreconfigdict attribute)":[[0,"genai.types.DeleteFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.deletemodelconfig attribute)":[[0,"genai.types.DeleteModelConfig.http_options",false]],"http_options (genai.types.deletemodelconfigdict attribute)":[[0,"genai.types.DeleteModelConfigDict.http_options",false]],"http_options (genai.types.downloadfileconfig attribute)":[[0,"genai.types.DownloadFileConfig.http_options",false]],"http_options (genai.types.downloadfileconfigdict attribute)":[[0,"genai.types.DownloadFileConfigDict.http_options",false]],"http_options (genai.types.downloadmediaconfig attribute)":[[0,"genai.types.DownloadMediaConfig.http_options",false]],"http_options (genai.types.downloadmediaconfigdict attribute)":[[0,"genai.types.DownloadMediaConfigDict.http_options",false]],"http_options (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.http_options",false]],"http_options (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.http_options",false]],"http_options (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.http_options",false]],"http_options (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.http_options",false]],"http_options (genai.types.fetchpredictoperationconfig attribute)":[[0,"genai.types.FetchPredictOperationConfig.http_options",false]],"http_options (genai.types.fetchpredictoperationconfigdict attribute)":[[0,"genai.types.FetchPredictOperationConfigDict.http_options",false]],"http_options (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.http_options",false]],"http_options (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.http_options",false]],"http_options (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.http_options",false]],"http_options (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.http_options",false]],"http_options (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.http_options",false]],"http_options (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.http_options",false]],"http_options (genai.types.getbatchjobconfig attribute)":[[0,"genai.types.GetBatchJobConfig.http_options",false]],"http_options (genai.types.getbatchjobconfigdict attribute)":[[0,"genai.types.GetBatchJobConfigDict.http_options",false]],"http_options (genai.types.getcachedcontentconfig attribute)":[[0,"genai.types.GetCachedContentConfig.http_options",false]],"http_options (genai.types.getcachedcontentconfigdict attribute)":[[0,"genai.types.GetCachedContentConfigDict.http_options",false]],"http_options (genai.types.getdocumentconfig attribute)":[[0,"genai.types.GetDocumentConfig.http_options",false]],"http_options (genai.types.getdocumentconfigdict attribute)":[[0,"genai.types.GetDocumentConfigDict.http_options",false]],"http_options (genai.types.getfileconfig attribute)":[[0,"genai.types.GetFileConfig.http_options",false]],"http_options (genai.types.getfileconfigdict attribute)":[[0,"genai.types.GetFileConfigDict.http_options",false]],"http_options (genai.types.getfilesearchstoreconfig attribute)":[[0,"genai.types.GetFileSearchStoreConfig.http_options",false]],"http_options (genai.types.getfilesearchstoreconfigdict attribute)":[[0,"genai.types.GetFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.getmodelconfig attribute)":[[0,"genai.types.GetModelConfig.http_options",false]],"http_options (genai.types.getmodelconfigdict attribute)":[[0,"genai.types.GetModelConfigDict.http_options",false]],"http_options (genai.types.getoperationconfig attribute)":[[0,"genai.types.GetOperationConfig.http_options",false]],"http_options (genai.types.getoperationconfigdict attribute)":[[0,"genai.types.GetOperationConfigDict.http_options",false]],"http_options (genai.types.gettuningjobconfig attribute)":[[0,"genai.types.GetTuningJobConfig.http_options",false]],"http_options (genai.types.gettuningjobconfigdict attribute)":[[0,"genai.types.GetTuningJobConfigDict.http_options",false]],"http_options (genai.types.importfileconfig attribute)":[[0,"genai.types.ImportFileConfig.http_options",false]],"http_options (genai.types.importfileconfigdict attribute)":[[0,"genai.types.ImportFileConfigDict.http_options",false]],"http_options (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.http_options",false]],"http_options (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.http_options",false]],"http_options (genai.types.listcachedcontentsconfig attribute)":[[0,"genai.types.ListCachedContentsConfig.http_options",false]],"http_options (genai.types.listcachedcontentsconfigdict attribute)":[[0,"genai.types.ListCachedContentsConfigDict.http_options",false]],"http_options (genai.types.listdocumentsconfig attribute)":[[0,"genai.types.ListDocumentsConfig.http_options",false]],"http_options (genai.types.listdocumentsconfigdict attribute)":[[0,"genai.types.ListDocumentsConfigDict.http_options",false]],"http_options (genai.types.listfilesconfig attribute)":[[0,"genai.types.ListFilesConfig.http_options",false]],"http_options (genai.types.listfilesconfigdict attribute)":[[0,"genai.types.ListFilesConfigDict.http_options",false]],"http_options (genai.types.listfilesearchstoresconfig attribute)":[[0,"genai.types.ListFileSearchStoresConfig.http_options",false]],"http_options (genai.types.listfilesearchstoresconfigdict attribute)":[[0,"genai.types.ListFileSearchStoresConfigDict.http_options",false]],"http_options (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.http_options",false]],"http_options (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.http_options",false]],"http_options (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.http_options",false]],"http_options (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.http_options",false]],"http_options (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.http_options",false]],"http_options (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.http_options",false]],"http_options (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.http_options",false]],"http_options (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.http_options",false]],"http_options (genai.types.registerfilesconfig attribute)":[[0,"genai.types.RegisterFilesConfig.http_options",false]],"http_options (genai.types.registerfilesconfigdict attribute)":[[0,"genai.types.RegisterFilesConfigDict.http_options",false]],"http_options (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.http_options",false]],"http_options (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.http_options",false]],"http_options (genai.types.updatecachedcontentconfig attribute)":[[0,"genai.types.UpdateCachedContentConfig.http_options",false]],"http_options (genai.types.updatecachedcontentconfigdict attribute)":[[0,"genai.types.UpdateCachedContentConfigDict.http_options",false]],"http_options (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.http_options",false]],"http_options (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.http_options",false]],"http_options (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.http_options",false]],"http_options (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.http_options",false]],"http_options (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.http_options",false]],"http_options (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.http_options",false]],"http_options (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.http_options",false]],"http_options (genai.types.validaterewardconfig attribute)":[[0,"genai.types.ValidateRewardConfig.http_options",false]],"http_options (genai.types.validaterewardconfigdict attribute)":[[0,"genai.types.ValidateRewardConfigDict.http_options",false]],"http_status_codes (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.http_status_codes",false]],"http_status_codes (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.http_status_codes",false]],"httpelementlocation (class in genai.types)":[[0,"genai.types.HttpElementLocation",false]],"httpoptionsdict (class in genai.types)":[[0,"genai.types.HttpOptionsDict",false]],"httpresponsedict (class in genai.types)":[[0,"genai.types.HttpResponseDict",false]],"httpretryoptionsdict (class in genai.types)":[[0,"genai.types.HttpRetryOptionsDict",false]],"httpx_async_client (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.httpx_async_client",false]],"httpx_client (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.httpx_client",false]],"hybrid_search (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.hybrid_search",false]],"hybrid_search (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.hybrid_search",false]],"hyper_parameters (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.hyper_parameters",false]],"hyper_parameters (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.fullfinetuningspec attribute)":[[0,"genai.types.FullFineTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.fullfinetuningspecdict attribute)":[[0,"genai.types.FullFineTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.partnermodeltuningspec attribute)":[[0,"genai.types.PartnerModelTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.partnermodeltuningspecdict attribute)":[[0,"genai.types.PartnerModelTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.hyper_parameters",false]],"hyper_parameters (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.veotuningspec attribute)":[[0,"genai.types.VeoTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.veotuningspecdict attribute)":[[0,"genai.types.VeoTuningSpecDict.hyper_parameters",false]],"hyperparameters (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.hyperparameters",false]],"hyperparameters (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.hyperparameters",false]],"id (genai.types.codeexecutionresult attribute)":[[0,"genai.types.CodeExecutionResult.id",false]],"id (genai.types.codeexecutionresultdict attribute)":[[0,"genai.types.CodeExecutionResultDict.id",false]],"id (genai.types.executablecode attribute)":[[0,"genai.types.ExecutableCode.id",false]],"id (genai.types.executablecodedict attribute)":[[0,"genai.types.ExecutableCodeDict.id",false]],"id (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.id",false]],"id (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.id",false]],"id (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.id",false]],"id (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.id",false]],"id (genai.types.toolcall attribute)":[[0,"genai.types.ToolCall.id",false]],"id (genai.types.toolcalldict attribute)":[[0,"genai.types.ToolCallDict.id",false]],"id (genai.types.toolresponse attribute)":[[0,"genai.types.ToolResponse.id",false]],"id (genai.types.toolresponsedict attribute)":[[0,"genai.types.ToolResponseDict.id",false]],"id_token (genai.types.authconfigoidcconfig attribute)":[[0,"genai.types.AuthConfigOidcConfig.id_token",false]],"id_token (genai.types.authconfigoidcconfigdict attribute)":[[0,"genai.types.AuthConfigOidcConfigDict.id_token",false]],"identity (genai.types.responseparsetype attribute)":[[0,"genai.types.ResponseParseType.IDENTITY",false]],"ids (genai.types.liveservertoolcallcancellation attribute)":[[0,"genai.types.LiveServerToolCallCancellation.ids",false]],"ids (genai.types.liveservertoolcallcancellationdict attribute)":[[0,"genai.types.LiveServerToolCallCancellationDict.ids",false]],"ignore_call_history (genai.types.automaticfunctioncallingconfig attribute)":[[0,"genai.types.AutomaticFunctionCallingConfig.ignore_call_history",false]],"ignore_call_history (genai.types.automaticfunctioncallingconfigdict attribute)":[[0,"genai.types.AutomaticFunctionCallingConfigDict.ignore_call_history",false]],"ignore_keys (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.ignore_keys",false]],"ignore_keys (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.ignore_keys",false]],"image (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.image",false]],"image (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.image",false]],"image (genai.types.generatevideossource attribute)":[[0,"genai.types.GenerateVideosSource.image",false]],"image (genai.types.generatevideossourcedict attribute)":[[0,"genai.types.GenerateVideosSourceDict.image",false]],"image (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.image",false]],"image (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.image",false]],"image (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.IMAGE",false]],"image (genai.types.modality attribute)":[[0,"genai.types.Modality.IMAGE",false]],"image (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.image",false]],"image (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.image",false]],"image (genai.types.scribbleimage attribute)":[[0,"genai.types.ScribbleImage.image",false]],"image (genai.types.scribbleimagedict attribute)":[[0,"genai.types.ScribbleImageDict.image",false]],"image (genai.types.segmentimagesource attribute)":[[0,"genai.types.SegmentImageSource.image",false]],"image (genai.types.segmentimagesourcedict attribute)":[[0,"genai.types.SegmentImageSourceDict.image",false]],"image (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.image",false]],"image (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.image",false]],"image (genai.types.videogenerationmask attribute)":[[0,"genai.types.VideoGenerationMask.image",false]],"image (genai.types.videogenerationmaskdict attribute)":[[0,"genai.types.VideoGenerationMaskDict.image",false]],"image (genai.types.videogenerationreferenceimage attribute)":[[0,"genai.types.VideoGenerationReferenceImage.image",false]],"image (genai.types.videogenerationreferenceimagedict attribute)":[[0,"genai.types.VideoGenerationReferenceImageDict.image",false]],"image_bytes (genai.types.image attribute)":[[0,"genai.types.Image.image_bytes",false]],"image_bytes (genai.types.imagedict attribute)":[[0,"genai.types.ImageDict.image_bytes",false]],"image_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.image_config",false]],"image_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.image_config",false]],"image_count (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.image_count",false]],"image_count (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.image_count",false]],"image_data (genai.types.customizedavatar attribute)":[[0,"genai.types.CustomizedAvatar.image_data",false]],"image_data (genai.types.customizedavatardict attribute)":[[0,"genai.types.CustomizedAvatarDict.image_data",false]],"image_mime_type (genai.types.customizedavatar attribute)":[[0,"genai.types.CustomizedAvatar.image_mime_type",false]],"image_mime_type (genai.types.customizedavatardict attribute)":[[0,"genai.types.CustomizedAvatarDict.image_mime_type",false]],"image_other (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_OTHER",false]],"image_output_options (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.image_output_options",false]],"image_output_options (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.image_output_options",false]],"image_preservation_factor (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.image_preservation_factor",false]],"image_preservation_factor (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.image_preservation_factor",false]],"image_prohibited_content (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_PROHIBITED_CONTENT",false]],"image_prohibited_input_content (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.IMAGE_PROHIBITED_INPUT_CONTENT",false]],"image_recitation (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_RECITATION",false]],"image_safety (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.IMAGE_SAFETY",false]],"image_safety (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_SAFETY",false]],"image_search (genai.types.searchtypes attribute)":[[0,"genai.types.SearchTypes.image_search",false]],"image_search (genai.types.searchtypesdict attribute)":[[0,"genai.types.SearchTypesDict.image_search",false]],"image_search_queries (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.image_search_queries",false]],"image_search_queries (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.image_search_queries",false]],"image_size (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.image_size",false]],"image_size (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.image_size",false]],"image_size (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.image_size",false]],"image_size (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.image_size",false]],"image_size (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.image_size",false]],"image_size (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.image_size",false]],"image_size_five_twelve (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_FIVE_TWELVE",false]],"image_size_four_k (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_FOUR_K",false]],"image_size_one_k (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_ONE_K",false]],"image_size_two_k (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_TWO_K",false]],"image_size_unspecified (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_UNSPECIFIED",false]],"image_uri (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.image_uri",false]],"image_uri (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.image_uri",false]],"imageconfigdict (class in genai.types)":[[0,"genai.types.ImageConfigDict",false]],"imageconfigimageoutputoptionsdict (class in genai.types)":[[0,"genai.types.ImageConfigImageOutputOptionsDict",false]],"imagedict (class in genai.types)":[[0,"genai.types.ImageDict",false]],"imagepromptlanguage (class in genai.types)":[[0,"genai.types.ImagePromptLanguage",false]],"imageresizemode (class in genai.types)":[[0,"genai.types.ImageResizeMode",false]],"imageresponseformatdict (class in genai.types)":[[0,"genai.types.ImageResponseFormatDict",false]],"images (genai.types.generateimagesresponse property)":[[0,"genai.types.GenerateImagesResponse.images",false]],"imagesearchdict (class in genai.types)":[[0,"genai.types.ImageSearchDict",false]],"imagesize (class in genai.types)":[[0,"genai.types.ImageSize",false]],"importfileconfigdict (class in genai.types)":[[0,"genai.types.ImportFileConfigDict",false]],"importfileresponsedict (class in genai.types)":[[0,"genai.types.ImportFileResponseDict",false]],"include_rai_reason (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.include_rai_reason",false]],"include_rai_reason (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.include_rai_reason",false]],"include_rai_reason (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.include_rai_reason",false]],"include_rai_reason (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.include_rai_reason",false]],"include_rai_reason (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.include_rai_reason",false]],"include_rai_reason (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.include_rai_reason",false]],"include_safety_attributes (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.include_safety_attributes",false]],"include_safety_attributes (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.include_safety_attributes",false]],"include_safety_attributes (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.include_safety_attributes",false]],"include_safety_attributes (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.include_safety_attributes",false]],"include_server_side_tool_invocations (genai.types.toolconfig attribute)":[[0,"genai.types.ToolConfig.include_server_side_tool_invocations",false]],"include_server_side_tool_invocations (genai.types.toolconfigdict attribute)":[[0,"genai.types.ToolConfigDict.include_server_side_tool_invocations",false]],"include_thoughts (genai.types.generationconfigthinkingconfigdict attribute)":[[0,"genai.types.GenerationConfigThinkingConfigDict.include_thoughts",false]],"include_thoughts (genai.types.thinkingconfig attribute)":[[0,"genai.types.ThinkingConfig.include_thoughts",false]],"include_thoughts (genai.types.thinkingconfigdict attribute)":[[0,"genai.types.ThinkingConfigDict.include_thoughts",false]],"incomplete_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.incomplete_count",false]],"incomplete_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.incomplete_count",false]],"index (genai.types.candidate attribute)":[[0,"genai.types.Candidate.index",false]],"index (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.index",false]],"index (genai.types.externalapielasticsearchparams attribute)":[[0,"genai.types.ExternalApiElasticSearchParams.index",false]],"index (genai.types.externalapielasticsearchparamsdict attribute)":[[0,"genai.types.ExternalApiElasticSearchParamsDict.index",false]],"inference_generation_config (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.inference_generation_config",false]],"inference_generation_config (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.inference_generation_config",false]],"initial_delay (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.initial_delay",false]],"initial_delay (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.initial_delay",false]],"initial_history_in_client_content (genai.types.historyconfig attribute)":[[0,"genai.types.HistoryConfig.initial_history_in_client_content",false]],"initial_history_in_client_content (genai.types.historyconfigdict attribute)":[[0,"genai.types.HistoryConfigDict.initial_history_in_client_content",false]],"inline (genai.types.delivery attribute)":[[0,"genai.types.Delivery.INLINE",false]],"inline_data (genai.types.functionresponsepart attribute)":[[0,"genai.types.FunctionResponsePart.inline_data",false]],"inline_data (genai.types.functionresponsepartdict attribute)":[[0,"genai.types.FunctionResponsePartDict.inline_data",false]],"inline_data (genai.types.part attribute)":[[0,"genai.types.Part.inline_data",false]],"inline_data (genai.types.partdict attribute)":[[0,"genai.types.PartDict.inline_data",false]],"inlined_embed_content_responses (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.inlined_embed_content_responses",false]],"inlined_embed_content_responses (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.inlined_embed_content_responses",false]],"inlined_requests (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.inlined_requests",false]],"inlined_requests (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.inlined_requests",false]],"inlined_requests (genai.types.embeddingsbatchjobsource attribute)":[[0,"genai.types.EmbeddingsBatchJobSource.inlined_requests",false]],"inlined_requests (genai.types.embeddingsbatchjobsourcedict attribute)":[[0,"genai.types.EmbeddingsBatchJobSourceDict.inlined_requests",false]],"inlined_responses (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.inlined_responses",false]],"inlined_responses (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.inlined_responses",false]],"inlinedembedcontentresponsedict (class in genai.types)":[[0,"genai.types.InlinedEmbedContentResponseDict",false]],"inlinedrequestdict (class in genai.types)":[[0,"genai.types.InlinedRequestDict",false]],"inlinedresponsedict (class in genai.types)":[[0,"genai.types.InlinedResponseDict",false]],"input_audio_transcription (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.input_audio_transcription",false]],"input_audio_transcription (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.input_audio_transcription",false]],"input_audio_transcription (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.input_audio_transcription",false]],"input_audio_transcription (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.input_audio_transcription",false]],"input_image_celebrity (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_IMAGE_CELEBRITY",false]],"input_image_photo_realistic_child_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_IMAGE_PHOTO_REALISTIC_CHILD_PROHIBITED",false]],"input_ip_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_IP_PROHIBITED",false]],"input_other (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_OTHER",false]],"input_text_contain_prominent_person_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_TEXT_CONTAIN_PROMINENT_PERSON_PROHIBITED",false]],"input_text_ncii_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_TEXT_NCII_PROHIBITED",false]],"input_token_limit (genai.types.model attribute)":[[0,"genai.types.Model.input_token_limit",false]],"input_token_limit (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.input_token_limit",false]],"input_transcription (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.input_transcription",false]],"input_transcription (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.input_transcription",false]],"input_uri (genai.types.bigquerysource attribute)":[[0,"genai.types.BigQuerySource.input_uri",false]],"input_uri (genai.types.bigquerysourcedict attribute)":[[0,"genai.types.BigQuerySourceDict.input_uri",false]],"insert (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.INSERT",false]],"integer (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.INTEGER",false]],"integer (genai.types.type attribute)":[[0,"genai.types.Type.INTEGER",false]],"interactions (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.interactions",false]],"interactions (genai.client.client property)":[[0,"genai.client.Client.interactions",false]],"interactions (genai.types.replayfile attribute)":[[0,"genai.types.ReplayFile.interactions",false]],"interactions (genai.types.replayfiledict attribute)":[[0,"genai.types.ReplayFileDict.interactions",false]],"interactive (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.INTERACTIVE",false]],"interim_input_transcription (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.interim_input_transcription",false]],"interim_input_transcription (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.interim_input_transcription",false]],"interrupt (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.INTERRUPT",false]],"interrupted (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.interrupted",false]],"interrupted (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.interrupted",false]],"intervaldict (class in genai.types)":[[0,"genai.types.IntervalDict",false]],"items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.items",false]],"items (genai.types.schema attribute)":[[0,"genai.types.Schema.items",false]],"ja (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.ja",false]],"jailbreak (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.JAILBREAK",false]],"jitter (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.jitter",false]],"jitter (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.jitter",false]],"job_state_cancelled (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_CANCELLED",false]],"job_state_cancelling (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_CANCELLING",false]],"job_state_expired (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_EXPIRED",false]],"job_state_failed (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_FAILED",false]],"job_state_partially_succeeded (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_PARTIALLY_SUCCEEDED",false]],"job_state_paused (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_PAUSED",false]],"job_state_pending (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_PENDING",false]],"job_state_queued (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_QUEUED",false]],"job_state_running (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_RUNNING",false]],"job_state_succeeded (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_SUCCEEDED",false]],"job_state_unspecified (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_UNSPECIFIED",false]],"job_state_updating (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_UPDATING",false]],"joberrordict (class in genai.types)":[[0,"genai.types.JobErrorDict",false]],"jobstate (class in genai.types)":[[0,"genai.types.JobState",false]],"json_match_expression (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.json_match_expression",false]],"json_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.json_match_expression",false]],"json_path (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.json_path",false]],"json_path (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.json_path",false]],"json_schema (genai.types.schema property)":[[0,"genai.types.Schema.json_schema",false]],"jsonschema (genai.types.textresponseformat attribute)":[[0,"genai.types.TextResponseFormat.jsonSchema",false]],"jsonschematype (class in genai.types)":[[0,"genai.types.JSONSchemaType",false]],"judge_autorater_config (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.judge_autorater_config",false]],"judge_autorater_config (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.judge_autorater_config",false]],"judge_model_system_instruction (genai.types.metric attribute)":[[0,"genai.types.Metric.judge_model_system_instruction",false]],"judge_model_system_instruction (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.judge_model_system_instruction",false]],"key (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.key",false]],"key (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.key",false]],"key (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.key",false]],"key (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.key",false]],"key_name (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpression.key_name",false]],"key_name (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict.key_name",false]],"kms_key_name (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.kms_key_name",false]],"kms_key_name (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.kms_key_name",false]],"kms_key_name (genai.types.encryptionspec attribute)":[[0,"genai.types.EncryptionSpec.kms_key_name",false]],"kms_key_name (genai.types.encryptionspecdict attribute)":[[0,"genai.types.EncryptionSpecDict.kms_key_name",false]],"ko (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.ko",false]],"label (genai.types.entitylabel attribute)":[[0,"genai.types.EntityLabel.label",false]],"label (genai.types.entitylabeldict attribute)":[[0,"genai.types.EntityLabelDict.label",false]],"labels (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.labels",false]],"labels (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.labels",false]],"labels (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.labels",false]],"labels (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.labels",false]],"labels (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.labels",false]],"labels (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.labels",false]],"labels (genai.types.generatedimagemask attribute)":[[0,"genai.types.GeneratedImageMask.labels",false]],"labels (genai.types.generatedimagemaskdict attribute)":[[0,"genai.types.GeneratedImageMaskDict.labels",false]],"labels (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.labels",false]],"labels (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.labels",false]],"labels (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.labels",false]],"labels (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.labels",false]],"labels (genai.types.model attribute)":[[0,"genai.types.Model.labels",false]],"labels (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.labels",false]],"labels (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.labels",false]],"labels (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.labels",false]],"labels (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.labels",false]],"labels (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.labels",false]],"labels (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.labels",false]],"labels (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.labels",false]],"labels (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.labels",false]],"labels (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.labels",false]],"landscape (genai.types.videoorientation attribute)":[[0,"genai.types.VideoOrientation.LANDSCAPE",false]],"language (class in genai.types)":[[0,"genai.types.Language",false]],"language (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.language",false]],"language (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.language",false]],"language (genai.types.executablecode attribute)":[[0,"genai.types.ExecutableCode.language",false]],"language (genai.types.executablecodedict attribute)":[[0,"genai.types.ExecutableCodeDict.language",false]],"language (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.LANGUAGE",false]],"language (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.language",false]],"language (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.language",false]],"language_auto (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.language_auto",false]],"language_auto (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.language_auto",false]],"language_code (genai.types.retrievalconfig attribute)":[[0,"genai.types.RetrievalConfig.language_code",false]],"language_code (genai.types.retrievalconfigdict attribute)":[[0,"genai.types.RetrievalConfigDict.language_code",false]],"language_code (genai.types.speechconfig attribute)":[[0,"genai.types.SpeechConfig.language_code",false]],"language_code (genai.types.speechconfigdict attribute)":[[0,"genai.types.SpeechConfigDict.language_code",false]],"language_code (genai.types.transcription attribute)":[[0,"genai.types.Transcription.language_code",false]],"language_code (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.language_code",false]],"language_codes (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.language_codes",false]],"language_codes (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.language_codes",false]],"language_codes (genai.types.languagehints attribute)":[[0,"genai.types.LanguageHints.language_codes",false]],"language_codes (genai.types.languagehintsdict attribute)":[[0,"genai.types.LanguageHintsDict.language_codes",false]],"language_hints (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.language_hints",false]],"language_hints (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.language_hints",false]],"language_unspecified (genai.types.language attribute)":[[0,"genai.types.Language.LANGUAGE_UNSPECIFIED",false]],"languageautodict (class in genai.types)":[[0,"genai.types.LanguageAutoDict",false]],"languagehintsdict (class in genai.types)":[[0,"genai.types.LanguageHintsDict",false]],"last_consumed_client_message_index (genai.types.liveserversessionresumptionupdate attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdate.last_consumed_client_message_index",false]],"last_consumed_client_message_index (genai.types.liveserversessionresumptionupdatedict attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict.last_consumed_client_message_index",false]],"last_frame (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.last_frame",false]],"last_frame (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.last_frame",false]],"last_page (genai.types.ragchunkpagespan attribute)":[[0,"genai.types.RagChunkPageSpan.last_page",false]],"last_page (genai.types.ragchunkpagespandict attribute)":[[0,"genai.types.RagChunkPageSpanDict.last_page",false]],"lat_lng (genai.types.retrievalconfig attribute)":[[0,"genai.types.RetrievalConfig.lat_lng",false]],"lat_lng (genai.types.retrievalconfigdict attribute)":[[0,"genai.types.RetrievalConfigDict.lat_lng",false]],"latitude (genai.types.latlng attribute)":[[0,"genai.types.LatLng.latitude",false]],"latitude (genai.types.latlngdict attribute)":[[0,"genai.types.LatLngDict.latitude",false]],"latlngdict (class in genai.types)":[[0,"genai.types.LatLngDict",false]],"learning_rate (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.learning_rate",false]],"learning_rate (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.learning_rate",false]],"learning_rate (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.learning_rate",false]],"learning_rate (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.learning_rate",false]],"learning_rate (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.learning_rate",false]],"learning_rate (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.learning_rate",false]],"learning_rate_multiplier (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.learning_rate_multiplier",false]],"left (genai.types.datasetdistributiondistributionbucket attribute)":[[0,"genai.types.DatasetDistributionDistributionBucket.left",false]],"left (genai.types.datasetdistributiondistributionbucketdict attribute)":[[0,"genai.types.DatasetDistributionDistributionBucketDict.left",false]],"left (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucket.left",false]],"left (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.left",false]],"legacy (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.LEGACY",false]],"legal_terms_and_agreements (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.LEGAL_TERMS_AND_AGREEMENTS",false]],"level (genai.types.partmediaresolution attribute)":[[0,"genai.types.PartMediaResolution.level",false]],"level (genai.types.partmediaresolutiondict attribute)":[[0,"genai.types.PartMediaResolutionDict.level",false]],"license (genai.types.citation attribute)":[[0,"genai.types.Citation.license",false]],"license (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.license",false]],"list() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.list",false]],"list() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.list",false]],"list() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.list",false]],"list() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.list",false]],"list() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.list",false]],"list() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.list",false]],"list() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.list",false]],"list() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.list",false]],"list() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.list",false]],"list() (genai.models.models method)":[[0,"genai.models.Models.list",false]],"list() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.list",false]],"list() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.list",false]],"list_environments() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.list_environments",false]],"list_environments() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.list_environments",false]],"list_executions() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.list_executions",false]],"list_executions() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.list_executions",false]],"listbatchjobsconfigdict (class in genai.types)":[[0,"genai.types.ListBatchJobsConfigDict",false]],"listbatchjobsresponsedict (class in genai.types)":[[0,"genai.types.ListBatchJobsResponseDict",false]],"listcachedcontentsconfigdict (class in genai.types)":[[0,"genai.types.ListCachedContentsConfigDict",false]],"listcachedcontentsresponsedict (class in genai.types)":[[0,"genai.types.ListCachedContentsResponseDict",false]],"listdocumentsconfigdict (class in genai.types)":[[0,"genai.types.ListDocumentsConfigDict",false]],"listdocumentsresponsedict (class in genai.types)":[[0,"genai.types.ListDocumentsResponseDict",false]],"listfilesconfigdict (class in genai.types)":[[0,"genai.types.ListFilesConfigDict",false]],"listfilesearchstoresconfigdict (class in genai.types)":[[0,"genai.types.ListFileSearchStoresConfigDict",false]],"listfilesearchstoresresponsedict (class in genai.types)":[[0,"genai.types.ListFileSearchStoresResponseDict",false]],"listfilesresponsedict (class in genai.types)":[[0,"genai.types.ListFilesResponseDict",false]],"listmodelsconfigdict (class in genai.types)":[[0,"genai.types.ListModelsConfigDict",false]],"listmodelsresponsedict (class in genai.types)":[[0,"genai.types.ListModelsResponseDict",false]],"listtuningjobsconfigdict (class in genai.types)":[[0,"genai.types.ListTuningJobsConfigDict",false]],"listtuningjobsresponsedict (class in genai.types)":[[0,"genai.types.ListTuningJobsResponseDict",false]],"live (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.live",false]],"live_connect_constraints (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.live_connect_constraints",false]],"live_connect_constraints (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.live_connect_constraints",false]],"liveclientcontentdict (class in genai.types)":[[0,"genai.types.LiveClientContentDict",false]],"liveclientmessagedict (class in genai.types)":[[0,"genai.types.LiveClientMessageDict",false]],"liveclientrealtimeinputdict (class in genai.types)":[[0,"genai.types.LiveClientRealtimeInputDict",false]],"liveclientsetupdict (class in genai.types)":[[0,"genai.types.LiveClientSetupDict",false]],"liveclienttoolresponsedict (class in genai.types)":[[0,"genai.types.LiveClientToolResponseDict",false]],"liveconnectconfigdict (class in genai.types)":[[0,"genai.types.LiveConnectConfigDict",false]],"liveconnectconstraintsdict (class in genai.types)":[[0,"genai.types.LiveConnectConstraintsDict",false]],"liveconnectparametersdict (class in genai.types)":[[0,"genai.types.LiveConnectParametersDict",false]],"livemusicclientcontentdict (class in genai.types)":[[0,"genai.types.LiveMusicClientContentDict",false]],"livemusicclientmessagedict (class in genai.types)":[[0,"genai.types.LiveMusicClientMessageDict",false]],"livemusicclientsetupdict (class in genai.types)":[[0,"genai.types.LiveMusicClientSetupDict",false]],"livemusicconnectparametersdict (class in genai.types)":[[0,"genai.types.LiveMusicConnectParametersDict",false]],"livemusicfilteredpromptdict (class in genai.types)":[[0,"genai.types.LiveMusicFilteredPromptDict",false]],"livemusicgenerationconfigdict (class in genai.types)":[[0,"genai.types.LiveMusicGenerationConfigDict",false]],"livemusicplaybackcontrol (class in genai.types)":[[0,"genai.types.LiveMusicPlaybackControl",false]],"livemusicservercontentdict (class in genai.types)":[[0,"genai.types.LiveMusicServerContentDict",false]],"livemusicservermessagedict (class in genai.types)":[[0,"genai.types.LiveMusicServerMessageDict",false]],"livemusicserversetupcompletedict (class in genai.types)":[[0,"genai.types.LiveMusicServerSetupCompleteDict",false]],"livemusicsetconfigparametersdict (class in genai.types)":[[0,"genai.types.LiveMusicSetConfigParametersDict",false]],"livemusicsetweightedpromptsparametersdict (class in genai.types)":[[0,"genai.types.LiveMusicSetWeightedPromptsParametersDict",false]],"livemusicsourcemetadatadict (class in genai.types)":[[0,"genai.types.LiveMusicSourceMetadataDict",false]],"livesendrealtimeinputparametersdict (class in genai.types)":[[0,"genai.types.LiveSendRealtimeInputParametersDict",false]],"liveservercontentdict (class in genai.types)":[[0,"genai.types.LiveServerContentDict",false]],"liveservergoawaydict (class in genai.types)":[[0,"genai.types.LiveServerGoAwayDict",false]],"liveservermessagedict (class in genai.types)":[[0,"genai.types.LiveServerMessageDict",false]],"liveserversessionresumptionupdatedict (class in genai.types)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict",false]],"liveserversetupcompletedict (class in genai.types)":[[0,"genai.types.LiveServerSetupCompleteDict",false]],"liveservertoolcallcancellationdict (class in genai.types)":[[0,"genai.types.LiveServerToolCallCancellationDict",false]],"liveservertoolcalldict (class in genai.types)":[[0,"genai.types.LiveServerToolCallDict",false]],"llm_based_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.llm_based_metric_spec",false]],"llm_based_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.llm_based_metric_spec",false]],"llm_ranker (genai.types.ragretrievalconfigranking attribute)":[[0,"genai.types.RagRetrievalConfigRanking.llm_ranker",false]],"llm_ranker (genai.types.ragretrievalconfigrankingdict attribute)":[[0,"genai.types.RagRetrievalConfigRankingDict.llm_ranker",false]],"llmbasedmetricspecdict (class in genai.types)":[[0,"genai.types.LLMBasedMetricSpecDict",false]],"location (genai.client.client attribute)":[[0,"genai.client.Client.location",false]],"lock_additional_fields (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.lock_additional_fields",false]],"lock_additional_fields (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.lock_additional_fields",false]],"log_probability (genai.types.logprobsresultcandidate attribute)":[[0,"genai.types.LogprobsResultCandidate.log_probability",false]],"log_probability (genai.types.logprobsresultcandidatedict attribute)":[[0,"genai.types.LogprobsResultCandidateDict.log_probability",false]],"log_probability_sum (genai.types.logprobsresult attribute)":[[0,"genai.types.LogprobsResult.log_probability_sum",false]],"log_probability_sum (genai.types.logprobsresultdict attribute)":[[0,"genai.types.LogprobsResultDict.log_probability_sum",false]],"logprobs (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.logprobs",false]],"logprobs (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.logprobs",false]],"logprobs (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.logprobs",false]],"logprobs (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.logprobs",false]],"logprobs_result (genai.types.candidate attribute)":[[0,"genai.types.Candidate.logprobs_result",false]],"logprobs_result (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.logprobs_result",false]],"logprobsresultcandidatedict (class in genai.types)":[[0,"genai.types.LogprobsResultCandidateDict",false]],"logprobsresultdict (class in genai.types)":[[0,"genai.types.LogprobsResultDict",false]],"logprobsresulttopcandidatesdict (class in genai.types)":[[0,"genai.types.LogprobsResultTopCandidatesDict",false]],"longitude (genai.types.latlng attribute)":[[0,"genai.types.LatLng.longitude",false]],"longitude (genai.types.latlngdict attribute)":[[0,"genai.types.LatLngDict.longitude",false]],"lossless (genai.types.videocompressionquality attribute)":[[0,"genai.types.VideoCompressionQuality.LOSSLESS",false]],"low (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.LOW",false]],"low (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.LOW",false]],"malformed_function_call (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.MALFORMED_FUNCTION_CALL",false]],"malformed_function_call (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.MALFORMED_FUNCTION_CALL",false]],"manual_mode (genai.types.generationconfigroutingconfig attribute)":[[0,"genai.types.GenerationConfigRoutingConfig.manual_mode",false]],"manual_mode (genai.types.generationconfigroutingconfigdict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigDict.manual_mode",false]],"maps (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.maps",false]],"maps (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.maps",false]],"mask (genai.types.generatedimagemask attribute)":[[0,"genai.types.GeneratedImageMask.mask",false]],"mask (genai.types.generatedimagemaskdict attribute)":[[0,"genai.types.GeneratedImageMaskDict.mask",false]],"mask (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.mask",false]],"mask (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.mask",false]],"mask_dilation (genai.types.maskreferenceconfig attribute)":[[0,"genai.types.MaskReferenceConfig.mask_dilation",false]],"mask_dilation (genai.types.maskreferenceconfigdict attribute)":[[0,"genai.types.MaskReferenceConfigDict.mask_dilation",false]],"mask_dilation (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.mask_dilation",false]],"mask_dilation (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.mask_dilation",false]],"mask_image_config (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.mask_image_config",false]],"mask_mode (genai.types.maskreferenceconfig attribute)":[[0,"genai.types.MaskReferenceConfig.mask_mode",false]],"mask_mode (genai.types.maskreferenceconfigdict attribute)":[[0,"genai.types.MaskReferenceConfigDict.mask_mode",false]],"mask_mode (genai.types.videogenerationmask attribute)":[[0,"genai.types.VideoGenerationMask.mask_mode",false]],"mask_mode (genai.types.videogenerationmaskdict attribute)":[[0,"genai.types.VideoGenerationMaskDict.mask_mode",false]],"mask_mode_background (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_BACKGROUND",false]],"mask_mode_default (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_DEFAULT",false]],"mask_mode_foreground (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_FOREGROUND",false]],"mask_mode_semantic (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_SEMANTIC",false]],"mask_mode_user_provided (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_USER_PROVIDED",false]],"maskreferenceconfigdict (class in genai.types)":[[0,"genai.types.MaskReferenceConfigDict",false]],"maskreferenceimagedict (class in genai.types)":[[0,"genai.types.MaskReferenceImageDict",false]],"maskreferencemode (class in genai.types)":[[0,"genai.types.MaskReferenceMode",false]],"match_operation (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpression.match_operation",false]],"match_operation (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict.match_operation",false]],"match_operation_unspecified (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.MATCH_OPERATION_UNSPECIFIED",false]],"matchoperation (class in genai.types)":[[0,"genai.types.MatchOperation",false]],"max (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.max",false]],"max (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.max",false]],"max (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.max",false]],"max (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.max",false]],"max_delay (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.max_delay",false]],"max_delay (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.max_delay",false]],"max_items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.max_items",false]],"max_items (genai.types.schema attribute)":[[0,"genai.types.Schema.max_items",false]],"max_items (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.max_items",false]],"max_length (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.max_length",false]],"max_length (genai.types.schema attribute)":[[0,"genai.types.Schema.max_length",false]],"max_length (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.max_length",false]],"max_output_tokens (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.max_output_tokens",false]],"max_output_tokens (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.max_output_tokens",false]],"max_output_tokens (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.max_output_tokens",false]],"max_output_tokens (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.max_output_tokens",false]],"max_output_tokens (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.max_output_tokens",false]],"max_output_tokens (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.max_output_tokens",false]],"max_overlap_tokens (genai.types.whitespaceconfig attribute)":[[0,"genai.types.WhiteSpaceConfig.max_overlap_tokens",false]],"max_overlap_tokens (genai.types.whitespaceconfigdict attribute)":[[0,"genai.types.WhiteSpaceConfigDict.max_overlap_tokens",false]],"max_predictions (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.max_predictions",false]],"max_predictions (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.max_predictions",false]],"max_properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.max_properties",false]],"max_properties (genai.types.schema attribute)":[[0,"genai.types.Schema.max_properties",false]],"max_properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.max_properties",false]],"max_regeneration_reached (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.MAX_REGENERATION_REACHED",false]],"max_results (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.max_results",false]],"max_results (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.max_results",false]],"max_temperature (genai.types.model attribute)":[[0,"genai.types.Model.max_temperature",false]],"max_temperature (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.max_temperature",false]],"max_tokens (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.MAX_TOKENS",false]],"max_tokens_per_chunk (genai.types.whitespaceconfig attribute)":[[0,"genai.types.WhiteSpaceConfig.max_tokens_per_chunk",false]],"max_tokens_per_chunk (genai.types.whitespaceconfigdict attribute)":[[0,"genai.types.WhiteSpaceConfigDict.max_tokens_per_chunk",false]],"maximum (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MAXIMUM",false]],"maximum (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.maximum",false]],"maximum (genai.types.schema attribute)":[[0,"genai.types.Schema.maximum",false]],"maximum (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.maximum",false]],"maximum_remote_calls (genai.types.automaticfunctioncallingconfig attribute)":[[0,"genai.types.AutomaticFunctionCallingConfig.maximum_remote_calls",false]],"maximum_remote_calls (genai.types.automaticfunctioncallingconfigdict attribute)":[[0,"genai.types.AutomaticFunctionCallingConfigDict.maximum_remote_calls",false]],"mcp_servers (genai.types.tool attribute)":[[0,"genai.types.Tool.mcp_servers",false]],"mcp_servers (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.mcp_servers",false]],"mcpserverdict (class in genai.types)":[[0,"genai.types.McpServerDict",false]],"mean (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.mean",false]],"mean (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.mean",false]],"mean (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.mean",false]],"mean (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.mean",false]],"media (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.media",false]],"media (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.media",false]],"media_chunks (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.media_chunks",false]],"media_chunks (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.media_chunks",false]],"media_id (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.media_id",false]],"media_id (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.media_id",false]],"media_resolution (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.media_resolution",false]],"media_resolution (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.media_resolution",false]],"media_resolution (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.media_resolution",false]],"media_resolution (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.media_resolution",false]],"media_resolution (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.media_resolution",false]],"media_resolution (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.media_resolution",false]],"media_resolution (genai.types.part attribute)":[[0,"genai.types.Part.media_resolution",false]],"media_resolution (genai.types.partdict attribute)":[[0,"genai.types.PartDict.media_resolution",false]],"media_resolution_high (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_HIGH",false]],"media_resolution_high (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_HIGH",false]],"media_resolution_low (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_LOW",false]],"media_resolution_low (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_LOW",false]],"media_resolution_medium (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_MEDIUM",false]],"media_resolution_medium (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_MEDIUM",false]],"media_resolution_ultra_high (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_ULTRA_HIGH",false]],"media_resolution_unspecified (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_UNSPECIFIED",false]],"media_resolution_unspecified (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_UNSPECIFIED",false]],"mediamodality (class in genai.types)":[[0,"genai.types.MediaModality",false]],"median (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MEDIAN",false]],"median (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.median",false]],"median (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.median",false]],"median (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.median",false]],"median (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.median",false]],"mediaresolution (class in genai.types)":[[0,"genai.types.MediaResolution",false]],"medium (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.MEDIUM",false]],"medium (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.MEDIUM",false]],"message (genai.types.filestatus attribute)":[[0,"genai.types.FileStatus.message",false]],"message (genai.types.filestatusdict attribute)":[[0,"genai.types.FileStatusDict.message",false]],"message (genai.types.googlerpcstatus attribute)":[[0,"genai.types.GoogleRpcStatus.message",false]],"message (genai.types.googlerpcstatusdict attribute)":[[0,"genai.types.GoogleRpcStatusDict.message",false]],"message (genai.types.joberror attribute)":[[0,"genai.types.JobError.message",false]],"message (genai.types.joberrordict attribute)":[[0,"genai.types.JobErrorDict.message",false]],"message (genai.types.modelstatus attribute)":[[0,"genai.types.ModelStatus.message",false]],"message (genai.types.modelstatusdict attribute)":[[0,"genai.types.ModelStatusDict.message",false]],"metadata (genai.types.embedcontentresponse attribute)":[[0,"genai.types.EmbedContentResponse.metadata",false]],"metadata (genai.types.embedcontentresponsedict attribute)":[[0,"genai.types.EmbedContentResponseDict.metadata",false]],"metadata (genai.types.inlinedembedcontentresponse attribute)":[[0,"genai.types.InlinedEmbedContentResponse.metadata",false]],"metadata (genai.types.inlinedembedcontentresponsedict attribute)":[[0,"genai.types.InlinedEmbedContentResponseDict.metadata",false]],"metadata (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.metadata",false]],"metadata (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.metadata",false]],"metadata (genai.types.inlinedresponse attribute)":[[0,"genai.types.InlinedResponse.metadata",false]],"metadata (genai.types.inlinedresponsedict attribute)":[[0,"genai.types.InlinedResponseDict.metadata",false]],"metadata (genai.types.operation attribute)":[[0,"genai.types.Operation.metadata",false]],"metadata (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.metadata",false]],"metadata (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.metadata",false]],"metadata (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.metadata",false]],"metadata (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.metadata",false]],"metadata_filter (genai.types.filesearch attribute)":[[0,"genai.types.FileSearch.metadata_filter",false]],"metadata_filter (genai.types.filesearchdict attribute)":[[0,"genai.types.FileSearchDict.metadata_filter",false]],"metadata_filter (genai.types.ragretrievalconfigfilter attribute)":[[0,"genai.types.RagRetrievalConfigFilter.metadata_filter",false]],"metadata_filter (genai.types.ragretrievalconfigfilterdict attribute)":[[0,"genai.types.RagRetrievalConfigFilterDict.metadata_filter",false]],"method (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.method",false]],"method (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.method",false]],"method (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.method",false]],"method (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.method",false]],"method (genai.types.safetysetting attribute)":[[0,"genai.types.SafetySetting.method",false]],"method (genai.types.safetysettingdict attribute)":[[0,"genai.types.SafetySettingDict.method",false]],"metric_prompt_template (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.metric_prompt_template",false]],"metric_prompt_template (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.metric_prompt_template",false]],"metric_prompt_template (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.metric_prompt_template",false]],"metric_prompt_template (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.metric_prompt_template",false]],"metric_prompt_template (genai.types.pointwisemetricspec attribute)":[[0,"genai.types.PointwiseMetricSpec.metric_prompt_template",false]],"metric_prompt_template (genai.types.pointwisemetricspecdict attribute)":[[0,"genai.types.PointwiseMetricSpecDict.metric_prompt_template",false]],"metric_spec_name (genai.types.predefinedmetricspec attribute)":[[0,"genai.types.PredefinedMetricSpec.metric_spec_name",false]],"metric_spec_name (genai.types.predefinedmetricspecdict attribute)":[[0,"genai.types.PredefinedMetricSpecDict.metric_spec_name",false]],"metric_spec_parameters (genai.types.predefinedmetricspec attribute)":[[0,"genai.types.PredefinedMetricSpec.metric_spec_parameters",false]],"metric_spec_parameters (genai.types.predefinedmetricspecdict attribute)":[[0,"genai.types.PredefinedMetricSpecDict.metric_spec_parameters",false]],"metricdict (class in genai.types)":[[0,"genai.types.MetricDict",false]],"metrics (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.metrics",false]],"metrics (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.metrics",false]],"mime_type (genai.types.audiochunk attribute)":[[0,"genai.types.AudioChunk.mime_type",false]],"mime_type (genai.types.audiochunkdict attribute)":[[0,"genai.types.AudioChunkDict.mime_type",false]],"mime_type (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.mime_type",false]],"mime_type (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.mime_type",false]],"mime_type (genai.types.blob attribute)":[[0,"genai.types.Blob.mime_type",false]],"mime_type (genai.types.blobdict attribute)":[[0,"genai.types.BlobDict.mime_type",false]],"mime_type (genai.types.document attribute)":[[0,"genai.types.Document.mime_type",false]],"mime_type (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.mime_type",false]],"mime_type (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.mime_type",false]],"mime_type (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.mime_type",false]],"mime_type (genai.types.file attribute)":[[0,"genai.types.File.mime_type",false]],"mime_type (genai.types.filedata attribute)":[[0,"genai.types.FileData.mime_type",false]],"mime_type (genai.types.filedatadict attribute)":[[0,"genai.types.FileDataDict.mime_type",false]],"mime_type (genai.types.filedict attribute)":[[0,"genai.types.FileDict.mime_type",false]],"mime_type (genai.types.functionresponseblob attribute)":[[0,"genai.types.FunctionResponseBlob.mime_type",false]],"mime_type (genai.types.functionresponseblobdict attribute)":[[0,"genai.types.FunctionResponseBlobDict.mime_type",false]],"mime_type (genai.types.functionresponsefiledata attribute)":[[0,"genai.types.FunctionResponseFileData.mime_type",false]],"mime_type (genai.types.functionresponsefiledatadict attribute)":[[0,"genai.types.FunctionResponseFileDataDict.mime_type",false]],"mime_type (genai.types.image attribute)":[[0,"genai.types.Image.mime_type",false]],"mime_type (genai.types.imageconfigimageoutputoptions attribute)":[[0,"genai.types.ImageConfigImageOutputOptions.mime_type",false]],"mime_type (genai.types.imageconfigimageoutputoptionsdict attribute)":[[0,"genai.types.ImageConfigImageOutputOptionsDict.mime_type",false]],"mime_type (genai.types.imagedict attribute)":[[0,"genai.types.ImageDict.mime_type",false]],"mime_type (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.mime_type",false]],"mime_type (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.mime_type",false]],"mime_type (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.mime_type",false]],"mime_type (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.mime_type",false]],"mime_type (genai.types.textresponseformat attribute)":[[0,"genai.types.TextResponseFormat.mime_type",false]],"mime_type (genai.types.textresponseformatdict attribute)":[[0,"genai.types.TextResponseFormatDict.mime_type",false]],"mime_type (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.mime_type",false]],"mime_type (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.mime_type",false]],"mime_type (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.mime_type",false]],"mime_type (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.mime_type",false]],"mime_type (genai.types.video attribute)":[[0,"genai.types.Video.mime_type",false]],"mime_type (genai.types.videodict attribute)":[[0,"genai.types.VideoDict.mime_type",false]],"min (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.min",false]],"min (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.min",false]],"min (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.min",false]],"min (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.min",false]],"min_items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.min_items",false]],"min_items (genai.types.schema attribute)":[[0,"genai.types.Schema.min_items",false]],"min_items (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.min_items",false]],"min_length (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.min_length",false]],"min_length (genai.types.schema attribute)":[[0,"genai.types.Schema.min_length",false]],"min_length (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.min_length",false]],"min_properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.min_properties",false]],"min_properties (genai.types.schema attribute)":[[0,"genai.types.Schema.min_properties",false]],"min_properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.min_properties",false]],"minimal (genai.types.reinforcementtuningthinkinglevel attribute)":[[0,"genai.types.ReinforcementTuningThinkingLevel.MINIMAL",false]],"minimal (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.MINIMAL",false]],"minimum (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MINIMUM",false]],"minimum (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.minimum",false]],"minimum (genai.types.schema attribute)":[[0,"genai.types.Schema.minimum",false]],"minimum (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.minimum",false]],"modality (class in genai.types)":[[0,"genai.types.Modality",false]],"modality (genai.types.modalitytokencount attribute)":[[0,"genai.types.ModalityTokenCount.modality",false]],"modality (genai.types.modalitytokencountdict attribute)":[[0,"genai.types.ModalityTokenCountDict.modality",false]],"modality_unspecified (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.MODALITY_UNSPECIFIED",false]],"modality_unspecified (genai.types.modality attribute)":[[0,"genai.types.Modality.MODALITY_UNSPECIFIED",false]],"modalitytokencountdict (class in genai.types)":[[0,"genai.types.ModalityTokenCountDict",false]],"mode (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MODE",false]],"mode (genai.types.dynamicretrievalconfig attribute)":[[0,"genai.types.DynamicRetrievalConfig.mode",false]],"mode (genai.types.dynamicretrievalconfigdict attribute)":[[0,"genai.types.DynamicRetrievalConfigDict.mode",false]],"mode (genai.types.functioncallingconfig attribute)":[[0,"genai.types.FunctionCallingConfig.mode",false]],"mode (genai.types.functioncallingconfigdict attribute)":[[0,"genai.types.FunctionCallingConfigDict.mode",false]],"mode (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.mode",false]],"mode (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.mode",false]],"mode_dynamic (genai.types.dynamicretrievalconfigmode attribute)":[[0,"genai.types.DynamicRetrievalConfigMode.MODE_DYNAMIC",false]],"mode_unspecified (genai.types.dynamicretrievalconfigmode attribute)":[[0,"genai.types.DynamicRetrievalConfigMode.MODE_UNSPECIFIED",false]],"mode_unspecified (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.MODE_UNSPECIFIED",false]],"model (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.model",false]],"model (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.model",false]],"model (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.model",false]],"model (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.model",false]],"model (genai.types.embedcontentparameters attribute)":[[0,"genai.types.EmbedContentParameters.model",false]],"model (genai.types.embedcontentparametersdict attribute)":[[0,"genai.types.EmbedContentParametersDict.model",false]],"model (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.model",false]],"model (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.model",false]],"model (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.model",false]],"model (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.model",false]],"model (genai.types.liveconnectconstraints attribute)":[[0,"genai.types.LiveConnectConstraints.model",false]],"model (genai.types.liveconnectconstraintsdict attribute)":[[0,"genai.types.LiveConnectConstraintsDict.model",false]],"model (genai.types.liveconnectparameters attribute)":[[0,"genai.types.LiveConnectParameters.model",false]],"model (genai.types.liveconnectparametersdict attribute)":[[0,"genai.types.LiveConnectParametersDict.model",false]],"model (genai.types.livemusicclientsetup attribute)":[[0,"genai.types.LiveMusicClientSetup.model",false]],"model (genai.types.livemusicclientsetupdict attribute)":[[0,"genai.types.LiveMusicClientSetupDict.model",false]],"model (genai.types.livemusicconnectparameters attribute)":[[0,"genai.types.LiveMusicConnectParameters.model",false]],"model (genai.types.livemusicconnectparametersdict attribute)":[[0,"genai.types.LiveMusicConnectParametersDict.model",false]],"model (genai.types.tunedmodel attribute)":[[0,"genai.types.TunedModel.model",false]],"model (genai.types.tunedmodeldict attribute)":[[0,"genai.types.TunedModelDict.model",false]],"model (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.model",false]],"model (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.model",false]],"model_armor (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.MODEL_ARMOR",false]],"model_armor_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.model_armor_config",false]],"model_armor_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.model_armor_config",false]],"model_name (genai.types.generationconfigroutingconfigmanualroutingmode attribute)":[[0,"genai.types.GenerationConfigRoutingConfigManualRoutingMode.model_name",false]],"model_name (genai.types.generationconfigroutingconfigmanualroutingmodedict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigManualRoutingModeDict.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingllmranker attribute)":[[0,"genai.types.RagRetrievalConfigRankingLlmRanker.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingllmrankerdict attribute)":[[0,"genai.types.RagRetrievalConfigRankingLlmRankerDict.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingrankservice attribute)":[[0,"genai.types.RagRetrievalConfigRankingRankService.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingrankservicedict attribute)":[[0,"genai.types.RagRetrievalConfigRankingRankServiceDict.model_name",false]],"model_post_init() (genai.types.image method)":[[0,"genai.types.Image.model_post_init",false]],"model_post_init() (genai.types.metric method)":[[0,"genai.types.Metric.model_post_init",false]],"model_routing_preference (genai.types.generationconfigroutingconfigautoroutingmode attribute)":[[0,"genai.types.GenerationConfigRoutingConfigAutoRoutingMode.model_routing_preference",false]],"model_routing_preference (genai.types.generationconfigroutingconfigautoroutingmodedict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict.model_routing_preference",false]],"model_selection_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.model_selection_config",false]],"model_selection_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.model_selection_config",false]],"model_selection_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.model_selection_config",false]],"model_selection_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.model_selection_config",false]],"model_stage (genai.types.modelstatus attribute)":[[0,"genai.types.ModelStatus.model_stage",false]],"model_stage (genai.types.modelstatusdict attribute)":[[0,"genai.types.ModelStatusDict.model_stage",false]],"model_stage_unspecified (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.MODEL_STAGE_UNSPECIFIED",false]],"model_status (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.model_status",false]],"model_status (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.model_status",false]],"model_turn (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.model_turn",false]],"model_turn (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.model_turn",false]],"model_version (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.model_version",false]],"model_version (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.model_version",false]],"modelarmorconfigdict (class in genai.types)":[[0,"genai.types.ModelArmorConfigDict",false]],"modeldict (class in genai.types)":[[0,"genai.types.ModelDict",false]],"models (class in genai.models)":[[0,"genai.models.Models",false]],"models (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.models",false]],"models (genai.client.client property)":[[0,"genai.client.Client.models",false]],"models (genai.types.listmodelsresponse attribute)":[[0,"genai.types.ListModelsResponse.models",false]],"models (genai.types.listmodelsresponsedict attribute)":[[0,"genai.types.ListModelsResponseDict.models",false]],"modelselectionconfigdict (class in genai.types)":[[0,"genai.types.ModelSelectionConfigDict",false]],"modelstage (class in genai.types)":[[0,"genai.types.ModelStage",false]],"modelstatusdict (class in genai.types)":[[0,"genai.types.ModelStatusDict",false]],"module":[[0,"module-genai.client",false],[0,"module-genai.live",false],[0,"module-genai.models",false],[0,"module-genai.tokens",false],[0,"module-genai.tunings",false],[0,"module-genai.types",false]],"month (genai.types.googletypedate attribute)":[[0,"genai.types.GoogleTypeDate.month",false]],"month (genai.types.googletypedatedict attribute)":[[0,"genai.types.GoogleTypeDateDict.month",false]],"multi_speaker_voice_config (genai.types.speechconfig attribute)":[[0,"genai.types.SpeechConfig.multi_speaker_voice_config",false]],"multi_speaker_voice_config (genai.types.speechconfigdict attribute)":[[0,"genai.types.SpeechConfigDict.multi_speaker_voice_config",false]],"multispeakervoiceconfigdict (class in genai.types)":[[0,"genai.types.MultiSpeakerVoiceConfigDict",false]],"music (genai.live.asynclive property)":[[0,"genai.live.AsyncLive.music",false]],"music_generation_config (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.music_generation_config",false]],"music_generation_config (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.music_generation_config",false]],"music_generation_config (genai.types.livemusicsetconfigparameters attribute)":[[0,"genai.types.LiveMusicSetConfigParameters.music_generation_config",false]],"music_generation_config (genai.types.livemusicsetconfigparametersdict attribute)":[[0,"genai.types.LiveMusicSetConfigParametersDict.music_generation_config",false]],"music_generation_config (genai.types.livemusicsourcemetadata attribute)":[[0,"genai.types.LiveMusicSourceMetadata.music_generation_config",false]],"music_generation_config (genai.types.livemusicsourcemetadatadict attribute)":[[0,"genai.types.LiveMusicSourceMetadataDict.music_generation_config",false]],"music_generation_mode (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.music_generation_mode",false]],"music_generation_mode (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.music_generation_mode",false]],"music_generation_mode_unspecified (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.MUSIC_GENERATION_MODE_UNSPECIFIED",false]],"musicgenerationmode (class in genai.types)":[[0,"genai.types.MusicGenerationMode",false]],"mute_bass (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.mute_bass",false]],"mute_bass (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.mute_bass",false]],"mute_drums (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.mute_drums",false]],"mute_drums (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.mute_drums",false]],"name (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.name",false]],"name (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.name",false]],"name (genai.types.authtoken attribute)":[[0,"genai.types.AuthToken.name",false]],"name (genai.types.authtokendict attribute)":[[0,"genai.types.AuthTokenDict.name",false]],"name (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.name",false]],"name (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.name",false]],"name (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.name",false]],"name (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.name",false]],"name (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.name",false]],"name (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.name",false]],"name (genai.types.document attribute)":[[0,"genai.types.Document.name",false]],"name (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.name",false]],"name (genai.types.endpoint attribute)":[[0,"genai.types.Endpoint.name",false]],"name (genai.types.endpointdict attribute)":[[0,"genai.types.EndpointDict.name",false]],"name (genai.types.file attribute)":[[0,"genai.types.File.name",false]],"name (genai.types.filedict attribute)":[[0,"genai.types.FileDict.name",false]],"name (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.name",false]],"name (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.name",false]],"name (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.name",false]],"name (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.name",false]],"name (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.name",false]],"name (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.name",false]],"name (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.name",false]],"name (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.name",false]],"name (genai.types.mcpserver attribute)":[[0,"genai.types.McpServer.name",false]],"name (genai.types.mcpserverdict attribute)":[[0,"genai.types.McpServerDict.name",false]],"name (genai.types.metric attribute)":[[0,"genai.types.Metric.name",false]],"name (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.name",false]],"name (genai.types.model attribute)":[[0,"genai.types.Model.name",false]],"name (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.name",false]],"name (genai.types.operation attribute)":[[0,"genai.types.Operation.name",false]],"name (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.name",false]],"name (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.name",false]],"name (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.name",false]],"name (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.name",false]],"name (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.name",false]],"name (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.name",false]],"name (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.name",false]],"name (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.name",false]],"name (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.name",false]],"name (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.name",false]],"need_more_input (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.NEED_MORE_INPUT",false]],"negative_prompt (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.negative_prompt",false]],"negative_prompt (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.negative_prompt",false]],"negative_prompt (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.negative_prompt",false]],"negative_prompt (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.negative_prompt",false]],"negative_prompt (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.negative_prompt",false]],"negative_prompt (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.negative_prompt",false]],"negligible (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.NEGLIGIBLE",false]],"new_handle (genai.types.liveserversessionresumptionupdate attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdate.new_handle",false]],"new_handle (genai.types.liveserversessionresumptionupdatedict attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict.new_handle",false]],"new_session_expire_time (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.new_session_expire_time",false]],"new_session_expire_time (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.new_session_expire_time",false]],"next_page_token (genai.types.listbatchjobsresponse attribute)":[[0,"genai.types.ListBatchJobsResponse.next_page_token",false]],"next_page_token (genai.types.listbatchjobsresponsedict attribute)":[[0,"genai.types.ListBatchJobsResponseDict.next_page_token",false]],"next_page_token (genai.types.listcachedcontentsresponse attribute)":[[0,"genai.types.ListCachedContentsResponse.next_page_token",false]],"next_page_token (genai.types.listcachedcontentsresponsedict attribute)":[[0,"genai.types.ListCachedContentsResponseDict.next_page_token",false]],"next_page_token (genai.types.listdocumentsresponse attribute)":[[0,"genai.types.ListDocumentsResponse.next_page_token",false]],"next_page_token (genai.types.listdocumentsresponsedict attribute)":[[0,"genai.types.ListDocumentsResponseDict.next_page_token",false]],"next_page_token (genai.types.listfilesearchstoresresponse attribute)":[[0,"genai.types.ListFileSearchStoresResponse.next_page_token",false]],"next_page_token (genai.types.listfilesearchstoresresponsedict attribute)":[[0,"genai.types.ListFileSearchStoresResponseDict.next_page_token",false]],"next_page_token (genai.types.listfilesresponse attribute)":[[0,"genai.types.ListFilesResponse.next_page_token",false]],"next_page_token (genai.types.listfilesresponsedict attribute)":[[0,"genai.types.ListFilesResponseDict.next_page_token",false]],"next_page_token (genai.types.listmodelsresponse attribute)":[[0,"genai.types.ListModelsResponse.next_page_token",false]],"next_page_token (genai.types.listmodelsresponsedict attribute)":[[0,"genai.types.ListModelsResponseDict.next_page_token",false]],"next_page_token (genai.types.listtuningjobsresponse attribute)":[[0,"genai.types.ListTuningJobsResponse.next_page_token",false]],"next_page_token (genai.types.listtuningjobsresponsedict attribute)":[[0,"genai.types.ListTuningJobsResponseDict.next_page_token",false]],"nl_question_answer (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.NL_QUESTION_ANSWER",false]],"no_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.NO_AUTH",false]],"no_image (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.NO_IMAGE",false]],"no_interruption (genai.types.activityhandling attribute)":[[0,"genai.types.ActivityHandling.NO_INTERRUPTION",false]],"non_blocking (genai.types.behavior attribute)":[[0,"genai.types.Behavior.NON_BLOCKING",false]],"none (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.NONE",false]],"null (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.NULL",false]],"null (genai.types.type attribute)":[[0,"genai.types.Type.NULL",false]],"null_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.null_value",false]],"null_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.null_value",false]],"nullable (genai.types.schema attribute)":[[0,"genai.types.Schema.nullable",false]],"nullable (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.nullable",false]],"num_hits (genai.types.externalapielasticsearchparams attribute)":[[0,"genai.types.ExternalApiElasticSearchParams.num_hits",false]],"num_hits (genai.types.externalapielasticsearchparamsdict attribute)":[[0,"genai.types.ExternalApiElasticSearchParamsDict.num_hits",false]],"num_tokens (genai.types.partmediaresolution attribute)":[[0,"genai.types.PartMediaResolution.num_tokens",false]],"num_tokens (genai.types.partmediaresolutiondict attribute)":[[0,"genai.types.PartMediaResolutionDict.num_tokens",false]],"number (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.NUMBER",false]],"number (genai.types.type attribute)":[[0,"genai.types.Type.NUMBER",false]],"number_of_images (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.number_of_images",false]],"number_of_images (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.number_of_images",false]],"number_of_images (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.number_of_images",false]],"number_of_images (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.number_of_images",false]],"number_of_images (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.number_of_images",false]],"number_of_images (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.number_of_images",false]],"number_of_videos (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.number_of_videos",false]],"number_of_videos (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.number_of_videos",false]],"number_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.number_value",false]],"number_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.number_value",false]],"numeric_value (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.numeric_value",false]],"numeric_value (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.numeric_value",false]],"numeric_value (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.numeric_value",false]],"numeric_value (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.numeric_value",false]],"oauth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.OAUTH",false]],"oauth_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.oauth_config",false]],"oauth_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.oauth_config",false]],"object (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.OBJECT",false]],"object (genai.types.type attribute)":[[0,"genai.types.Type.OBJECT",false]],"off (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.OFF",false]],"oidc_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.OIDC_AUTH",false]],"oidc_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.oidc_config",false]],"oidc_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.oidc_config",false]],"on_demand (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.ON_DEMAND",false]],"on_demand_flex (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.ON_DEMAND_FLEX",false]],"on_demand_priority (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.ON_DEMAND_PRIORITY",false]],"one_of (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.one_of",false]],"only_bass_and_drums (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.only_bass_and_drums",false]],"only_bass_and_drums (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.only_bass_and_drums",false]],"operation (class in genai.types)":[[0,"genai.types.Operation",false]],"operation_name (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.operation_name",false]],"operation_name (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.operation_name",false]],"operations (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.operations",false]],"operations (genai.client.client property)":[[0,"genai.client.Client.operations",false]],"optimized (genai.types.videocompressionquality attribute)":[[0,"genai.types.VideoCompressionQuality.OPTIMIZED",false]],"other (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.OTHER",false]],"other (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.OTHER",false]],"outcome (class in genai.types)":[[0,"genai.types.Outcome",false]],"outcome (genai.types.codeexecutionresult attribute)":[[0,"genai.types.CodeExecutionResult.outcome",false]],"outcome (genai.types.codeexecutionresultdict attribute)":[[0,"genai.types.CodeExecutionResultDict.outcome",false]],"outcome_deadline_exceeded (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_DEADLINE_EXCEEDED",false]],"outcome_failed (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_FAILED",false]],"outcome_ok (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_OK",false]],"outcome_unspecified (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_UNSPECIFIED",false]],"outpaint (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.OUTPAINT",false]],"output (genai.types.codeexecutionresult attribute)":[[0,"genai.types.CodeExecutionResult.output",false]],"output (genai.types.codeexecutionresultdict attribute)":[[0,"genai.types.CodeExecutionResultDict.output",false]],"output (genai.types.tuningexample attribute)":[[0,"genai.types.TuningExample.output",false]],"output (genai.types.tuningexampledict attribute)":[[0,"genai.types.TuningExampleDict.output",false]],"output_audio_transcription (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.output_audio_transcription",false]],"output_audio_transcription (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.output_audio_transcription",false]],"output_audio_transcription (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.output_audio_transcription",false]],"output_audio_transcription (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.output_audio_transcription",false]],"output_compression_quality (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.output_compression_quality",false]],"output_compression_quality (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.output_compression_quality",false]],"output_config (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.output_config",false]],"output_config (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.output_config",false]],"output_dimensionality (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.output_dimensionality",false]],"output_dimensionality (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.output_dimensionality",false]],"output_gcs_uri (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.output_gcs_uri",false]],"output_image_ip_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.OUTPUT_IMAGE_IP_PROHIBITED",false]],"output_info (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.output_info",false]],"output_info (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.output_info",false]],"output_info (genai.types.evaluatedatasetresponse attribute)":[[0,"genai.types.EvaluateDatasetResponse.output_info",false]],"output_info (genai.types.evaluatedatasetresponsedict attribute)":[[0,"genai.types.EvaluateDatasetResponseDict.output_info",false]],"output_mime_type (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.output_mime_type",false]],"output_mime_type (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.output_mime_type",false]],"output_mime_type (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.output_mime_type",false]],"output_mime_type (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.output_mime_type",false]],"output_mime_type (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.output_mime_type",false]],"output_mime_type (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.output_mime_type",false]],"output_mime_type (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.output_mime_type",false]],"output_mime_type (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.output_mime_type",false]],"output_mime_type (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.output_mime_type",false]],"output_mime_type (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.output_mime_type",false]],"output_token_limit (genai.types.model attribute)":[[0,"genai.types.Model.output_token_limit",false]],"output_token_limit (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.output_token_limit",false]],"output_transcription (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.output_transcription",false]],"output_transcription (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.output_transcription",false]],"output_uri (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.output_uri",false]],"output_uri (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.output_uri",false]],"output_uri (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.output_uri",false]],"output_uri (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.output_uri",false]],"output_uri_prefix (genai.types.gcsdestination attribute)":[[0,"genai.types.GcsDestination.output_uri_prefix",false]],"output_uri_prefix (genai.types.gcsdestinationdict attribute)":[[0,"genai.types.GcsDestinationDict.output_uri_prefix",false]],"outputconfigdict (class in genai.types)":[[0,"genai.types.OutputConfigDict",false]],"outputinfodict (class in genai.types)":[[0,"genai.types.OutputInfoDict",false]],"overall_reward (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.overall_reward",false]],"overall_reward (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.overall_reward",false]],"override_replay_id (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.override_replay_id",false]],"override_replay_id (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.override_replay_id",false]],"overwritten_threshold (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.overwritten_threshold",false]],"overwritten_threshold (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.overwritten_threshold",false]],"p5 (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.p5",false]],"p5 (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.p5",false]],"p5 (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.p5",false]],"p5 (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.p5",false]],"p95 (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.p95",false]],"p95 (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.p95",false]],"p95 (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.p95",false]],"p95 (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.p95",false]],"pad (genai.types.imageresizemode attribute)":[[0,"genai.types.ImageResizeMode.PAD",false]],"page_number (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.page_number",false]],"page_number (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.page_number",false]],"page_size (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.page_size",false]],"page_size (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.page_size",false]],"page_size (genai.types.listcachedcontentsconfig attribute)":[[0,"genai.types.ListCachedContentsConfig.page_size",false]],"page_size (genai.types.listcachedcontentsconfigdict attribute)":[[0,"genai.types.ListCachedContentsConfigDict.page_size",false]],"page_size (genai.types.listdocumentsconfig attribute)":[[0,"genai.types.ListDocumentsConfig.page_size",false]],"page_size (genai.types.listdocumentsconfigdict attribute)":[[0,"genai.types.ListDocumentsConfigDict.page_size",false]],"page_size (genai.types.listfilesconfig attribute)":[[0,"genai.types.ListFilesConfig.page_size",false]],"page_size (genai.types.listfilesconfigdict attribute)":[[0,"genai.types.ListFilesConfigDict.page_size",false]],"page_size (genai.types.listfilesearchstoresconfig attribute)":[[0,"genai.types.ListFileSearchStoresConfig.page_size",false]],"page_size (genai.types.listfilesearchstoresconfigdict attribute)":[[0,"genai.types.ListFileSearchStoresConfigDict.page_size",false]],"page_size (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.page_size",false]],"page_size (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.page_size",false]],"page_size (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.page_size",false]],"page_size (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.page_size",false]],"page_span (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.page_span",false]],"page_span (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.page_span",false]],"page_token (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.page_token",false]],"page_token (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.page_token",false]],"page_token (genai.types.listcachedcontentsconfig attribute)":[[0,"genai.types.ListCachedContentsConfig.page_token",false]],"page_token (genai.types.listcachedcontentsconfigdict attribute)":[[0,"genai.types.ListCachedContentsConfigDict.page_token",false]],"page_token (genai.types.listdocumentsconfig attribute)":[[0,"genai.types.ListDocumentsConfig.page_token",false]],"page_token (genai.types.listdocumentsconfigdict attribute)":[[0,"genai.types.ListDocumentsConfigDict.page_token",false]],"page_token (genai.types.listfilesconfig attribute)":[[0,"genai.types.ListFilesConfig.page_token",false]],"page_token (genai.types.listfilesconfigdict attribute)":[[0,"genai.types.ListFilesConfigDict.page_token",false]],"page_token (genai.types.listfilesearchstoresconfig attribute)":[[0,"genai.types.ListFileSearchStoresConfig.page_token",false]],"page_token (genai.types.listfilesearchstoresconfigdict attribute)":[[0,"genai.types.ListFileSearchStoresConfigDict.page_token",false]],"page_token (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.page_token",false]],"page_token (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.page_token",false]],"page_token (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.page_token",false]],"page_token (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.page_token",false]],"pairwise_choice (genai.types.pairwisemetricresult attribute)":[[0,"genai.types.PairwiseMetricResult.pairwise_choice",false]],"pairwise_choice (genai.types.pairwisemetricresultdict attribute)":[[0,"genai.types.PairwiseMetricResultDict.pairwise_choice",false]],"pairwise_choice_unspecified (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.PAIRWISE_CHOICE_UNSPECIFIED",false]],"pairwise_metric_result (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.pairwise_metric_result",false]],"pairwise_metric_result (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.pairwise_metric_result",false]],"pairwisechoice (class in genai.types)":[[0,"genai.types.PairwiseChoice",false]],"pairwisemetricresultdict (class in genai.types)":[[0,"genai.types.PairwiseMetricResultDict",false]],"pairwisemetricspecdict (class in genai.types)":[[0,"genai.types.PairwiseMetricSpecDict",false]],"parallel_ai_search (genai.types.tool attribute)":[[0,"genai.types.Tool.parallel_ai_search",false]],"parallel_ai_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.parallel_ai_search",false]],"parameter_names (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.parameter_names",false]],"parameter_names (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.parameter_names",false]],"parameters (genai.types.computationbasedmetricspec attribute)":[[0,"genai.types.ComputationBasedMetricSpec.parameters",false]],"parameters (genai.types.computationbasedmetricspecdict attribute)":[[0,"genai.types.ComputationBasedMetricSpecDict.parameters",false]],"parameters (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.parameters",false]],"parameters (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.parameters",false]],"parameters (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.parameters",false]],"parameters (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.parameters",false]],"parameters_json_schema (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.parameters_json_schema",false]],"parameters_json_schema (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.parameters_json_schema",false]],"parent (genai.types.importfileresponse attribute)":[[0,"genai.types.ImportFileResponse.parent",false]],"parent (genai.types.importfileresponsedict attribute)":[[0,"genai.types.ImportFileResponseDict.parent",false]],"parent (genai.types.uploadtofilesearchstoreresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResponse.parent",false]],"parent (genai.types.uploadtofilesearchstoreresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResponseDict.parent",false]],"parse_and_reduce_fn (genai.types.metric attribute)":[[0,"genai.types.Metric.parse_and_reduce_fn",false]],"parse_and_reduce_fn (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.parse_and_reduce_fn",false]],"parse_response_config (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.parse_response_config",false]],"parse_response_config (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.parse_response_config",false]],"parse_type (genai.types.reinforcementtuningparseresponseconfig attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfig.parse_type",false]],"parse_type (genai.types.reinforcementtuningparseresponseconfigdict attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfigDict.parse_type",false]],"parsed (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.parsed",false]],"parsed_response_conversion_scorer (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.parsed_response_conversion_scorer",false]],"parsed_response_conversion_scorer (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.parsed_response_conversion_scorer",false]],"parsing_function (genai.types.evaluationparserconfigcustomcodeparserconfig attribute)":[[0,"genai.types.EvaluationParserConfigCustomCodeParserConfig.parsing_function",false]],"parsing_function (genai.types.evaluationparserconfigcustomcodeparserconfigdict attribute)":[[0,"genai.types.EvaluationParserConfigCustomCodeParserConfigDict.parsing_function",false]],"part_index (genai.types.segment attribute)":[[0,"genai.types.Segment.part_index",false]],"part_index (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.part_index",false]],"part_metadata (genai.types.part attribute)":[[0,"genai.types.Part.part_metadata",false]],"part_metadata (genai.types.partdict attribute)":[[0,"genai.types.PartDict.part_metadata",false]],"partdict (class in genai.types)":[[0,"genai.types.PartDict",false]],"partial_args (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.partial_args",false]],"partial_args (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.partial_args",false]],"partial_match (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.PARTIAL_MATCH",false]],"partialargdict (class in genai.types)":[[0,"genai.types.PartialArgDict",false]],"partmediaresolutiondict (class in genai.types)":[[0,"genai.types.PartMediaResolutionDict",false]],"partmediaresolutionlevel (class in genai.types)":[[0,"genai.types.PartMediaResolutionLevel",false]],"partner_model_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.partner_model_tuning_spec",false]],"partner_model_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.partner_model_tuning_spec",false]],"partnermodeltuningspecdict (class in genai.types)":[[0,"genai.types.PartnerModelTuningSpecDict",false]],"parts (genai.types.content attribute)":[[0,"genai.types.Content.parts",false]],"parts (genai.types.contentdict attribute)":[[0,"genai.types.ContentDict.parts",false]],"parts (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.parts",false]],"parts (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.parts",false]],"parts (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.parts",false]],"parts (genai.types.modelcontent attribute)":[[0,"genai.types.ModelContent.parts",false]],"parts (genai.types.usercontent attribute)":[[0,"genai.types.UserContent.parts",false]],"pattern (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.pattern",false]],"pattern (genai.types.schema attribute)":[[0,"genai.types.Schema.pattern",false]],"pattern (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.pattern",false]],"pause (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.PAUSE",false]],"pending_documents_count (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.pending_documents_count",false]],"pending_documents_count (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.pending_documents_count",false]],"percentile_p90 (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.PERCENTILE_P90",false]],"percentile_p95 (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.PERCENTILE_P95",false]],"percentile_p99 (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.PERCENTILE_P99",false]],"person_generation (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.person_generation",false]],"person_generation (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.person_generation",false]],"person_generation (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.person_generation",false]],"person_generation (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.person_generation",false]],"person_generation (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.person_generation",false]],"person_generation (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.person_generation",false]],"person_generation (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.person_generation",false]],"person_generation (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.person_generation",false]],"person_generation (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.person_generation",false]],"person_generation (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.person_generation",false]],"person_generation (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.person_generation",false]],"person_generation (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.person_generation",false]],"person_image (genai.types.recontextimagesource attribute)":[[0,"genai.types.RecontextImageSource.person_image",false]],"person_image (genai.types.recontextimagesourcedict attribute)":[[0,"genai.types.RecontextImageSourceDict.person_image",false]],"persongeneration (class in genai.types)":[[0,"genai.types.PersonGeneration",false]],"phish_block_threshold_unspecified (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.PHISH_BLOCK_THRESHOLD_UNSPECIFIED",false]],"phishblockthreshold (class in genai.types)":[[0,"genai.types.PhishBlockThreshold",false]],"photo_uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattribution attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution.photo_uri",false]],"photo_uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattributiondict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict.photo_uri",false]],"ping() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.ping",false]],"ping() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.ping",false]],"pipeline_job (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.pipeline_job",false]],"pipeline_job (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.pipeline_job",false]],"pipeline_root_directory (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.pipeline_root_directory",false]],"pipeline_root_directory (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.pipeline_root_directory",false]],"place_answer_sources (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.place_answer_sources",false]],"place_answer_sources (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.place_answer_sources",false]],"place_id (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.place_id",false]],"place_id (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.place_id",false]],"places (genai.types.googlemapsgroundingtypes attribute)":[[0,"genai.types.GoogleMapsGroundingTypes.places",false]],"places (genai.types.googlemapsgroundingtypesdict attribute)":[[0,"genai.types.GoogleMapsGroundingTypesDict.places",false]],"play (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.PLAY",false]],"playback_control (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.playback_control",false]],"playback_control (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.playback_control",false]],"playback_control_unspecified (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.PLAYBACK_CONTROL_UNSPECIFIED",false]],"pointwise_metric_result (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.pointwise_metric_result",false]],"pointwise_metric_result (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.pointwise_metric_result",false]],"pointwise_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.pointwise_metric_spec",false]],"pointwise_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.pointwise_metric_spec",false]],"pointwisemetricresultdict (class in genai.types)":[[0,"genai.types.PointwiseMetricResultDict",false]],"pointwisemetricspecdict (class in genai.types)":[[0,"genai.types.PointwiseMetricSpecDict",false]],"portrait (genai.types.videoorientation attribute)":[[0,"genai.types.VideoOrientation.PORTRAIT",false]],"positive_prompt_safety_attributes (genai.types.generateimagesresponse attribute)":[[0,"genai.types.GenerateImagesResponse.positive_prompt_safety_attributes",false]],"positive_prompt_safety_attributes (genai.types.generateimagesresponsedict attribute)":[[0,"genai.types.GenerateImagesResponseDict.positive_prompt_safety_attributes",false]],"pre_tuned_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.pre_tuned_model",false]],"pre_tuned_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.pre_tuned_model",false]],"pre_tuned_model_checkpoint_id (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.pre_tuned_model_checkpoint_id",false]],"pre_tuned_model_checkpoint_id (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.pre_tuned_model_checkpoint_id",false]],"prebuilt_voice_config (genai.types.voiceconfig attribute)":[[0,"genai.types.VoiceConfig.prebuilt_voice_config",false]],"prebuilt_voice_config (genai.types.voiceconfigdict attribute)":[[0,"genai.types.VoiceConfigDict.prebuilt_voice_config",false]],"prebuiltvoiceconfigdict (class in genai.types)":[[0,"genai.types.PrebuiltVoiceConfigDict",false]],"predefined_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.predefined_metric_spec",false]],"predefined_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.predefined_metric_spec",false]],"predefined_rubric_generation_spec (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.predefined_rubric_generation_spec",false]],"predefined_rubric_generation_spec (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.predefined_rubric_generation_spec",false]],"predefinedmetricspecdict (class in genai.types)":[[0,"genai.types.PredefinedMetricSpecDict",false]],"predict (genai.types.embeddingapitype attribute)":[[0,"genai.types.EmbeddingApiType.PREDICT",false]],"preference_optimization_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.preference_optimization_data_stats",false]],"preference_optimization_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.preference_optimization_data_stats",false]],"preference_optimization_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.preference_optimization_spec",false]],"preference_optimization_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.preference_optimization_spec",false]],"preference_tuning (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.PREFERENCE_TUNING",false]],"preferenceoptimizationdatastatsdict (class in genai.types)":[[0,"genai.types.PreferenceOptimizationDataStatsDict",false]],"preferenceoptimizationhyperparametersdict (class in genai.types)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict",false]],"preferenceoptimizationspecdict (class in genai.types)":[[0,"genai.types.PreferenceOptimizationSpecDict",false]],"prefix_padding_ms (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.prefix_padding_ms",false]],"prefix_padding_ms (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.prefix_padding_ms",false]],"presence_penalty (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.presence_penalty",false]],"presence_penalty (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.presence_penalty",false]],"presence_penalty (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.presence_penalty",false]],"presence_penalty (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.presence_penalty",false]],"pretunedmodeldict (class in genai.types)":[[0,"genai.types.PreTunedModelDict",false]],"preview (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.PREVIEW",false]],"prioritize_cost (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.PRIORITIZE_COST",false]],"prioritize_quality (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.PRIORITIZE_QUALITY",false]],"priority (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.PRIORITY",false]],"proactive_audio (genai.types.proactivityconfig attribute)":[[0,"genai.types.ProactivityConfig.proactive_audio",false]],"proactive_audio (genai.types.proactivityconfigdict attribute)":[[0,"genai.types.ProactivityConfigDict.proactive_audio",false]],"proactivity (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.proactivity",false]],"proactivity (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.proactivity",false]],"proactivity (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.proactivity",false]],"proactivity (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.proactivity",false]],"proactivityconfigdict (class in genai.types)":[[0,"genai.types.ProactivityConfigDict",false]],"probability (genai.types.harmblockmethod attribute)":[[0,"genai.types.HarmBlockMethod.PROBABILITY",false]],"probability (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.probability",false]],"probability (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.probability",false]],"probability_score (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.probability_score",false]],"probability_score (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.probability_score",false]],"processing (genai.types.filestate attribute)":[[0,"genai.types.FileState.PROCESSING",false]],"product_image (genai.types.productimage attribute)":[[0,"genai.types.ProductImage.product_image",false]],"product_image (genai.types.productimagedict attribute)":[[0,"genai.types.ProductImageDict.product_image",false]],"product_images (genai.types.recontextimagesource attribute)":[[0,"genai.types.RecontextImageSource.product_images",false]],"product_images (genai.types.recontextimagesourcedict attribute)":[[0,"genai.types.RecontextImageSourceDict.product_images",false]],"productimagedict (class in genai.types)":[[0,"genai.types.ProductImageDict",false]],"prohibited_content (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.PROHIBITED_CONTENT",false]],"prohibited_content (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.PROHIBITED_CONTENT",false]],"prohibited_input_content (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.PROHIBITED_INPUT_CONTENT",false]],"project (genai.client.client attribute)":[[0,"genai.client.Client.project",false]],"projectoperationdict (class in genai.types)":[[0,"genai.types.ProjectOperationDict",false]],"prominent_people (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.prominent_people",false]],"prominent_people (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.prominent_people",false]],"prominent_people_unspecified (genai.types.prominentpeople attribute)":[[0,"genai.types.ProminentPeople.PROMINENT_PEOPLE_UNSPECIFIED",false]],"prominentpeople (class in genai.types)":[[0,"genai.types.ProminentPeople",false]],"prompt (genai.types.generatevideossource attribute)":[[0,"genai.types.GenerateVideosSource.prompt",false]],"prompt (genai.types.generatevideossourcedict attribute)":[[0,"genai.types.GenerateVideosSourceDict.prompt",false]],"prompt (genai.types.recontextimagesource attribute)":[[0,"genai.types.RecontextImageSource.prompt",false]],"prompt (genai.types.recontextimagesourcedict attribute)":[[0,"genai.types.RecontextImageSourceDict.prompt",false]],"prompt (genai.types.segmentimagesource attribute)":[[0,"genai.types.SegmentImageSource.prompt",false]],"prompt (genai.types.segmentimagesourcedict attribute)":[[0,"genai.types.SegmentImageSourceDict.prompt",false]],"prompt (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.PROMPT",false]],"prompt_dataset_uri (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.prompt_dataset_uri",false]],"prompt_dataset_uri (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.prompt_dataset_uri",false]],"prompt_dataset_uri (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.prompt_dataset_uri",false]],"prompt_dataset_uri (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.prompt_dataset_uri",false]],"prompt_feedback (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.prompt_feedback",false]],"prompt_feedback (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.prompt_feedback",false]],"prompt_template (genai.types.metric attribute)":[[0,"genai.types.Metric.prompt_template",false]],"prompt_template (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.prompt_template",false]],"prompt_template (genai.types.rubricgenerationspec attribute)":[[0,"genai.types.RubricGenerationSpec.prompt_template",false]],"prompt_template (genai.types.rubricgenerationspecdict attribute)":[[0,"genai.types.RubricGenerationSpecDict.prompt_template",false]],"prompt_template_name (genai.types.modelarmorconfig attribute)":[[0,"genai.types.ModelArmorConfig.prompt_template_name",false]],"prompt_template_name (genai.types.modelarmorconfigdict attribute)":[[0,"genai.types.ModelArmorConfigDict.prompt_template_name",false]],"prompt_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.prompt_token_count",false]],"prompt_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.prompt_token_count",false]],"prompt_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.prompt_token_count",false]],"prompt_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.prompt_token_count",false]],"prompt_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.prompt_tokens_details",false]],"prompt_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.prompt_tokens_details",false]],"prompt_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.prompt_tokens_details",false]],"prompt_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.prompt_tokens_details",false]],"properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.properties",false]],"properties (genai.types.schema attribute)":[[0,"genai.types.Schema.properties",false]],"properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.properties",false]],"property (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.PROPERTY",false]],"property_ordering (genai.types.schema attribute)":[[0,"genai.types.Schema.property_ordering",false]],"property_ordering (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.property_ordering",false]],"provisioned_throughput (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.PROVISIONED_THROUGHPUT",false]],"pt (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.pt",false]],"publication_date (genai.types.citation attribute)":[[0,"genai.types.Citation.publication_date",false]],"publication_date (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.publication_date",false]],"pubsub_topic (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.pubsub_topic",false]],"pubsub_topic (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.pubsub_topic",false]],"python (genai.types.language attribute)":[[0,"genai.types.Language.PYTHON",false]],"python_code_assertion (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.PYTHON_CODE_ASSERTION",false]],"python_code_snippet (genai.types.reinforcementtuningcodeexecutionrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningCodeExecutionRewardScorer.python_code_snippet",false]],"python_code_snippet (genai.types.reinforcementtuningcodeexecutionrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningCodeExecutionRewardScorerDict.python_code_snippet",false]],"quality (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.QUALITY",false]],"query_base (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.query_base",false]],"query_base (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.query_base",false]],"rag_chunk (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.rag_chunk",false]],"rag_chunk (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.rag_chunk",false]],"rag_corpora (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.rag_corpora",false]],"rag_corpora (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.rag_corpora",false]],"rag_corpus (genai.types.vertexragstoreragresource attribute)":[[0,"genai.types.VertexRagStoreRagResource.rag_corpus",false]],"rag_corpus (genai.types.vertexragstoreragresourcedict attribute)":[[0,"genai.types.VertexRagStoreRagResourceDict.rag_corpus",false]],"rag_file_ids (genai.types.vertexragstoreragresource attribute)":[[0,"genai.types.VertexRagStoreRagResource.rag_file_ids",false]],"rag_file_ids (genai.types.vertexragstoreragresourcedict attribute)":[[0,"genai.types.VertexRagStoreRagResourceDict.rag_file_ids",false]],"rag_resources (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.rag_resources",false]],"rag_resources (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.rag_resources",false]],"rag_retrieval_config (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.rag_retrieval_config",false]],"rag_retrieval_config (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.rag_retrieval_config",false]],"ragchunkdict (class in genai.types)":[[0,"genai.types.RagChunkDict",false]],"ragchunkpagespandict (class in genai.types)":[[0,"genai.types.RagChunkPageSpanDict",false]],"ragretrievalconfigdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigDict",false]],"ragretrievalconfigfilterdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigFilterDict",false]],"ragretrievalconfighybridsearchdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigHybridSearchDict",false]],"ragretrievalconfigrankingdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigRankingDict",false]],"ragretrievalconfigrankingllmrankerdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigRankingLlmRankerDict",false]],"ragretrievalconfigrankingrankservicedict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigRankingRankServiceDict",false]],"rai_filtered_reason (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.rai_filtered_reason",false]],"rai_filtered_reason (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.rai_filtered_reason",false]],"rai_media_filtered_count (genai.types.generatevideosresponse attribute)":[[0,"genai.types.GenerateVideosResponse.rai_media_filtered_count",false]],"rai_media_filtered_count (genai.types.generatevideosresponsedict attribute)":[[0,"genai.types.GenerateVideosResponseDict.rai_media_filtered_count",false]],"rai_media_filtered_reasons (genai.types.generatevideosresponse attribute)":[[0,"genai.types.GenerateVideosResponse.rai_media_filtered_reasons",false]],"rai_media_filtered_reasons (genai.types.generatevideosresponsedict attribute)":[[0,"genai.types.GenerateVideosResponseDict.rai_media_filtered_reasons",false]],"rank_service (genai.types.ragretrievalconfigranking attribute)":[[0,"genai.types.RagRetrievalConfigRanking.rank_service",false]],"rank_service (genai.types.ragretrievalconfigrankingdict attribute)":[[0,"genai.types.RagRetrievalConfigRankingDict.rank_service",false]],"ranking (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.ranking",false]],"ranking (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.ranking",false]],"raw_output (genai.types.rawoutput attribute)":[[0,"genai.types.RawOutput.raw_output",false]],"raw_output (genai.types.rawoutputdict attribute)":[[0,"genai.types.RawOutputDict.raw_output",false]],"raw_outputs (genai.types.customoutput attribute)":[[0,"genai.types.CustomOutput.raw_outputs",false]],"raw_outputs (genai.types.customoutputdict attribute)":[[0,"genai.types.CustomOutputDict.raw_outputs",false]],"rawoutputdict (class in genai.types)":[[0,"genai.types.RawOutputDict",false]],"rawreferenceimagedict (class in genai.types)":[[0,"genai.types.RawReferenceImageDict",false]],"realtime_input (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.realtime_input",false]],"realtime_input (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.realtime_input",false]],"realtime_input_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.realtime_input_config",false]],"realtime_input_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.realtime_input_config",false]],"realtimeinputconfigdict (class in genai.types)":[[0,"genai.types.RealtimeInputConfigDict",false]],"receive() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.receive",false]],"recitation (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.RECITATION",false]],"recontext_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.recontext_image",false]],"recontext_image() (genai.models.models method)":[[0,"genai.models.Models.recontext_image",false]],"recontextimageconfigdict (class in genai.types)":[[0,"genai.types.RecontextImageConfigDict",false]],"recontextimageresponsedict (class in genai.types)":[[0,"genai.types.RecontextImageResponseDict",false]],"recontextimagesourcedict (class in genai.types)":[[0,"genai.types.RecontextImageSourceDict",false]],"ref (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.ref",false]],"ref (genai.types.schema attribute)":[[0,"genai.types.Schema.ref",false]],"ref (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.ref",false]],"reference_id (genai.types.contentreferenceimage attribute)":[[0,"genai.types.ContentReferenceImage.reference_id",false]],"reference_id (genai.types.contentreferenceimagedict attribute)":[[0,"genai.types.ContentReferenceImageDict.reference_id",false]],"reference_id (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.reference_id",false]],"reference_id (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.reference_id",false]],"reference_id (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.reference_id",false]],"reference_id (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.reference_id",false]],"reference_id (genai.types.rawreferenceimage attribute)":[[0,"genai.types.RawReferenceImage.reference_id",false]],"reference_id (genai.types.rawreferenceimagedict attribute)":[[0,"genai.types.RawReferenceImageDict.reference_id",false]],"reference_id (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.reference_id",false]],"reference_id (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.reference_id",false]],"reference_id (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.reference_id",false]],"reference_id (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.reference_id",false]],"reference_image (genai.types.contentreferenceimage attribute)":[[0,"genai.types.ContentReferenceImage.reference_image",false]],"reference_image (genai.types.contentreferenceimagedict attribute)":[[0,"genai.types.ContentReferenceImageDict.reference_image",false]],"reference_image (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.reference_image",false]],"reference_image (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.reference_image",false]],"reference_image (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.reference_image",false]],"reference_image (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.reference_image",false]],"reference_image (genai.types.rawreferenceimage attribute)":[[0,"genai.types.RawReferenceImage.reference_image",false]],"reference_image (genai.types.rawreferenceimagedict attribute)":[[0,"genai.types.RawReferenceImageDict.reference_image",false]],"reference_image (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.reference_image",false]],"reference_image (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.reference_image",false]],"reference_image (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.reference_image",false]],"reference_image (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.reference_image",false]],"reference_images (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.reference_images",false]],"reference_images (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.reference_images",false]],"reference_type (genai.types.contentreferenceimage attribute)":[[0,"genai.types.ContentReferenceImage.reference_type",false]],"reference_type (genai.types.contentreferenceimagedict attribute)":[[0,"genai.types.ContentReferenceImageDict.reference_type",false]],"reference_type (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.reference_type",false]],"reference_type (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.reference_type",false]],"reference_type (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.reference_type",false]],"reference_type (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.reference_type",false]],"reference_type (genai.types.rawreferenceimage attribute)":[[0,"genai.types.RawReferenceImage.reference_type",false]],"reference_type (genai.types.rawreferenceimagedict attribute)":[[0,"genai.types.RawReferenceImageDict.reference_type",false]],"reference_type (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.reference_type",false]],"reference_type (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.reference_type",false]],"reference_type (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.reference_type",false]],"reference_type (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.reference_type",false]],"reference_type (genai.types.videogenerationreferenceimage attribute)":[[0,"genai.types.VideoGenerationReferenceImage.reference_type",false]],"reference_type (genai.types.videogenerationreferenceimagedict attribute)":[[0,"genai.types.VideoGenerationReferenceImageDict.reference_type",false]],"references (genai.types.reinforcementtuningexample attribute)":[[0,"genai.types.ReinforcementTuningExample.references",false]],"references (genai.types.reinforcementtuningexampledict attribute)":[[0,"genai.types.ReinforcementTuningExampleDict.references",false]],"regex_contains (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.REGEX_CONTAINS",false]],"regex_extract (genai.types.responseparsetype attribute)":[[0,"genai.types.ResponseParseType.REGEX_EXTRACT",false]],"regex_extract_expression (genai.types.reinforcementtuningparseresponseconfig attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfig.regex_extract_expression",false]],"regex_extract_expression (genai.types.reinforcementtuningparseresponseconfigdict attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfigDict.regex_extract_expression",false]],"registered (genai.types.filesource attribute)":[[0,"genai.types.FileSource.REGISTERED",false]],"registerfilesconfigdict (class in genai.types)":[[0,"genai.types.RegisterFilesConfigDict",false]],"registerfilesresponsedict (class in genai.types)":[[0,"genai.types.RegisterFilesResponseDict",false]],"regular (genai.types.tuningspeed attribute)":[[0,"genai.types.TuningSpeed.REGULAR",false]],"reinforcement_tuning (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.REINFORCEMENT_TUNING",false]],"reinforcement_tuning_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.reinforcement_tuning_data_stats",false]],"reinforcement_tuning_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.reinforcement_tuning_data_stats",false]],"reinforcement_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.reinforcement_tuning_spec",false]],"reinforcement_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.reinforcement_tuning_spec",false]],"reinforcement_tuning_thinking_level_unspecified (genai.types.reinforcementtuningthinkinglevel attribute)":[[0,"genai.types.ReinforcementTuningThinkingLevel.REINFORCEMENT_TUNING_THINKING_LEVEL_UNSPECIFIED",false]],"reinforcement_tuning_user_dataset_examples (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.reinforcement_tuning_user_dataset_examples",false]],"reinforcement_tuning_user_dataset_examples (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.reinforcement_tuning_user_dataset_examples",false]],"reinforcementtuningautoraterscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict",false]],"reinforcementtuningautoraterscorerexactmatchscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict",false]],"reinforcementtuningautoraterscorerparsedresponseconversionscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningAutoraterScorerParsedResponseConversionScorerDict",false]],"reinforcementtuningcloudrunrewardscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningCloudRunRewardScorerDict",false]],"reinforcementtuningcodeexecutionrewardscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningCodeExecutionRewardScorerDict",false]],"reinforcementtuningexampledict (class in genai.types)":[[0,"genai.types.ReinforcementTuningExampleDict",false]],"reinforcementtuninghyperparametersdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningHyperParametersDict",false]],"reinforcementtuningparseresponseconfigdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningParseResponseConfigDict",false]],"reinforcementtuningrewardinfodict (class in genai.types)":[[0,"genai.types.ReinforcementTuningRewardInfoDict",false]],"reinforcementtuningspecdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningSpecDict",false]],"reinforcementtuningstringmatchrewardscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict",false]],"reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict (class in genai.types)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict",false]],"reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict (class in genai.types)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict",false]],"reinforcementtuningthinkinglevel (class in genai.types)":[[0,"genai.types.ReinforcementTuningThinkingLevel",false]],"reinforcementtuninguserdatasetexamplesdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningUserDatasetExamplesDict",false]],"relative_publish_time_description (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.relative_publish_time_description",false]],"relative_publish_time_description (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.relative_publish_time_description",false]],"remove (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.REMOVE",false]],"remove_static (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.REMOVE_STATIC",false]],"rendered_content (genai.types.searchentrypoint attribute)":[[0,"genai.types.SearchEntryPoint.rendered_content",false]],"rendered_content (genai.types.searchentrypointdict attribute)":[[0,"genai.types.SearchEntryPointDict.rendered_content",false]],"rendered_parts (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.rendered_parts",false]],"rendered_parts (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.rendered_parts",false]],"replay_id (genai.client.debugconfig attribute)":[[0,"genai.client.DebugConfig.replay_id",false]],"replay_id (genai.types.replayfile attribute)":[[0,"genai.types.ReplayFile.replay_id",false]],"replay_id (genai.types.replayfiledict attribute)":[[0,"genai.types.ReplayFileDict.replay_id",false]],"replayfiledict (class in genai.types)":[[0,"genai.types.ReplayFileDict",false]],"replayinteractiondict (class in genai.types)":[[0,"genai.types.ReplayInteractionDict",false]],"replayrequestdict (class in genai.types)":[[0,"genai.types.ReplayRequestDict",false]],"replayresponsedict (class in genai.types)":[[0,"genai.types.ReplayResponseDict",false]],"replays_directory (genai.client.debugconfig attribute)":[[0,"genai.client.DebugConfig.replays_directory",false]],"replicated_voice_config (genai.types.voiceconfig attribute)":[[0,"genai.types.VoiceConfig.replicated_voice_config",false]],"replicated_voice_config (genai.types.voiceconfigdict attribute)":[[0,"genai.types.VoiceConfigDict.replicated_voice_config",false]],"replicatedvoiceconfigdict (class in genai.types)":[[0,"genai.types.ReplicatedVoiceConfigDict",false]],"request (genai.types.replayinteraction attribute)":[[0,"genai.types.ReplayInteraction.request",false]],"request (genai.types.replayinteractiondict attribute)":[[0,"genai.types.ReplayInteractionDict.request",false]],"required (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.required",false]],"required (genai.types.schema attribute)":[[0,"genai.types.Schema.required",false]],"required (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.required",false]],"reset_context (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.RESET_CONTEXT",false]],"resize_mode (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.resize_mode",false]],"resize_mode (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.resize_mode",false]],"resolution (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.resolution",false]],"resolution (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.resolution",false]],"resourcescope (class in genai.types)":[[0,"genai.types.ResourceScope",false]],"response (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.response",false]],"response (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.response",false]],"response (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.response",false]],"response (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.response",false]],"response (genai.types.generatevideosoperation attribute)":[[0,"genai.types.GenerateVideosOperation.response",false]],"response (genai.types.importfileoperation attribute)":[[0,"genai.types.ImportFileOperation.response",false]],"response (genai.types.inlinedembedcontentresponse attribute)":[[0,"genai.types.InlinedEmbedContentResponse.response",false]],"response (genai.types.inlinedembedcontentresponsedict attribute)":[[0,"genai.types.InlinedEmbedContentResponseDict.response",false]],"response (genai.types.inlinedresponse attribute)":[[0,"genai.types.InlinedResponse.response",false]],"response (genai.types.inlinedresponsedict attribute)":[[0,"genai.types.InlinedResponseDict.response",false]],"response (genai.types.replayinteraction attribute)":[[0,"genai.types.ReplayInteraction.response",false]],"response (genai.types.replayinteractiondict attribute)":[[0,"genai.types.ReplayInteractionDict.response",false]],"response (genai.types.toolresponse attribute)":[[0,"genai.types.ToolResponse.response",false]],"response (genai.types.toolresponsedict attribute)":[[0,"genai.types.ToolResponseDict.response",false]],"response (genai.types.uploadtofilesearchstoreoperation attribute)":[[0,"genai.types.UploadToFileSearchStoreOperation.response",false]],"response_format (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_format",false]],"response_format (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_format",false]],"response_id (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.response_id",false]],"response_id (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.response_id",false]],"response_json_schema (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.response_json_schema",false]],"response_json_schema (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.response_json_schema",false]],"response_json_schema (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_json_schema",false]],"response_json_schema (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_json_schema",false]],"response_json_schema (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_json_schema",false]],"response_json_schema (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_json_schema",false]],"response_logprobs (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_logprobs",false]],"response_logprobs (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_logprobs",false]],"response_logprobs (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_logprobs",false]],"response_logprobs (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_logprobs",false]],"response_mime_type (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_mime_type",false]],"response_mime_type (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_mime_type",false]],"response_mime_type (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_mime_type",false]],"response_mime_type (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_mime_type",false]],"response_modalities (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_modalities",false]],"response_modalities (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_modalities",false]],"response_modalities (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_modalities",false]],"response_modalities (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_modalities",false]],"response_modalities (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.response_modalities",false]],"response_modalities (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.response_modalities",false]],"response_parse_type_unspecified (genai.types.responseparsetype attribute)":[[0,"genai.types.ResponseParseType.RESPONSE_PARSE_TYPE_UNSPECIFIED",false]],"response_rejected (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.RESPONSE_REJECTED",false]],"response_schema (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_schema",false]],"response_schema (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_schema",false]],"response_schema (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_schema",false]],"response_schema (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_schema",false]],"response_template_name (genai.types.modelarmorconfig attribute)":[[0,"genai.types.ModelArmorConfig.response_template_name",false]],"response_template_name (genai.types.modelarmorconfigdict attribute)":[[0,"genai.types.ModelArmorConfigDict.response_template_name",false]],"response_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.response_token_count",false]],"response_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.response_token_count",false]],"response_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.response_tokens_details",false]],"response_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.response_tokens_details",false]],"responseformatdict (class in genai.types)":[[0,"genai.types.ResponseFormatDict",false]],"responseparsetype (class in genai.types)":[[0,"genai.types.ResponseParseType",false]],"result (genai.types.generatevideosoperation attribute)":[[0,"genai.types.GenerateVideosOperation.result",false]],"result_parser_config (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.result_parser_config",false]],"result_parser_config (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.result_parser_config",false]],"resumable (genai.types.liveserversessionresumptionupdate attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdate.resumable",false]],"resumable (genai.types.liveserversessionresumptionupdatedict attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict.resumable",false]],"retired (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.RETIRED",false]],"retirement_time (genai.types.modelstatus attribute)":[[0,"genai.types.ModelStatus.retirement_time",false]],"retirement_time (genai.types.modelstatusdict attribute)":[[0,"genai.types.ModelStatusDict.retirement_time",false]],"retrieval (genai.types.tool attribute)":[[0,"genai.types.Tool.retrieval",false]],"retrieval (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.retrieval",false]],"retrieval_config (genai.types.toolconfig attribute)":[[0,"genai.types.ToolConfig.retrieval_config",false]],"retrieval_config (genai.types.toolconfigdict attribute)":[[0,"genai.types.ToolConfigDict.retrieval_config",false]],"retrieval_metadata (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.retrieval_metadata",false]],"retrieval_metadata (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.retrieval_metadata",false]],"retrieval_queries (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.retrieval_queries",false]],"retrieval_queries (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.retrieval_queries",false]],"retrievalconfigdict (class in genai.types)":[[0,"genai.types.RetrievalConfigDict",false]],"retrievaldict (class in genai.types)":[[0,"genai.types.RetrievalDict",false]],"retrievalmetadatadict (class in genai.types)":[[0,"genai.types.RetrievalMetadataDict",false]],"retrieved_context (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.retrieved_context",false]],"retrieved_context (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.retrieved_context",false]],"retrieved_url (genai.types.urlmetadata attribute)":[[0,"genai.types.UrlMetadata.retrieved_url",false]],"retrieved_url (genai.types.urlmetadatadict attribute)":[[0,"genai.types.UrlMetadataDict.retrieved_url",false]],"retry_options (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.retry_options",false]],"retry_options (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.retry_options",false]],"return_raw_output (genai.types.customoutputformatconfig attribute)":[[0,"genai.types.CustomOutputFormatConfig.return_raw_output",false]],"return_raw_output (genai.types.customoutputformatconfigdict attribute)":[[0,"genai.types.CustomOutputFormatConfigDict.return_raw_output",false]],"return_raw_output (genai.types.metric attribute)":[[0,"genai.types.Metric.return_raw_output",false]],"return_raw_output (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.return_raw_output",false]],"review (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.review",false]],"review (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.review",false]],"review_id (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.review_id",false]],"review_id (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.review_id",false]],"review_snippet (genai.types.groundingchunkmapsplaceanswersources attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSources.review_snippet",false]],"review_snippet (genai.types.groundingchunkmapsplaceanswersourcesdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict.review_snippet",false]],"review_snippets (genai.types.groundingchunkmapsplaceanswersources attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSources.review_snippets",false]],"review_snippets (genai.types.groundingchunkmapsplaceanswersourcesdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict.review_snippets",false]],"reward (genai.types.reinforcementtuningrewardinfo attribute)":[[0,"genai.types.ReinforcementTuningRewardInfo.reward",false]],"reward (genai.types.reinforcementtuningrewardinfodict attribute)":[[0,"genai.types.ReinforcementTuningRewardInfoDict.reward",false]],"reward_config (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfig attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfig.reward_config",false]],"reward_config (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfigdict attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict.reward_config",false]],"reward_config (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.reward_config",false]],"reward_config (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.reward_config",false]],"reward_info_details (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.reward_info_details",false]],"reward_info_details (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.reward_info_details",false]],"reward_name (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.reward_name",false]],"reward_name (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.reward_name",false]],"right (genai.types.datasetdistributiondistributionbucket attribute)":[[0,"genai.types.DatasetDistributionDistributionBucket.right",false]],"right (genai.types.datasetdistributiondistributionbucketdict attribute)":[[0,"genai.types.DatasetDistributionDistributionBucketDict.right",false]],"right (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucket.right",false]],"right (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.right",false]],"role (genai.types.content attribute)":[[0,"genai.types.Content.role",false]],"role (genai.types.contentdict attribute)":[[0,"genai.types.ContentDict.role",false]],"role (genai.types.modelcontent attribute)":[[0,"genai.types.ModelContent.role",false]],"role (genai.types.tokensinfo attribute)":[[0,"genai.types.TokensInfo.role",false]],"role (genai.types.tokensinfodict attribute)":[[0,"genai.types.TokensInfoDict.role",false]],"role (genai.types.usercontent attribute)":[[0,"genai.types.UserContent.role",false]],"rotate_signing_secret() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.rotate_signing_secret",false]],"rotate_signing_secret() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.rotate_signing_secret",false]],"rouge (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.ROUGE",false]],"rouge_metric_value (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.rouge_metric_value",false]],"rouge_metric_value (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.rouge_metric_value",false]],"rouge_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.rouge_spec",false]],"rouge_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.rouge_spec",false]],"rouge_type (genai.types.rougespec attribute)":[[0,"genai.types.RougeSpec.rouge_type",false]],"rouge_type (genai.types.rougespecdict attribute)":[[0,"genai.types.RougeSpecDict.rouge_type",false]],"rougemetricvaluedict (class in genai.types)":[[0,"genai.types.RougeMetricValueDict",false]],"rougespecdict (class in genai.types)":[[0,"genai.types.RougeSpecDict",false]],"route (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.route",false]],"route (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.route",false]],"routing (genai.types.googlemapsgroundingtypes attribute)":[[0,"genai.types.GoogleMapsGroundingTypes.routing",false]],"routing (genai.types.googlemapsgroundingtypesdict attribute)":[[0,"genai.types.GoogleMapsGroundingTypesDict.routing",false]],"routing_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.routing_config",false]],"routing_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.routing_config",false]],"routing_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.routing_config",false]],"routing_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.routing_config",false]],"rubric_content_type (genai.types.rubricgenerationspec attribute)":[[0,"genai.types.RubricGenerationSpec.rubric_content_type",false]],"rubric_content_type (genai.types.rubricgenerationspecdict attribute)":[[0,"genai.types.RubricGenerationSpecDict.rubric_content_type",false]],"rubric_content_type_unspecified (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.RUBRIC_CONTENT_TYPE_UNSPECIFIED",false]],"rubric_generation_spec (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.rubric_generation_spec",false]],"rubric_generation_spec (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.rubric_generation_spec",false]],"rubric_group_key (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.rubric_group_key",false]],"rubric_group_key (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.rubric_group_key",false]],"rubric_type_ontology (genai.types.rubricgenerationspec attribute)":[[0,"genai.types.RubricGenerationSpec.rubric_type_ontology",false]],"rubric_type_ontology (genai.types.rubricgenerationspecdict attribute)":[[0,"genai.types.RubricGenerationSpecDict.rubric_type_ontology",false]],"rubriccontenttype (class in genai.types)":[[0,"genai.types.RubricContentType",false]],"rubricgenerationspecdict (class in genai.types)":[[0,"genai.types.RubricGenerationSpecDict",false]],"run() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.run",false]],"run() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.run",false]],"safety (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.SAFETY",false]],"safety (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.SAFETY",false]],"safety_attributes (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.safety_attributes",false]],"safety_attributes (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.safety_attributes",false]],"safety_filter_level (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.safety_filter_level",false]],"safety_filter_level (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.safety_filter_level",false]],"safety_filter_level (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.safety_filter_level",false]],"safety_filter_level (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.safety_filter_level",false]],"safety_filter_level (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.safety_filter_level",false]],"safety_filter_level (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.safety_filter_level",false]],"safety_filter_level (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.safety_filter_level",false]],"safety_filter_level (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.safety_filter_level",false]],"safety_policy_unspecified (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.SAFETY_POLICY_UNSPECIFIED",false]],"safety_ratings (genai.types.candidate attribute)":[[0,"genai.types.Candidate.safety_ratings",false]],"safety_ratings (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.safety_ratings",false]],"safety_ratings (genai.types.generatecontentresponsepromptfeedback attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedback.safety_ratings",false]],"safety_ratings (genai.types.generatecontentresponsepromptfeedbackdict attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict.safety_ratings",false]],"safety_settings (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.safety_settings",false]],"safety_settings (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.safety_settings",false]],"safety_settings (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.safety_settings",false]],"safety_settings (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.safety_settings",false]],"safety_settings (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.safety_settings",false]],"safety_settings (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.safety_settings",false]],"safetyattributesdict (class in genai.types)":[[0,"genai.types.SafetyAttributesDict",false]],"safetyfilterlevel (class in genai.types)":[[0,"genai.types.SafetyFilterLevel",false]],"safetypolicy (class in genai.types)":[[0,"genai.types.SafetyPolicy",false]],"safetyratingdict (class in genai.types)":[[0,"genai.types.SafetyRatingDict",false]],"safetysettingdict (class in genai.types)":[[0,"genai.types.SafetySettingDict",false]],"sample_rate (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.sample_rate",false]],"sample_rate (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.sample_rate",false]],"samples_per_prompt (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.samples_per_prompt",false]],"samples_per_prompt (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.samples_per_prompt",false]],"samples_per_prompt (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.samples_per_prompt",false]],"samples_per_prompt (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.samples_per_prompt",false]],"sampling_count (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.sampling_count",false]],"sampling_count (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.sampling_count",false]],"save() (genai.types.image method)":[[0,"genai.types.Image.save",false]],"save() (genai.types.video method)":[[0,"genai.types.Video.save",false]],"scale (class in genai.types)":[[0,"genai.types.Scale",false]],"scale (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.scale",false]],"scale (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.scale",false]],"scale_unspecified (genai.types.scale attribute)":[[0,"genai.types.Scale.SCALE_UNSPECIFIED",false]],"scheduling (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.scheduling",false]],"scheduling (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.scheduling",false]],"scheduling_unspecified (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.SCHEDULING_UNSPECIFIED",false]],"schema (genai.types.textresponseformatdict attribute)":[[0,"genai.types.TextResponseFormatDict.schema",false]],"schemadict (class in genai.types)":[[0,"genai.types.SchemaDict",false]],"score (genai.types.bleumetricvalue attribute)":[[0,"genai.types.BleuMetricValue.score",false]],"score (genai.types.bleumetricvaluedict attribute)":[[0,"genai.types.BleuMetricValueDict.score",false]],"score (genai.types.customcodeexecutionresult attribute)":[[0,"genai.types.CustomCodeExecutionResult.score",false]],"score (genai.types.customcodeexecutionresultdict attribute)":[[0,"genai.types.CustomCodeExecutionResultDict.score",false]],"score (genai.types.entitylabel attribute)":[[0,"genai.types.EntityLabel.score",false]],"score (genai.types.entitylabeldict attribute)":[[0,"genai.types.EntityLabelDict.score",false]],"score (genai.types.exactmatchmetricvalue attribute)":[[0,"genai.types.ExactMatchMetricValue.score",false]],"score (genai.types.exactmatchmetricvaluedict attribute)":[[0,"genai.types.ExactMatchMetricValueDict.score",false]],"score (genai.types.geminipreferenceexamplecompletion attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletion.score",false]],"score (genai.types.geminipreferenceexamplecompletiondict attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletionDict.score",false]],"score (genai.types.pointwisemetricresult attribute)":[[0,"genai.types.PointwiseMetricResult.score",false]],"score (genai.types.pointwisemetricresultdict attribute)":[[0,"genai.types.PointwiseMetricResultDict.score",false]],"score (genai.types.rougemetricvalue attribute)":[[0,"genai.types.RougeMetricValue.score",false]],"score (genai.types.rougemetricvaluedict attribute)":[[0,"genai.types.RougeMetricValueDict.score",false]],"score_variance_per_example_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.score_variance_per_example_distribution",false]],"score_variance_per_example_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.score_variance_per_example_distribution",false]],"scores (genai.types.safetyattributes attribute)":[[0,"genai.types.SafetyAttributes.scores",false]],"scores (genai.types.safetyattributesdict attribute)":[[0,"genai.types.SafetyAttributesDict.scores",false]],"scores_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.scores_distribution",false]],"scores_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.scores_distribution",false]],"scribble_image (genai.types.segmentimagesource attribute)":[[0,"genai.types.SegmentImageSource.scribble_image",false]],"scribble_image (genai.types.segmentimagesourcedict attribute)":[[0,"genai.types.SegmentImageSourceDict.scribble_image",false]],"scribbleimagedict (class in genai.types)":[[0,"genai.types.ScribbleImageDict",false]],"sdk_blob (genai.types.searchentrypoint attribute)":[[0,"genai.types.SearchEntryPoint.sdk_blob",false]],"sdk_blob (genai.types.searchentrypointdict attribute)":[[0,"genai.types.SearchEntryPointDict.sdk_blob",false]],"sdk_http_response (genai.types.canceltuningjobresponse attribute)":[[0,"genai.types.CancelTuningJobResponse.sdk_http_response",false]],"sdk_http_response (genai.types.canceltuningjobresponsedict attribute)":[[0,"genai.types.CancelTuningJobResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.computetokensresponse attribute)":[[0,"genai.types.ComputeTokensResponse.sdk_http_response",false]],"sdk_http_response (genai.types.computetokensresponsedict attribute)":[[0,"genai.types.ComputeTokensResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.counttokensresponse attribute)":[[0,"genai.types.CountTokensResponse.sdk_http_response",false]],"sdk_http_response (genai.types.counttokensresponsedict attribute)":[[0,"genai.types.CountTokensResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.createfileresponse attribute)":[[0,"genai.types.CreateFileResponse.sdk_http_response",false]],"sdk_http_response (genai.types.createfileresponsedict attribute)":[[0,"genai.types.CreateFileResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deletecachedcontentresponse attribute)":[[0,"genai.types.DeleteCachedContentResponse.sdk_http_response",false]],"sdk_http_response (genai.types.deletecachedcontentresponsedict attribute)":[[0,"genai.types.DeleteCachedContentResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deletefileresponse attribute)":[[0,"genai.types.DeleteFileResponse.sdk_http_response",false]],"sdk_http_response (genai.types.deletefileresponsedict attribute)":[[0,"genai.types.DeleteFileResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deletemodelresponse attribute)":[[0,"genai.types.DeleteModelResponse.sdk_http_response",false]],"sdk_http_response (genai.types.deletemodelresponsedict attribute)":[[0,"genai.types.DeleteModelResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.sdk_http_response",false]],"sdk_http_response (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.sdk_http_response",false]],"sdk_http_response (genai.types.editimageresponse attribute)":[[0,"genai.types.EditImageResponse.sdk_http_response",false]],"sdk_http_response (genai.types.editimageresponsedict attribute)":[[0,"genai.types.EditImageResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.embedcontentresponse attribute)":[[0,"genai.types.EmbedContentResponse.sdk_http_response",false]],"sdk_http_response (genai.types.embedcontentresponsedict attribute)":[[0,"genai.types.EmbedContentResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.sdk_http_response",false]],"sdk_http_response (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.generateimagesresponse attribute)":[[0,"genai.types.GenerateImagesResponse.sdk_http_response",false]],"sdk_http_response (genai.types.generateimagesresponsedict attribute)":[[0,"genai.types.GenerateImagesResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.importfileresponse attribute)":[[0,"genai.types.ImportFileResponse.sdk_http_response",false]],"sdk_http_response (genai.types.importfileresponsedict attribute)":[[0,"genai.types.ImportFileResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listbatchjobsresponse attribute)":[[0,"genai.types.ListBatchJobsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listbatchjobsresponsedict attribute)":[[0,"genai.types.ListBatchJobsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listcachedcontentsresponse attribute)":[[0,"genai.types.ListCachedContentsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listcachedcontentsresponsedict attribute)":[[0,"genai.types.ListCachedContentsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listdocumentsresponse attribute)":[[0,"genai.types.ListDocumentsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listdocumentsresponsedict attribute)":[[0,"genai.types.ListDocumentsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesearchstoresresponse attribute)":[[0,"genai.types.ListFileSearchStoresResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesearchstoresresponsedict attribute)":[[0,"genai.types.ListFileSearchStoresResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesresponse attribute)":[[0,"genai.types.ListFilesResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesresponsedict attribute)":[[0,"genai.types.ListFilesResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listmodelsresponse attribute)":[[0,"genai.types.ListModelsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listmodelsresponsedict attribute)":[[0,"genai.types.ListModelsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listtuningjobsresponse attribute)":[[0,"genai.types.ListTuningJobsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listtuningjobsresponsedict attribute)":[[0,"genai.types.ListTuningJobsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.registerfilesresponse attribute)":[[0,"genai.types.RegisterFilesResponse.sdk_http_response",false]],"sdk_http_response (genai.types.registerfilesresponsedict attribute)":[[0,"genai.types.RegisterFilesResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.sdk_http_response",false]],"sdk_http_response (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.sdk_http_response",false]],"sdk_http_response (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.sdk_http_response",false]],"sdk_http_response (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResponse.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresumableresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResumableResponse.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresumableresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResumableResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.upscaleimageresponse attribute)":[[0,"genai.types.UpscaleImageResponse.sdk_http_response",false]],"sdk_http_response (genai.types.upscaleimageresponsedict attribute)":[[0,"genai.types.UpscaleImageResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.sdk_http_response",false]],"sdk_http_response (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.sdk_http_response",false]],"sdk_response_segments (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.sdk_response_segments",false]],"sdk_response_segments (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.sdk_response_segments",false]],"search_entry_point (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.search_entry_point",false]],"search_entry_point (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.search_entry_point",false]],"search_template (genai.types.externalapielasticsearchparams attribute)":[[0,"genai.types.ExternalApiElasticSearchParams.search_template",false]],"search_template (genai.types.externalapielasticsearchparamsdict attribute)":[[0,"genai.types.ExternalApiElasticSearchParamsDict.search_template",false]],"search_types (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.search_types",false]],"search_types (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.search_types",false]],"searchentrypointdict (class in genai.types)":[[0,"genai.types.SearchEntryPointDict",false]],"searchtypesdict (class in genai.types)":[[0,"genai.types.SearchTypesDict",false]],"seed (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.seed",false]],"seed (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.seed",false]],"seed (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.seed",false]],"seed (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.seed",false]],"seed (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.seed",false]],"seed (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.seed",false]],"seed (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.seed",false]],"seed (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.seed",false]],"seed (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.seed",false]],"seed (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.seed",false]],"seed (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.seed",false]],"seed (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.seed",false]],"seed (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.seed",false]],"seed (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.seed",false]],"seed (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.seed",false]],"seed (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.seed",false]],"segment (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.segment",false]],"segment (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.segment",false]],"segment_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.segment_image",false]],"segment_image() (genai.models.models method)":[[0,"genai.models.Models.segment_image",false]],"segmentation_classes (genai.types.maskreferenceconfig attribute)":[[0,"genai.types.MaskReferenceConfig.segmentation_classes",false]],"segmentation_classes (genai.types.maskreferenceconfigdict attribute)":[[0,"genai.types.MaskReferenceConfigDict.segmentation_classes",false]],"segmentdict (class in genai.types)":[[0,"genai.types.SegmentDict",false]],"segmentimageconfigdict (class in genai.types)":[[0,"genai.types.SegmentImageConfigDict",false]],"segmentimageresponsedict (class in genai.types)":[[0,"genai.types.SegmentImageResponseDict",false]],"segmentimagesourcedict (class in genai.types)":[[0,"genai.types.SegmentImageSourceDict",false]],"segmentmode (class in genai.types)":[[0,"genai.types.SegmentMode",false]],"semantic (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.SEMANTIC",false]],"send() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send",false]],"send_client_content() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send_client_content",false]],"send_realtime_input() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send_realtime_input",false]],"send_tool_response() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send_tool_response",false]],"sensitive_data_modification (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.SENSITIVE_DATA_MODIFICATION",false]],"server_content (genai.types.livemusicservermessage attribute)":[[0,"genai.types.LiveMusicServerMessage.server_content",false]],"server_content (genai.types.livemusicservermessagedict attribute)":[[0,"genai.types.LiveMusicServerMessageDict.server_content",false]],"server_content (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.server_content",false]],"server_content (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.server_content",false]],"service_account (genai.types.authconfiggoogleserviceaccountconfig attribute)":[[0,"genai.types.AuthConfigGoogleServiceAccountConfig.service_account",false]],"service_account (genai.types.authconfiggoogleserviceaccountconfigdict attribute)":[[0,"genai.types.AuthConfigGoogleServiceAccountConfigDict.service_account",false]],"service_account (genai.types.authconfigoauthconfig attribute)":[[0,"genai.types.AuthConfigOauthConfig.service_account",false]],"service_account (genai.types.authconfigoauthconfigdict attribute)":[[0,"genai.types.AuthConfigOauthConfigDict.service_account",false]],"service_account (genai.types.authconfigoidcconfig attribute)":[[0,"genai.types.AuthConfigOidcConfig.service_account",false]],"service_account (genai.types.authconfigoidcconfigdict attribute)":[[0,"genai.types.AuthConfigOidcConfigDict.service_account",false]],"service_account (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.service_account",false]],"service_account (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.service_account",false]],"service_tier (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.service_tier",false]],"service_tier (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.service_tier",false]],"service_tier (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.service_tier",false]],"service_tier (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.service_tier",false]],"servicetier (class in genai.types)":[[0,"genai.types.ServiceTier",false]],"session_id (genai.types.liveserversetupcomplete attribute)":[[0,"genai.types.LiveServerSetupComplete.session_id",false]],"session_id (genai.types.liveserversetupcompletedict attribute)":[[0,"genai.types.LiveServerSetupCompleteDict.session_id",false]],"session_resumption (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.session_resumption",false]],"session_resumption (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.session_resumption",false]],"session_resumption (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.session_resumption",false]],"session_resumption (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.session_resumption",false]],"session_resumption_update (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.session_resumption_update",false]],"session_resumption_update (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.session_resumption_update",false]],"sessionresumptionconfigdict (class in genai.types)":[[0,"genai.types.SessionResumptionConfigDict",false]],"setup (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.setup",false]],"setup (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.setup",false]],"setup (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.setup",false]],"setup (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.setup",false]],"setup_complete (genai.types.livemusicservermessage attribute)":[[0,"genai.types.LiveMusicServerMessage.setup_complete",false]],"setup_complete (genai.types.livemusicservermessagedict attribute)":[[0,"genai.types.LiveMusicServerMessageDict.setup_complete",false]],"setup_complete (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.setup_complete",false]],"setup_complete (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.setup_complete",false]],"severity (genai.types.harmblockmethod attribute)":[[0,"genai.types.HarmBlockMethod.SEVERITY",false]],"severity (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.severity",false]],"severity (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.severity",false]],"severity_score (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.severity_score",false]],"severity_score (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.severity_score",false]],"sft_loss_weight_multiplier (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.sft_loss_weight_multiplier",false]],"sft_loss_weight_multiplier (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.sft_loss_weight_multiplier",false]],"sha256_hash (genai.types.file attribute)":[[0,"genai.types.File.sha256_hash",false]],"sha256_hash (genai.types.filedict attribute)":[[0,"genai.types.FileDict.sha256_hash",false]],"should_return_http_response (genai.types.createfileconfig attribute)":[[0,"genai.types.CreateFileConfig.should_return_http_response",false]],"should_return_http_response (genai.types.createfileconfigdict attribute)":[[0,"genai.types.CreateFileConfigDict.should_return_http_response",false]],"should_return_http_response (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.should_return_http_response",false]],"should_return_http_response (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.should_return_http_response",false]],"should_return_http_response (genai.types.registerfilesconfig attribute)":[[0,"genai.types.RegisterFilesConfig.should_return_http_response",false]],"should_return_http_response (genai.types.registerfilesconfigdict attribute)":[[0,"genai.types.RegisterFilesConfigDict.should_return_http_response",false]],"should_return_http_response (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.should_return_http_response",false]],"should_return_http_response (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.should_return_http_response",false]],"show() (genai.types.image method)":[[0,"genai.types.Image.show",false]],"show() (genai.types.video method)":[[0,"genai.types.Video.show",false]],"signature (genai.types.voiceconsentsignature attribute)":[[0,"genai.types.VoiceConsentSignature.signature",false]],"signature (genai.types.voiceconsentsignaturedict attribute)":[[0,"genai.types.VoiceConsentSignatureDict.signature",false]],"silence_duration_ms (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.silence_duration_ms",false]],"silence_duration_ms (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.silence_duration_ms",false]],"silent (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.SILENT",false]],"similarity_top_k (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.similarity_top_k",false]],"similarity_top_k (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.similarity_top_k",false]],"simple_search (genai.types.apispec attribute)":[[0,"genai.types.ApiSpec.SIMPLE_SEARCH",false]],"simple_search_params (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.simple_search_params",false]],"simple_search_params (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.simple_search_params",false]],"single_reward_config (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.single_reward_config",false]],"single_reward_config (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.single_reward_config",false]],"singleembedcontentresponsedict (class in genai.types)":[[0,"genai.types.SingleEmbedContentResponseDict",false]],"singlereinforcementtuningrewardconfigdict (class in genai.types)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict",false]],"size_bytes (genai.types.document attribute)":[[0,"genai.types.Document.size_bytes",false]],"size_bytes (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.size_bytes",false]],"size_bytes (genai.types.file attribute)":[[0,"genai.types.File.size_bytes",false]],"size_bytes (genai.types.filedict attribute)":[[0,"genai.types.FileDict.size_bytes",false]],"size_bytes (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.size_bytes",false]],"size_bytes (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.size_bytes",false]],"skip_in_api_mode (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.skip_in_api_mode",false]],"skip_in_api_mode (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.skip_in_api_mode",false]],"sliding_window (genai.types.contextwindowcompressionconfig attribute)":[[0,"genai.types.ContextWindowCompressionConfig.sliding_window",false]],"sliding_window (genai.types.contextwindowcompressionconfigdict attribute)":[[0,"genai.types.ContextWindowCompressionConfigDict.sliding_window",false]],"slidingwindowdict (class in genai.types)":[[0,"genai.types.SlidingWindowDict",false]],"source (genai.types.file attribute)":[[0,"genai.types.File.source",false]],"source (genai.types.filedict attribute)":[[0,"genai.types.FileDict.source",false]],"source_flagging_uris (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.source_flagging_uris",false]],"source_flagging_uris (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.source_flagging_uris",false]],"source_id (genai.types.groundingmetadatasourceflagginguri attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUri.source_id",false]],"source_id (genai.types.groundingmetadatasourceflagginguridict attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUriDict.source_id",false]],"source_metadata (genai.types.audiochunk attribute)":[[0,"genai.types.AudioChunk.source_metadata",false]],"source_metadata (genai.types.audiochunkdict attribute)":[[0,"genai.types.AudioChunkDict.source_metadata",false]],"source_unspecified (genai.types.filesource attribute)":[[0,"genai.types.FileSource.SOURCE_UNSPECIFIED",false]],"source_uri (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.source_uri",false]],"source_uri (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.source_uri",false]],"speaker (genai.types.speakervoiceconfig attribute)":[[0,"genai.types.SpeakerVoiceConfig.speaker",false]],"speaker (genai.types.speakervoiceconfigdict attribute)":[[0,"genai.types.SpeakerVoiceConfigDict.speaker",false]],"speaker_label (genai.types.transcription attribute)":[[0,"genai.types.Transcription.speaker_label",false]],"speaker_label (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.speaker_label",false]],"speaker_voice_configs (genai.types.multispeakervoiceconfig attribute)":[[0,"genai.types.MultiSpeakerVoiceConfig.speaker_voice_configs",false]],"speaker_voice_configs (genai.types.multispeakervoiceconfigdict attribute)":[[0,"genai.types.MultiSpeakerVoiceConfigDict.speaker_voice_configs",false]],"speakervoiceconfigdict (class in genai.types)":[[0,"genai.types.SpeakerVoiceConfigDict",false]],"speech_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.speech_config",false]],"speech_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.speech_config",false]],"speech_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.speech_config",false]],"speech_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.speech_config",false]],"speech_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.speech_config",false]],"speech_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.speech_config",false]],"speechconfigdict (class in genai.types)":[[0,"genai.types.SpeechConfigDict",false]],"spii (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.SPII",false]],"split_summaries (genai.types.rougespec attribute)":[[0,"genai.types.RougeSpec.split_summaries",false]],"split_summaries (genai.types.rougespecdict attribute)":[[0,"genai.types.RougeSpecDict.split_summaries",false]],"src (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.src",false]],"src (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.src",false]],"sse_read_timeout (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.sse_read_timeout",false]],"sse_read_timeout (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.sse_read_timeout",false]],"stable (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.STABLE",false]],"standard (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.STANDARD",false]],"standard_deviation (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.STANDARD_DEVIATION",false]],"start_index (genai.types.citation attribute)":[[0,"genai.types.Citation.start_index",false]],"start_index (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.start_index",false]],"start_index (genai.types.segment attribute)":[[0,"genai.types.Segment.start_index",false]],"start_index (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.start_index",false]],"start_of_activity_interrupts (genai.types.activityhandling attribute)":[[0,"genai.types.ActivityHandling.START_OF_ACTIVITY_INTERRUPTS",false]],"start_of_speech_sensitivity (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.start_of_speech_sensitivity",false]],"start_of_speech_sensitivity (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.start_of_speech_sensitivity",false]],"start_offset (genai.types.videometadata attribute)":[[0,"genai.types.VideoMetadata.start_offset",false]],"start_offset (genai.types.videometadatadict attribute)":[[0,"genai.types.VideoMetadataDict.start_offset",false]],"start_offset (genai.types.wordinfo attribute)":[[0,"genai.types.WordInfo.start_offset",false]],"start_offset (genai.types.wordinfodict attribute)":[[0,"genai.types.WordInfoDict.start_offset",false]],"start_sensitivity_high (genai.types.startsensitivity attribute)":[[0,"genai.types.StartSensitivity.START_SENSITIVITY_HIGH",false]],"start_sensitivity_low (genai.types.startsensitivity attribute)":[[0,"genai.types.StartSensitivity.START_SENSITIVITY_LOW",false]],"start_sensitivity_unspecified (genai.types.startsensitivity attribute)":[[0,"genai.types.StartSensitivity.START_SENSITIVITY_UNSPECIFIED",false]],"start_stream() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.start_stream",false]],"start_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.start_time",false]],"start_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.start_time",false]],"start_time (genai.types.interval attribute)":[[0,"genai.types.Interval.start_time",false]],"start_time (genai.types.intervaldict attribute)":[[0,"genai.types.IntervalDict.start_time",false]],"start_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.start_time",false]],"start_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.start_time",false]],"startsensitivity (class in genai.types)":[[0,"genai.types.StartSensitivity",false]],"state (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.state",false]],"state (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.state",false]],"state (genai.types.document attribute)":[[0,"genai.types.Document.state",false]],"state (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.state",false]],"state (genai.types.file attribute)":[[0,"genai.types.File.state",false]],"state (genai.types.filedict attribute)":[[0,"genai.types.FileDict.state",false]],"state (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.state",false]],"state (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.state",false]],"state_active (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_ACTIVE",false]],"state_failed (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_FAILED",false]],"state_pending (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_PENDING",false]],"state_unspecified (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_UNSPECIFIED",false]],"state_unspecified (genai.types.filestate attribute)":[[0,"genai.types.FileState.STATE_UNSPECIFIED",false]],"statistics (genai.types.contentembedding attribute)":[[0,"genai.types.ContentEmbedding.statistics",false]],"statistics (genai.types.contentembeddingdict attribute)":[[0,"genai.types.ContentEmbeddingDict.statistics",false]],"status_code (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.status_code",false]],"status_code (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.status_code",false]],"step (genai.types.checkpoint attribute)":[[0,"genai.types.Checkpoint.step",false]],"step (genai.types.checkpointdict attribute)":[[0,"genai.types.CheckpointDict.step",false]],"step (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.step",false]],"step (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.step",false]],"stop (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.STOP",false]],"stop (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.STOP",false]],"stop_sequences (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.stop_sequences",false]],"stop_sequences (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.stop_sequences",false]],"stop_sequences (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.stop_sequences",false]],"stop_sequences (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.stop_sequences",false]],"store_context (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.store_context",false]],"store_context (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.store_context",false]],"stream_function_call_arguments (genai.types.functioncallingconfig attribute)":[[0,"genai.types.FunctionCallingConfig.stream_function_call_arguments",false]],"stream_function_call_arguments (genai.types.functioncallingconfigdict attribute)":[[0,"genai.types.FunctionCallingConfigDict.stream_function_call_arguments",false]],"streamable_http_transport (genai.types.mcpserver attribute)":[[0,"genai.types.McpServer.streamable_http_transport",false]],"streamable_http_transport (genai.types.mcpserverdict attribute)":[[0,"genai.types.McpServerDict.streamable_http_transport",false]],"streamablehttptransportdict (class in genai.types)":[[0,"genai.types.StreamableHttpTransportDict",false]],"string (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.STRING",false]],"string (genai.types.type attribute)":[[0,"genai.types.Type.STRING",false]],"string_list_value (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.string_list_value",false]],"string_list_value (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.string_list_value",false]],"string_list_value (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.string_list_value",false]],"string_list_value (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.string_list_value",false]],"string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.string_match_expression",false]],"string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.string_match_expression",false]],"string_match_reward_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.string_match_reward_scorer",false]],"string_match_reward_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.string_match_reward_scorer",false]],"string_value (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.string_value",false]],"string_value (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.string_value",false]],"string_value (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.string_value",false]],"string_value (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.string_value",false]],"string_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.string_value",false]],"string_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.string_value",false]],"stringlistdict (class in genai.types)":[[0,"genai.types.StringListDict",false]],"student_model (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.student_model",false]],"student_model (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.student_model",false]],"style (genai.types.videogenerationreferencetype attribute)":[[0,"genai.types.VideoGenerationReferenceType.STYLE",false]],"style_description (genai.types.stylereferenceconfig attribute)":[[0,"genai.types.StyleReferenceConfig.style_description",false]],"style_description (genai.types.stylereferenceconfigdict attribute)":[[0,"genai.types.StyleReferenceConfigDict.style_description",false]],"style_image_config (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.style_image_config",false]],"stylereferenceconfigdict (class in genai.types)":[[0,"genai.types.StyleReferenceConfigDict",false]],"stylereferenceimagedict (class in genai.types)":[[0,"genai.types.StyleReferenceImageDict",false]],"subject_description (genai.types.subjectreferenceconfig attribute)":[[0,"genai.types.SubjectReferenceConfig.subject_description",false]],"subject_description (genai.types.subjectreferenceconfigdict attribute)":[[0,"genai.types.SubjectReferenceConfigDict.subject_description",false]],"subject_image_config (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.subject_image_config",false]],"subject_type (genai.types.subjectreferenceconfig attribute)":[[0,"genai.types.SubjectReferenceConfig.subject_type",false]],"subject_type (genai.types.subjectreferenceconfigdict attribute)":[[0,"genai.types.SubjectReferenceConfigDict.subject_type",false]],"subject_type_animal (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_ANIMAL",false]],"subject_type_default (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_DEFAULT",false]],"subject_type_person (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_PERSON",false]],"subject_type_product (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_PRODUCT",false]],"subjectreferenceconfigdict (class in genai.types)":[[0,"genai.types.SubjectReferenceConfigDict",false]],"subjectreferenceimagedict (class in genai.types)":[[0,"genai.types.SubjectReferenceImageDict",false]],"subjectreferencetype (class in genai.types)":[[0,"genai.types.SubjectReferenceType",false]],"successful_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.successful_count",false]],"successful_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.successful_count",false]],"successful_forecast_point_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.successful_forecast_point_count",false]],"successful_forecast_point_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.successful_forecast_point_count",false]],"sum (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.sum",false]],"sum (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.sum",false]],"sum (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.sum",false]],"sum (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.sum",false]],"supervised_fine_tuning (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.SUPERVISED_FINE_TUNING",false]],"supervised_tuning_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.supervised_tuning_data_stats",false]],"supervised_tuning_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.supervised_tuning_data_stats",false]],"supervised_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.supervised_tuning_spec",false]],"supervised_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.supervised_tuning_spec",false]],"supervisedhyperparametersdict (class in genai.types)":[[0,"genai.types.SupervisedHyperParametersDict",false]],"supervisedtuningdatasetdistributiondatasetbucketdict (class in genai.types)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict",false]],"supervisedtuningdatasetdistributiondict (class in genai.types)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict",false]],"supervisedtuningdatastatsdict (class in genai.types)":[[0,"genai.types.SupervisedTuningDataStatsDict",false]],"supervisedtuningspecdict (class in genai.types)":[[0,"genai.types.SupervisedTuningSpecDict",false]],"supported_actions (genai.types.model attribute)":[[0,"genai.types.Model.supported_actions",false]],"supported_actions (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.supported_actions",false]],"system_instruction (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.system_instruction",false]],"system_instruction (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.system_instruction",false]],"system_instruction (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.system_instruction",false]],"system_instruction (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.system_instruction",false]],"system_instruction (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.system_instruction",false]],"system_instruction (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.system_instruction",false]],"system_instruction (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.system_instruction",false]],"system_instruction (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.system_instruction",false]],"system_instruction (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.system_instruction",false]],"system_instruction (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.system_instruction",false]],"system_instruction (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.system_instruction",false]],"system_instruction (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.system_instruction",false]],"system_instruction (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.system_instruction",false]],"system_instruction (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.system_instruction",false]],"system_instruction (genai.types.pointwisemetricspec attribute)":[[0,"genai.types.PointwiseMetricSpec.system_instruction",false]],"system_instruction (genai.types.pointwisemetricspecdict attribute)":[[0,"genai.types.PointwiseMetricSpecDict.system_instruction",false]],"system_instruction (genai.types.reinforcementtuningexample attribute)":[[0,"genai.types.ReinforcementTuningExample.system_instruction",false]],"system_instruction (genai.types.reinforcementtuningexampledict attribute)":[[0,"genai.types.ReinforcementTuningExampleDict.system_instruction",false]],"target_language_code (genai.types.translationconfig attribute)":[[0,"genai.types.TranslationConfig.target_language_code",false]],"target_language_code (genai.types.translationconfigdict attribute)":[[0,"genai.types.TranslationConfigDict.target_language_code",false]],"target_tokens (genai.types.slidingwindow attribute)":[[0,"genai.types.SlidingWindow.target_tokens",false]],"target_tokens (genai.types.slidingwindowdict attribute)":[[0,"genai.types.SlidingWindowDict.target_tokens",false]],"task_type (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.task_type",false]],"task_type (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.task_type",false]],"temperature (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.temperature",false]],"temperature (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.temperature",false]],"temperature (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.temperature",false]],"temperature (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.temperature",false]],"temperature (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.temperature",false]],"temperature (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.temperature",false]],"temperature (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.temperature",false]],"temperature (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.temperature",false]],"temperature (genai.types.model attribute)":[[0,"genai.types.Model.temperature",false]],"temperature (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.temperature",false]],"terminate_on_close (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.terminate_on_close",false]],"terminate_on_close (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.terminate_on_close",false]],"test_method (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.test_method",false]],"test_method (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.test_method",false]],"test_table (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.test_table",false]],"test_table (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.test_table",false]],"testtablefiledict (class in genai.types)":[[0,"genai.types.TestTableFileDict",false]],"testtableitemdict (class in genai.types)":[[0,"genai.types.TestTableItemDict",false]],"text (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.text",false]],"text (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.text",false]],"text (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.text",false]],"text (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.text",false]],"text (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.text",false]],"text (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.text",false]],"text (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.text",false]],"text (genai.types.livemusicfilteredprompt attribute)":[[0,"genai.types.LiveMusicFilteredPrompt.text",false]],"text (genai.types.livemusicfilteredpromptdict attribute)":[[0,"genai.types.LiveMusicFilteredPromptDict.text",false]],"text (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.text",false]],"text (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.text",false]],"text (genai.types.liveservermessage property)":[[0,"genai.types.LiveServerMessage.text",false]],"text (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.TEXT",false]],"text (genai.types.modality attribute)":[[0,"genai.types.Modality.TEXT",false]],"text (genai.types.part attribute)":[[0,"genai.types.Part.text",false]],"text (genai.types.partdict attribute)":[[0,"genai.types.PartDict.text",false]],"text (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.text",false]],"text (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.text",false]],"text (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.text",false]],"text (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.text",false]],"text (genai.types.segment attribute)":[[0,"genai.types.Segment.text",false]],"text (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.text",false]],"text (genai.types.transcription attribute)":[[0,"genai.types.Transcription.text",false]],"text (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.text",false]],"text (genai.types.weightedprompt attribute)":[[0,"genai.types.WeightedPrompt.text",false]],"text (genai.types.weightedpromptdict attribute)":[[0,"genai.types.WeightedPromptDict.text",false]],"text_count (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.text_count",false]],"text_count (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.text_count",false]],"text_input (genai.types.tuningexample attribute)":[[0,"genai.types.TuningExample.text_input",false]],"text_input (genai.types.tuningexampledict attribute)":[[0,"genai.types.TuningExampleDict.text_input",false]],"textresponseformatdict (class in genai.types)":[[0,"genai.types.TextResponseFormatDict",false]],"thinking (genai.types.model attribute)":[[0,"genai.types.Model.thinking",false]],"thinking (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.thinking",false]],"thinking_budget (genai.types.generationconfigthinkingconfigdict attribute)":[[0,"genai.types.GenerationConfigThinkingConfigDict.thinking_budget",false]],"thinking_budget (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.thinking_budget",false]],"thinking_budget (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.thinking_budget",false]],"thinking_budget (genai.types.thinkingconfig attribute)":[[0,"genai.types.ThinkingConfig.thinking_budget",false]],"thinking_budget (genai.types.thinkingconfigdict attribute)":[[0,"genai.types.ThinkingConfigDict.thinking_budget",false]],"thinking_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.thinking_config",false]],"thinking_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.thinking_config",false]],"thinking_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.thinking_config",false]],"thinking_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.thinking_config",false]],"thinking_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.thinking_config",false]],"thinking_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.thinking_config",false]],"thinking_level (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.thinking_level",false]],"thinking_level (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.thinking_level",false]],"thinking_level (genai.types.generationconfigthinkingconfigdict attribute)":[[0,"genai.types.GenerationConfigThinkingConfigDict.thinking_level",false]],"thinking_level (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.thinking_level",false]],"thinking_level (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.thinking_level",false]],"thinking_level (genai.types.thinkingconfig attribute)":[[0,"genai.types.ThinkingConfig.thinking_level",false]],"thinking_level (genai.types.thinkingconfigdict attribute)":[[0,"genai.types.ThinkingConfigDict.thinking_level",false]],"thinking_level_unspecified (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.THINKING_LEVEL_UNSPECIFIED",false]],"thinkingconfigdict (class in genai.types)":[[0,"genai.types.ThinkingConfigDict",false]],"thinkinglevel (class in genai.types)":[[0,"genai.types.ThinkingLevel",false]],"thought (genai.types.part attribute)":[[0,"genai.types.Part.thought",false]],"thought (genai.types.partdict attribute)":[[0,"genai.types.PartDict.thought",false]],"thought_signature (genai.types.part attribute)":[[0,"genai.types.Part.thought_signature",false]],"thought_signature (genai.types.partdict attribute)":[[0,"genai.types.PartDict.thought_signature",false]],"thoughts_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.thoughts_token_count",false]],"thoughts_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.thoughts_token_count",false]],"thoughts_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.thoughts_token_count",false]],"thoughts_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.thoughts_token_count",false]],"threshold (genai.types.safetysetting attribute)":[[0,"genai.types.SafetySetting.threshold",false]],"threshold (genai.types.safetysettingdict attribute)":[[0,"genai.types.SafetySettingDict.threshold",false]],"tie (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.TIE",false]],"time_left (genai.types.liveservergoaway attribute)":[[0,"genai.types.LiveServerGoAway.time_left",false]],"time_left (genai.types.liveservergoawaydict attribute)":[[0,"genai.types.LiveServerGoAwayDict.time_left",false]],"time_range_filter (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.time_range_filter",false]],"time_range_filter (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.time_range_filter",false]],"timeout (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.timeout",false]],"timeout (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.timeout",false]],"timeout (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.timeout",false]],"timeout (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.timeout",false]],"title (genai.types.citation attribute)":[[0,"genai.types.Citation.title",false]],"title (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.title",false]],"title (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.title",false]],"title (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.title",false]],"title (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.title",false]],"title (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.title",false]],"title (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.title",false]],"title (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.title",false]],"title (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.title",false]],"title (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.title",false]],"title (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.title",false]],"title (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.title",false]],"title (genai.types.groundingchunkweb attribute)":[[0,"genai.types.GroundingChunkWeb.title",false]],"title (genai.types.groundingchunkwebdict attribute)":[[0,"genai.types.GroundingChunkWebDict.title",false]],"title (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.title",false]],"title (genai.types.schema attribute)":[[0,"genai.types.Schema.title",false]],"title (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.title",false]],"to_yaml_file() (genai.types.metric method)":[[0,"genai.types.Metric.to_yaml_file",false]],"token (genai.types.logprobsresultcandidate attribute)":[[0,"genai.types.LogprobsResultCandidate.token",false]],"token (genai.types.logprobsresultcandidatedict attribute)":[[0,"genai.types.LogprobsResultCandidateDict.token",false]],"token_count (genai.types.candidate attribute)":[[0,"genai.types.Candidate.token_count",false]],"token_count (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.token_count",false]],"token_count (genai.types.contentembeddingstatistics attribute)":[[0,"genai.types.ContentEmbeddingStatistics.token_count",false]],"token_count (genai.types.contentembeddingstatisticsdict attribute)":[[0,"genai.types.ContentEmbeddingStatisticsDict.token_count",false]],"token_count (genai.types.modalitytokencount attribute)":[[0,"genai.types.ModalityTokenCount.token_count",false]],"token_count (genai.types.modalitytokencountdict attribute)":[[0,"genai.types.ModalityTokenCountDict.token_count",false]],"token_count (genai.types.singleembedcontentresponse attribute)":[[0,"genai.types.SingleEmbedContentResponse.token_count",false]],"token_count (genai.types.singleembedcontentresponsedict attribute)":[[0,"genai.types.SingleEmbedContentResponseDict.token_count",false]],"token_id (genai.types.logprobsresultcandidate attribute)":[[0,"genai.types.LogprobsResultCandidate.token_id",false]],"token_id (genai.types.logprobsresultcandidatedict attribute)":[[0,"genai.types.LogprobsResultCandidateDict.token_id",false]],"token_ids (genai.types.tokensinfo attribute)":[[0,"genai.types.TokensInfo.token_ids",false]],"token_ids (genai.types.tokensinfodict attribute)":[[0,"genai.types.TokensInfoDict.token_ids",false]],"tokens (class in genai.tokens)":[[0,"genai.tokens.Tokens",false]],"tokens (genai.types.tokensinfo attribute)":[[0,"genai.types.TokensInfo.tokens",false]],"tokens (genai.types.tokensinfodict attribute)":[[0,"genai.types.TokensInfoDict.tokens",false]],"tokens_details (genai.types.contentembeddingstatistics attribute)":[[0,"genai.types.ContentEmbeddingStatistics.tokens_details",false]],"tokens_details (genai.types.contentembeddingstatisticsdict attribute)":[[0,"genai.types.ContentEmbeddingStatisticsDict.tokens_details",false]],"tokens_info (genai.types.computetokensresponse attribute)":[[0,"genai.types.ComputeTokensResponse.tokens_info",false]],"tokens_info (genai.types.computetokensresponsedict attribute)":[[0,"genai.types.ComputeTokensResponseDict.tokens_info",false]],"tokens_info (genai.types.computetokensresult attribute)":[[0,"genai.types.ComputeTokensResult.tokens_info",false]],"tokens_info (genai.types.computetokensresultdict attribute)":[[0,"genai.types.ComputeTokensResultDict.tokens_info",false]],"tokensinfodict (class in genai.types)":[[0,"genai.types.TokensInfoDict",false]],"tool_call (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.tool_call",false]],"tool_call (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.tool_call",false]],"tool_call (genai.types.part attribute)":[[0,"genai.types.Part.tool_call",false]],"tool_call (genai.types.partdict attribute)":[[0,"genai.types.PartDict.tool_call",false]],"tool_call_cancellation (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.tool_call_cancellation",false]],"tool_call_cancellation (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.tool_call_cancellation",false]],"tool_config (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.tool_config",false]],"tool_config (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.tool_config",false]],"tool_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.tool_config",false]],"tool_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.tool_config",false]],"tool_response (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.tool_response",false]],"tool_response (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.tool_response",false]],"tool_response (genai.types.part attribute)":[[0,"genai.types.Part.tool_response",false]],"tool_response (genai.types.partdict attribute)":[[0,"genai.types.PartDict.tool_response",false]],"tool_type (genai.types.toolcall attribute)":[[0,"genai.types.ToolCall.tool_type",false]],"tool_type (genai.types.toolcalldict attribute)":[[0,"genai.types.ToolCallDict.tool_type",false]],"tool_type (genai.types.toolresponse attribute)":[[0,"genai.types.ToolResponse.tool_type",false]],"tool_type (genai.types.toolresponsedict attribute)":[[0,"genai.types.ToolResponseDict.tool_type",false]],"tool_type_unspecified (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.TOOL_TYPE_UNSPECIFIED",false]],"tool_use_prompt_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.tool_use_prompt_token_count",false]],"tool_use_prompt_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.tool_use_prompt_token_count",false]],"tool_use_prompt_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.tool_use_prompt_token_count",false]],"tool_use_prompt_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.tool_use_prompt_token_count",false]],"tool_use_prompt_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.tool_use_prompt_tokens_details",false]],"tool_use_prompt_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.tool_use_prompt_tokens_details",false]],"tool_use_prompt_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.tool_use_prompt_tokens_details",false]],"tool_use_prompt_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.tool_use_prompt_tokens_details",false]],"toolcalldict (class in genai.types)":[[0,"genai.types.ToolCallDict",false]],"toolcodeexecutiondict (class in genai.types)":[[0,"genai.types.ToolCodeExecutionDict",false]],"toolconfigdict (class in genai.types)":[[0,"genai.types.ToolConfigDict",false]],"tooldict (class in genai.types)":[[0,"genai.types.ToolDict",false]],"toolexaaisearchdict (class in genai.types)":[[0,"genai.types.ToolExaAiSearchDict",false]],"toolparallelaisearchdict (class in genai.types)":[[0,"genai.types.ToolParallelAiSearchDict",false]],"toolresponsedict (class in genai.types)":[[0,"genai.types.ToolResponseDict",false]],"tools (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.tools",false]],"tools (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.tools",false]],"tools (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.tools",false]],"tools (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.tools",false]],"tools (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.tools",false]],"tools (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.tools",false]],"tools (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.tools",false]],"tools (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.tools",false]],"tools (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.tools",false]],"tools (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.tools",false]],"tooltype (class in genai.types)":[[0,"genai.types.ToolType",false]],"top_candidates (genai.types.logprobsresult attribute)":[[0,"genai.types.LogprobsResult.top_candidates",false]],"top_candidates (genai.types.logprobsresultdict attribute)":[[0,"genai.types.LogprobsResultDict.top_candidates",false]],"top_k (genai.types.filesearch attribute)":[[0,"genai.types.FileSearch.top_k",false]],"top_k (genai.types.filesearchdict attribute)":[[0,"genai.types.FileSearchDict.top_k",false]],"top_k (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.top_k",false]],"top_k (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.top_k",false]],"top_k (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.top_k",false]],"top_k (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.top_k",false]],"top_k (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.top_k",false]],"top_k (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.top_k",false]],"top_k (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.top_k",false]],"top_k (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.top_k",false]],"top_k (genai.types.model attribute)":[[0,"genai.types.Model.top_k",false]],"top_k (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.top_k",false]],"top_k (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.top_k",false]],"top_k (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.top_k",false]],"top_p (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.top_p",false]],"top_p (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.top_p",false]],"top_p (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.top_p",false]],"top_p (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.top_p",false]],"top_p (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.top_p",false]],"top_p (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.top_p",false]],"top_p (genai.types.model attribute)":[[0,"genai.types.Model.top_p",false]],"top_p (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.top_p",false]],"total_billable_character_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.total_billable_character_count",false]],"total_billable_character_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.total_billable_character_count",false]],"total_billable_character_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_billable_character_count",false]],"total_billable_character_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_billable_character_count",false]],"total_billable_token_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.total_billable_token_count",false]],"total_billable_token_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.total_billable_token_count",false]],"total_billable_token_count (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.total_billable_token_count",false]],"total_billable_token_count (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.total_billable_token_count",false]],"total_billable_token_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_billable_token_count",false]],"total_billable_token_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_billable_token_count",false]],"total_token_count (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.total_token_count",false]],"total_token_count (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.total_token_count",false]],"total_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.total_token_count",false]],"total_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.total_token_count",false]],"total_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.total_token_count",false]],"total_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.total_token_count",false]],"total_tokens (genai.types.counttokensresponse attribute)":[[0,"genai.types.CountTokensResponse.total_tokens",false]],"total_tokens (genai.types.counttokensresponsedict attribute)":[[0,"genai.types.CountTokensResponseDict.total_tokens",false]],"total_tokens (genai.types.counttokensresult attribute)":[[0,"genai.types.CountTokensResult.total_tokens",false]],"total_tokens (genai.types.counttokensresultdict attribute)":[[0,"genai.types.CountTokensResultDict.total_tokens",false]],"total_truncated_example_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_truncated_example_count",false]],"total_truncated_example_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_truncated_example_count",false]],"total_tuning_character_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.total_tuning_character_count",false]],"total_tuning_character_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.total_tuning_character_count",false]],"total_tuning_character_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_tuning_character_count",false]],"total_tuning_character_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_tuning_character_count",false]],"traffic_type (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.traffic_type",false]],"traffic_type (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.traffic_type",false]],"traffic_type (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.traffic_type",false]],"traffic_type (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.traffic_type",false]],"traffic_type_unspecified (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.TRAFFIC_TYPE_UNSPECIFIED",false]],"traffictype (class in genai.types)":[[0,"genai.types.TrafficType",false]],"training_dataset (genai.types.createtuningjobparameters attribute)":[[0,"genai.types.CreateTuningJobParameters.training_dataset",false]],"training_dataset (genai.types.createtuningjobparametersdict attribute)":[[0,"genai.types.CreateTuningJobParametersDict.training_dataset",false]],"training_dataset_stats (genai.types.distillationdatastats attribute)":[[0,"genai.types.DistillationDataStats.training_dataset_stats",false]],"training_dataset_stats (genai.types.distillationdatastatsdict attribute)":[[0,"genai.types.DistillationDataStatsDict.training_dataset_stats",false]],"training_dataset_uri (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.fullfinetuningspec attribute)":[[0,"genai.types.FullFineTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.fullfinetuningspecdict attribute)":[[0,"genai.types.FullFineTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.partnermodeltuningspec attribute)":[[0,"genai.types.PartnerModelTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.partnermodeltuningspecdict attribute)":[[0,"genai.types.PartnerModelTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.veotuningspec attribute)":[[0,"genai.types.VeoTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.veotuningspecdict attribute)":[[0,"genai.types.VeoTuningSpecDict.training_dataset_uri",false]],"transcriptiondict (class in genai.types)":[[0,"genai.types.TranscriptionDict",false]],"translation_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.translation_config",false]],"translation_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.translation_config",false]],"translation_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.translation_config",false]],"translation_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.translation_config",false]],"translationconfigdict (class in genai.types)":[[0,"genai.types.TranslationConfigDict",false]],"transparent (genai.types.sessionresumptionconfig attribute)":[[0,"genai.types.SessionResumptionConfig.transparent",false]],"transparent (genai.types.sessionresumptionconfigdict attribute)":[[0,"genai.types.SessionResumptionConfigDict.transparent",false]],"trigger_tokens (genai.types.contextwindowcompressionconfig attribute)":[[0,"genai.types.ContextWindowCompressionConfig.trigger_tokens",false]],"trigger_tokens (genai.types.contextwindowcompressionconfigdict attribute)":[[0,"genai.types.ContextWindowCompressionConfigDict.trigger_tokens",false]],"triggers (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.triggers",false]],"triggers (genai.client.client property)":[[0,"genai.client.Client.triggers",false]],"truncated (genai.types.contentembeddingstatistics attribute)":[[0,"genai.types.ContentEmbeddingStatistics.truncated",false]],"truncated (genai.types.contentembeddingstatisticsdict attribute)":[[0,"genai.types.ContentEmbeddingStatisticsDict.truncated",false]],"truncated_example_indices (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.truncated_example_indices",false]],"truncated_example_indices (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.truncated_example_indices",false]],"ttl (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.ttl",false]],"ttl (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.ttl",false]],"ttl (genai.types.updatecachedcontentconfig attribute)":[[0,"genai.types.UpdateCachedContentConfig.ttl",false]],"ttl (genai.types.updatecachedcontentconfigdict attribute)":[[0,"genai.types.UpdateCachedContentConfigDict.ttl",false]],"tune() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.tune",false]],"tune() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.tune",false]],"tuned_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuned_model",false]],"tuned_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuned_model",false]],"tuned_model_display_name (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.tuned_model_display_name",false]],"tuned_model_display_name (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.tuned_model_display_name",false]],"tuned_model_display_name (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuned_model_display_name",false]],"tuned_model_display_name (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuned_model_display_name",false]],"tuned_model_info (genai.types.model attribute)":[[0,"genai.types.Model.tuned_model_info",false]],"tuned_model_info (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.tuned_model_info",false]],"tuned_model_name (genai.types.pretunedmodel attribute)":[[0,"genai.types.PreTunedModel.tuned_model_name",false]],"tuned_model_name (genai.types.pretunedmodeldict attribute)":[[0,"genai.types.PreTunedModelDict.tuned_model_name",false]],"tuned_teacher_model_source (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.tuned_teacher_model_source",false]],"tunedmodelcheckpointdict (class in genai.types)":[[0,"genai.types.TunedModelCheckpointDict",false]],"tunedmodeldict (class in genai.types)":[[0,"genai.types.TunedModelDict",false]],"tunedmodelinfodict (class in genai.types)":[[0,"genai.types.TunedModelInfoDict",false]],"tuning_data_stats (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuning_data_stats",false]],"tuning_data_stats (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuning_data_stats",false]],"tuning_dataset_example_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.tuning_dataset_example_count",false]],"tuning_job_metadata (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuning_job_metadata",false]],"tuning_job_metadata (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuning_job_metadata",false]],"tuning_job_state (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuning_job_state",false]],"tuning_job_state (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuning_job_state",false]],"tuning_job_state_post_processing (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_POST_PROCESSING",false]],"tuning_job_state_processing_dataset (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_PROCESSING_DATASET",false]],"tuning_job_state_tuning (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_TUNING",false]],"tuning_job_state_unspecified (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_UNSPECIFIED",false]],"tuning_job_state_waiting_for_capacity (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_WAITING_FOR_CAPACITY",false]],"tuning_job_state_waiting_for_quota (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_WAITING_FOR_QUOTA",false]],"tuning_jobs (genai.types.listtuningjobsresponse attribute)":[[0,"genai.types.ListTuningJobsResponse.tuning_jobs",false]],"tuning_jobs (genai.types.listtuningjobsresponsedict attribute)":[[0,"genai.types.ListTuningJobsResponseDict.tuning_jobs",false]],"tuning_mode (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.tuning_mode",false]],"tuning_mode (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.tuning_mode",false]],"tuning_mode (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.tuning_mode",false]],"tuning_mode (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.tuning_mode",false]],"tuning_mode (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.tuning_mode",false]],"tuning_mode (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.tuning_mode",false]],"tuning_mode_full (genai.types.tuningmode attribute)":[[0,"genai.types.TuningMode.TUNING_MODE_FULL",false]],"tuning_mode_peft_adapter (genai.types.tuningmode attribute)":[[0,"genai.types.TuningMode.TUNING_MODE_PEFT_ADAPTER",false]],"tuning_mode_unspecified (genai.types.tuningmode attribute)":[[0,"genai.types.TuningMode.TUNING_MODE_UNSPECIFIED",false]],"tuning_speed (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.tuning_speed",false]],"tuning_speed (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.tuning_speed",false]],"tuning_speed_unspecified (genai.types.tuningspeed attribute)":[[0,"genai.types.TuningSpeed.TUNING_SPEED_UNSPECIFIED",false]],"tuning_step_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.tuning_step_count",false]],"tuning_step_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.tuning_step_count",false]],"tuning_step_count (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.tuning_step_count",false]],"tuning_step_count (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.tuning_step_count",false]],"tuning_step_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.tuning_step_count",false]],"tuning_step_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.tuning_step_count",false]],"tuning_task (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.tuning_task",false]],"tuning_task (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.tuning_task",false]],"tuning_task_i2v (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_I2V",false]],"tuning_task_r2v (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_R2V",false]],"tuning_task_t2v (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_T2V",false]],"tuning_task_unspecified (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_UNSPECIFIED",false]],"tuningdatasetdict (class in genai.types)":[[0,"genai.types.TuningDatasetDict",false]],"tuningdatastatsdict (class in genai.types)":[[0,"genai.types.TuningDataStatsDict",false]],"tuningexampledict (class in genai.types)":[[0,"genai.types.TuningExampleDict",false]],"tuningjobdict (class in genai.types)":[[0,"genai.types.TuningJobDict",false]],"tuningjobmetadatadict (class in genai.types)":[[0,"genai.types.TuningJobMetadataDict",false]],"tuningjobstate (class in genai.types)":[[0,"genai.types.TuningJobState",false]],"tuningmethod (class in genai.types)":[[0,"genai.types.TuningMethod",false]],"tuningmode (class in genai.types)":[[0,"genai.types.TuningMode",false]],"tuningoperationdict (class in genai.types)":[[0,"genai.types.TuningOperationDict",false]],"tunings (class in genai.tunings)":[[0,"genai.tunings.Tunings",false]],"tunings (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.tunings",false]],"tunings (genai.client.client property)":[[0,"genai.client.Client.tunings",false]],"tuningspeed (class in genai.types)":[[0,"genai.types.TuningSpeed",false]],"tuningtask (class in genai.types)":[[0,"genai.types.TuningTask",false]],"tuningvalidationdatasetdict (class in genai.types)":[[0,"genai.types.TuningValidationDatasetDict",false]],"turn_complete (genai.types.liveclientcontent attribute)":[[0,"genai.types.LiveClientContent.turn_complete",false]],"turn_complete (genai.types.liveclientcontentdict attribute)":[[0,"genai.types.LiveClientContentDict.turn_complete",false]],"turn_complete (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.turn_complete",false]],"turn_complete (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.turn_complete",false]],"turn_complete_reason (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.turn_complete_reason",false]],"turn_complete_reason (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.turn_complete_reason",false]],"turn_complete_reason_unspecified (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.TURN_COMPLETE_REASON_UNSPECIFIED",false]],"turn_coverage (genai.types.realtimeinputconfig attribute)":[[0,"genai.types.RealtimeInputConfig.turn_coverage",false]],"turn_coverage (genai.types.realtimeinputconfigdict attribute)":[[0,"genai.types.RealtimeInputConfigDict.turn_coverage",false]],"turn_coverage_unspecified (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_COVERAGE_UNSPECIFIED",false]],"turn_includes_all_input (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_INCLUDES_ALL_INPUT",false]],"turn_includes_audio_activity_and_all_video (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO",false]],"turn_includes_only_activity (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_INCLUDES_ONLY_ACTIVITY",false]],"turncompletereason (class in genai.types)":[[0,"genai.types.TurnCompleteReason",false]],"turncoverage (class in genai.types)":[[0,"genai.types.TurnCoverage",false]],"turns (genai.types.liveclientcontent attribute)":[[0,"genai.types.LiveClientContent.turns",false]],"turns (genai.types.liveclientcontentdict attribute)":[[0,"genai.types.LiveClientContentDict.turns",false]],"type (class in genai.types)":[[0,"genai.types.Type",false]],"type (genai.types.computationbasedmetricspec attribute)":[[0,"genai.types.ComputationBasedMetricSpec.type",false]],"type (genai.types.computationbasedmetricspecdict attribute)":[[0,"genai.types.ComputationBasedMetricSpecDict.type",false]],"type (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.type",false]],"type (genai.types.schema attribute)":[[0,"genai.types.Schema.type",false]],"type (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.type",false]],"type_unspecified (genai.types.type attribute)":[[0,"genai.types.Type.TYPE_UNSPECIFIED",false]],"type_unspecified (genai.types.voiceactivitytype attribute)":[[0,"genai.types.VoiceActivityType.TYPE_UNSPECIFIED",false]],"unexpected_tool_call (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.UNEXPECTED_TOOL_CALL",false]],"unifiedmetricdict (class in genai.types)":[[0,"genai.types.UnifiedMetricDict",false]],"unique_items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.unique_items",false]],"unsafe_prompt_for_image_generation (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.UNSAFE_PROMPT_FOR_IMAGE_GENERATION",false]],"unspecified (genai.types.behavior attribute)":[[0,"genai.types.Behavior.UNSPECIFIED",false]],"unspecified (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.UNSPECIFIED",false]],"unstable_experimental (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.UNSTABLE_EXPERIMENTAL",false]],"update() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.update",false]],"update() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.update",false]],"update() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.update",false]],"update() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.update",false]],"update() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.update",false]],"update() (genai.models.models method)":[[0,"genai.models.Models.update",false]],"update_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.update_time",false]],"update_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.update_time",false]],"update_time (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.update_time",false]],"update_time (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.update_time",false]],"update_time (genai.types.document attribute)":[[0,"genai.types.Document.update_time",false]],"update_time (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.update_time",false]],"update_time (genai.types.file attribute)":[[0,"genai.types.File.update_time",false]],"update_time (genai.types.filedict attribute)":[[0,"genai.types.FileDict.update_time",false]],"update_time (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.update_time",false]],"update_time (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.update_time",false]],"update_time (genai.types.tunedmodelinfo attribute)":[[0,"genai.types.TunedModelInfo.update_time",false]],"update_time (genai.types.tunedmodelinfodict attribute)":[[0,"genai.types.TunedModelInfoDict.update_time",false]],"update_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.update_time",false]],"update_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.update_time",false]],"updatecachedcontentconfigdict (class in genai.types)":[[0,"genai.types.UpdateCachedContentConfigDict",false]],"updatemodelconfigdict (class in genai.types)":[[0,"genai.types.UpdateModelConfigDict",false]],"uploaded (genai.types.filesource attribute)":[[0,"genai.types.FileSource.UPLOADED",false]],"uploadfileconfigdict (class in genai.types)":[[0,"genai.types.UploadFileConfigDict",false]],"uploadtofilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.UploadToFileSearchStoreConfigDict",false]],"uploadtofilesearchstoreresponsedict (class in genai.types)":[[0,"genai.types.UploadToFileSearchStoreResponseDict",false]],"uploadtofilesearchstoreresumableresponsedict (class in genai.types)":[[0,"genai.types.UploadToFileSearchStoreResumableResponseDict",false]],"upscale_factor (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.upscale_factor",false]],"upscale_factor (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.upscale_factor",false]],"upscale_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.upscale_image",false]],"upscale_image() (genai.models.models method)":[[0,"genai.models.Models.upscale_image",false]],"upscaleimageconfigdict (class in genai.types)":[[0,"genai.types.UpscaleImageConfigDict",false]],"upscaleimageparametersdict (class in genai.types)":[[0,"genai.types.UpscaleImageParametersDict",false]],"upscaleimageresponsedict (class in genai.types)":[[0,"genai.types.UpscaleImageResponseDict",false]],"uri (genai.types.citation attribute)":[[0,"genai.types.Citation.uri",false]],"uri (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.uri",false]],"uri (genai.types.delivery attribute)":[[0,"genai.types.Delivery.URI",false]],"uri (genai.types.file attribute)":[[0,"genai.types.File.uri",false]],"uri (genai.types.filedict attribute)":[[0,"genai.types.FileDict.uri",false]],"uri (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.uri",false]],"uri (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.uri",false]],"uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattribution attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution.uri",false]],"uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattributiondict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict.uri",false]],"uri (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.uri",false]],"uri (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.uri",false]],"uri (genai.types.groundingchunkweb attribute)":[[0,"genai.types.GroundingChunkWeb.uri",false]],"uri (genai.types.groundingchunkwebdict attribute)":[[0,"genai.types.GroundingChunkWebDict.uri",false]],"uri (genai.types.video attribute)":[[0,"genai.types.Video.uri",false]],"uri (genai.types.videodict attribute)":[[0,"genai.types.VideoDict.uri",false]],"uris (genai.types.gcssource attribute)":[[0,"genai.types.GcsSource.uris",false]],"uris (genai.types.gcssourcedict attribute)":[[0,"genai.types.GcsSourceDict.uris",false]],"uris (genai.types.webhookconfig attribute)":[[0,"genai.types.WebhookConfig.uris",false]],"uris (genai.types.webhookconfigdict attribute)":[[0,"genai.types.WebhookConfigDict.uris",false]],"url (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.url",false]],"url (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.url",false]],"url (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.url",false]],"url (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.url",false]],"url_context (genai.types.tool attribute)":[[0,"genai.types.Tool.url_context",false]],"url_context (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.url_context",false]],"url_context (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.URL_CONTEXT",false]],"url_context_metadata (genai.types.candidate attribute)":[[0,"genai.types.Candidate.url_context_metadata",false]],"url_context_metadata (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.url_context_metadata",false]],"url_context_metadata (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.url_context_metadata",false]],"url_context_metadata (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.url_context_metadata",false]],"url_metadata (genai.types.urlcontextmetadata attribute)":[[0,"genai.types.UrlContextMetadata.url_metadata",false]],"url_metadata (genai.types.urlcontextmetadatadict attribute)":[[0,"genai.types.UrlContextMetadataDict.url_metadata",false]],"url_retrieval_status (genai.types.urlmetadata attribute)":[[0,"genai.types.UrlMetadata.url_retrieval_status",false]],"url_retrieval_status (genai.types.urlmetadatadict attribute)":[[0,"genai.types.UrlMetadataDict.url_retrieval_status",false]],"url_retrieval_status_error (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_ERROR",false]],"url_retrieval_status_paywall (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_PAYWALL",false]],"url_retrieval_status_success (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_SUCCESS",false]],"url_retrieval_status_unsafe (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_UNSAFE",false]],"url_retrieval_status_unspecified (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_UNSPECIFIED",false]],"urlcontextdict (class in genai.types)":[[0,"genai.types.UrlContextDict",false]],"urlcontextmetadatadict (class in genai.types)":[[0,"genai.types.UrlContextMetadataDict",false]],"urlmetadatadict (class in genai.types)":[[0,"genai.types.UrlMetadataDict",false]],"urlretrievalstatus (class in genai.types)":[[0,"genai.types.UrlRetrievalStatus",false]],"usage_metadata (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.usage_metadata",false]],"usage_metadata (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.usage_metadata",false]],"usage_metadata (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.usage_metadata",false]],"usage_metadata (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.usage_metadata",false]],"usage_metadata (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.usage_metadata",false]],"usage_metadata (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.usage_metadata",false]],"usagemetadatadict (class in genai.types)":[[0,"genai.types.UsageMetadataDict",false]],"use_effective_order (genai.types.bleuspec attribute)":[[0,"genai.types.BleuSpec.use_effective_order",false]],"use_effective_order (genai.types.bleuspecdict attribute)":[[0,"genai.types.BleuSpecDict.use_effective_order",false]],"use_stemmer (genai.types.rougespec attribute)":[[0,"genai.types.RougeSpec.use_stemmer",false]],"use_stemmer (genai.types.rougespecdict attribute)":[[0,"genai.types.RougeSpecDict.use_stemmer",false]],"user_consent_management (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.USER_CONSENT_MANAGEMENT",false]],"user_dataset_examples (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_dataset_examples",false]],"user_dataset_examples (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_dataset_examples",false]],"user_dataset_examples (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.user_dataset_examples",false]],"user_dataset_examples (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.user_dataset_examples",false]],"user_dataset_examples (genai.types.reinforcementtuninguserdatasetexamples attribute)":[[0,"genai.types.ReinforcementTuningUserDatasetExamples.user_dataset_examples",false]],"user_dataset_examples (genai.types.reinforcementtuninguserdatasetexamplesdict attribute)":[[0,"genai.types.ReinforcementTuningUserDatasetExamplesDict.user_dataset_examples",false]],"user_dataset_examples (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_dataset_examples",false]],"user_dataset_examples (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_dataset_examples",false]],"user_input_token_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_input_token_distribution",false]],"user_message_per_example_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_message_per_example_distribution",false]],"user_message_per_example_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_message_per_example_distribution",false]],"user_message_per_example_distribution (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_message_per_example_distribution",false]],"user_message_per_example_distribution (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_message_per_example_distribution",false]],"user_metadata (genai.types.webhookconfig attribute)":[[0,"genai.types.WebhookConfig.user_metadata",false]],"user_metadata (genai.types.webhookconfigdict attribute)":[[0,"genai.types.WebhookConfigDict.user_metadata",false]],"user_output_token_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_output_token_distribution",false]],"user_requested_aux_info (genai.types.reinforcementtuningrewardinfo attribute)":[[0,"genai.types.ReinforcementTuningRewardInfo.user_requested_aux_info",false]],"user_requested_aux_info (genai.types.reinforcementtuningrewardinfodict attribute)":[[0,"genai.types.ReinforcementTuningRewardInfoDict.user_requested_aux_info",false]],"uses (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.uses",false]],"uses (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.uses",false]],"vad_signal_type (genai.types.voiceactivitydetectionsignal attribute)":[[0,"genai.types.VoiceActivityDetectionSignal.vad_signal_type",false]],"vad_signal_type (genai.types.voiceactivitydetectionsignaldict attribute)":[[0,"genai.types.VoiceActivityDetectionSignalDict.vad_signal_type",false]],"vad_signal_type_eos (genai.types.vadsignaltype attribute)":[[0,"genai.types.VadSignalType.VAD_SIGNAL_TYPE_EOS",false]],"vad_signal_type_sos (genai.types.vadsignaltype attribute)":[[0,"genai.types.VadSignalType.VAD_SIGNAL_TYPE_SOS",false]],"vad_signal_type_unspecified (genai.types.vadsignaltype attribute)":[[0,"genai.types.VadSignalType.VAD_SIGNAL_TYPE_UNSPECIFIED",false]],"vadsignaltype (class in genai.types)":[[0,"genai.types.VadSignalType",false]],"validate_name() (genai.types.metric method)":[[0,"genai.types.Metric.validate_name",false]],"validate_reward() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.validate_reward",false]],"validate_reward() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.validate_reward",false]],"validated (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.VALIDATED",false]],"validaterewardconfigdict (class in genai.types)":[[0,"genai.types.ValidateRewardConfigDict",false]],"validaterewardresponsedict (class in genai.types)":[[0,"genai.types.ValidateRewardResponseDict",false]],"validation_dataset (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.validation_dataset",false]],"validation_dataset (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.validation_dataset",false]],"validation_dataset_uri (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.fullfinetuningspec attribute)":[[0,"genai.types.FullFineTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.fullfinetuningspecdict attribute)":[[0,"genai.types.FullFineTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.partnermodeltuningspec attribute)":[[0,"genai.types.PartnerModelTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.partnermodeltuningspecdict attribute)":[[0,"genai.types.PartnerModelTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veotuningspec attribute)":[[0,"genai.types.VeoTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veotuningspecdict attribute)":[[0,"genai.types.VeoTuningSpecDict.validation_dataset_uri",false]],"value_string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpression.value_string_match_expression",false]],"value_string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict.value_string_match_expression",false]],"values (genai.types.contentembedding attribute)":[[0,"genai.types.ContentEmbedding.values",false]],"values (genai.types.groundingchunkstringlist attribute)":[[0,"genai.types.GroundingChunkStringList.values",false]],"values (genai.types.stringlist attribute)":[[0,"genai.types.StringList.values",false]],"variance (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.VARIANCE",false]],"vector_distance_threshold (genai.types.ragretrievalconfigfilter attribute)":[[0,"genai.types.RagRetrievalConfigFilter.vector_distance_threshold",false]],"vector_distance_threshold (genai.types.ragretrievalconfigfilterdict attribute)":[[0,"genai.types.RagRetrievalConfigFilterDict.vector_distance_threshold",false]],"vector_distance_threshold (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.vector_distance_threshold",false]],"vector_distance_threshold (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.vector_distance_threshold",false]],"vector_similarity_threshold (genai.types.ragretrievalconfigfilter attribute)":[[0,"genai.types.RagRetrievalConfigFilter.vector_similarity_threshold",false]],"vector_similarity_threshold (genai.types.ragretrievalconfigfilterdict attribute)":[[0,"genai.types.RagRetrievalConfigFilterDict.vector_similarity_threshold",false]],"veo_data_mixture_ratio (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.veo_data_mixture_ratio",false]],"veo_data_mixture_ratio (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.veo_data_mixture_ratio",false]],"veo_lora_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.veo_lora_tuning_spec",false]],"veo_lora_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.veo_lora_tuning_spec",false]],"veo_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.veo_tuning_spec",false]],"veo_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.veo_tuning_spec",false]],"veohyperparametersdict (class in genai.types)":[[0,"genai.types.VeoHyperParametersDict",false]],"veoloratuningspecdict (class in genai.types)":[[0,"genai.types.VeoLoraTuningSpecDict",false]],"veotuningspecdict (class in genai.types)":[[0,"genai.types.VeoTuningSpecDict",false]],"version (genai.types.model attribute)":[[0,"genai.types.Model.version",false]],"version (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.version",false]],"vertex_ai_search (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.vertex_ai_search",false]],"vertex_ai_search (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.vertex_ai_search",false]],"vertex_dataset (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.vertex_dataset",false]],"vertex_dataset (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.vertex_dataset",false]],"vertex_dataset_name (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.vertex_dataset_name",false]],"vertex_dataset_name (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.vertex_dataset_name",false]],"vertex_dataset_resource (genai.types.tuningdataset attribute)":[[0,"genai.types.TuningDataset.vertex_dataset_resource",false]],"vertex_dataset_resource (genai.types.tuningdatasetdict attribute)":[[0,"genai.types.TuningDatasetDict.vertex_dataset_resource",false]],"vertex_dataset_resource (genai.types.tuningvalidationdataset attribute)":[[0,"genai.types.TuningValidationDataset.vertex_dataset_resource",false]],"vertex_dataset_resource (genai.types.tuningvalidationdatasetdict attribute)":[[0,"genai.types.TuningValidationDatasetDict.vertex_dataset_resource",false]],"vertex_multimodal_dataset_name (genai.types.batchjoboutputinfo attribute)":[[0,"genai.types.BatchJobOutputInfo.vertex_multimodal_dataset_name",false]],"vertex_multimodal_dataset_name (genai.types.batchjoboutputinfodict attribute)":[[0,"genai.types.BatchJobOutputInfoDict.vertex_multimodal_dataset_name",false]],"vertex_rag_store (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.vertex_rag_store",false]],"vertex_rag_store (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.vertex_rag_store",false]],"vertexai (genai.client.client attribute)":[[0,"genai.client.Client.vertexai",false]],"vertexai (genai.client.client property)":[[0,"id0",false]],"vertexaisearchdatastorespecdict (class in genai.types)":[[0,"genai.types.VertexAISearchDataStoreSpecDict",false]],"vertexaisearchdict (class in genai.types)":[[0,"genai.types.VertexAISearchDict",false]],"vertexmultimodaldatasetdestinationdict (class in genai.types)":[[0,"genai.types.VertexMultimodalDatasetDestinationDict",false]],"vertexragstoredict (class in genai.types)":[[0,"genai.types.VertexRagStoreDict",false]],"vertexragstoreragresourcedict (class in genai.types)":[[0,"genai.types.VertexRagStoreRagResourceDict",false]],"video (genai.types.generatedvideo attribute)":[[0,"genai.types.GeneratedVideo.video",false]],"video (genai.types.generatedvideodict attribute)":[[0,"genai.types.GeneratedVideoDict.video",false]],"video (genai.types.generatevideossource attribute)":[[0,"genai.types.GenerateVideosSource.video",false]],"video (genai.types.generatevideossourcedict attribute)":[[0,"genai.types.GenerateVideosSourceDict.video",false]],"video (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.video",false]],"video (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.video",false]],"video (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.video",false]],"video (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.video",false]],"video (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.VIDEO",false]],"video (genai.types.modality attribute)":[[0,"genai.types.Modality.VIDEO",false]],"video (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.video",false]],"video (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.video",false]],"video_bitrate_bps (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.video_bitrate_bps",false]],"video_bitrate_bps (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.video_bitrate_bps",false]],"video_bytes (genai.types.video attribute)":[[0,"genai.types.Video.video_bytes",false]],"video_bytes (genai.types.videodict attribute)":[[0,"genai.types.VideoDict.video_bytes",false]],"video_duration_seconds (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.video_duration_seconds",false]],"video_duration_seconds (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.video_duration_seconds",false]],"video_metadata (genai.types.file attribute)":[[0,"genai.types.File.video_metadata",false]],"video_metadata (genai.types.filedict attribute)":[[0,"genai.types.FileDict.video_metadata",false]],"video_metadata (genai.types.part attribute)":[[0,"genai.types.Part.video_metadata",false]],"video_metadata (genai.types.partdict attribute)":[[0,"genai.types.PartDict.video_metadata",false]],"video_orientation (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.video_orientation",false]],"video_orientation (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.video_orientation",false]],"video_orientation_unspecified (genai.types.videoorientation attribute)":[[0,"genai.types.VideoOrientation.VIDEO_ORIENTATION_UNSPECIFIED",false]],"videocompressionquality (class in genai.types)":[[0,"genai.types.VideoCompressionQuality",false]],"videodict (class in genai.types)":[[0,"genai.types.VideoDict",false]],"videogenerationmaskdict (class in genai.types)":[[0,"genai.types.VideoGenerationMaskDict",false]],"videogenerationmaskmode (class in genai.types)":[[0,"genai.types.VideoGenerationMaskMode",false]],"videogenerationreferenceimagedict (class in genai.types)":[[0,"genai.types.VideoGenerationReferenceImageDict",false]],"videogenerationreferencetype (class in genai.types)":[[0,"genai.types.VideoGenerationReferenceType",false]],"videometadatadict (class in genai.types)":[[0,"genai.types.VideoMetadataDict",false]],"videoorientation (class in genai.types)":[[0,"genai.types.VideoOrientation",false]],"videoresponseformatdict (class in genai.types)":[[0,"genai.types.VideoResponseFormatDict",false]],"vocalization (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.VOCALIZATION",false]],"voice_activity (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.voice_activity",false]],"voice_activity (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.voice_activity",false]],"voice_activity_detection_signal (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.voice_activity_detection_signal",false]],"voice_activity_detection_signal (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.voice_activity_detection_signal",false]],"voice_activity_type (genai.types.voiceactivity attribute)":[[0,"genai.types.VoiceActivity.voice_activity_type",false]],"voice_activity_type (genai.types.voiceactivitydict attribute)":[[0,"genai.types.VoiceActivityDict.voice_activity_type",false]],"voice_config (genai.types.speakervoiceconfig attribute)":[[0,"genai.types.SpeakerVoiceConfig.voice_config",false]],"voice_config (genai.types.speakervoiceconfigdict attribute)":[[0,"genai.types.SpeakerVoiceConfigDict.voice_config",false]],"voice_config (genai.types.speechconfig attribute)":[[0,"genai.types.SpeechConfig.voice_config",false]],"voice_config (genai.types.speechconfigdict attribute)":[[0,"genai.types.SpeechConfigDict.voice_config",false]],"voice_consent_signature (genai.types.liveserversetupcomplete attribute)":[[0,"genai.types.LiveServerSetupComplete.voice_consent_signature",false]],"voice_consent_signature (genai.types.liveserversetupcompletedict attribute)":[[0,"genai.types.LiveServerSetupCompleteDict.voice_consent_signature",false]],"voice_consent_signature (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.voice_consent_signature",false]],"voice_consent_signature (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.voice_consent_signature",false]],"voice_name (genai.types.prebuiltvoiceconfig attribute)":[[0,"genai.types.PrebuiltVoiceConfig.voice_name",false]],"voice_name (genai.types.prebuiltvoiceconfigdict attribute)":[[0,"genai.types.PrebuiltVoiceConfigDict.voice_name",false]],"voice_sample_audio (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.voice_sample_audio",false]],"voice_sample_audio (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.voice_sample_audio",false]],"voiceactivitydetectionsignaldict (class in genai.types)":[[0,"genai.types.VoiceActivityDetectionSignalDict",false]],"voiceactivitydict (class in genai.types)":[[0,"genai.types.VoiceActivityDict",false]],"voiceactivitytype (class in genai.types)":[[0,"genai.types.VoiceActivityType",false]],"voiceconfigdict (class in genai.types)":[[0,"genai.types.VoiceConfigDict",false]],"voiceconsentsignaturedict (class in genai.types)":[[0,"genai.types.VoiceConsentSignatureDict",false]],"waiting_for_input (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.waiting_for_input",false]],"waiting_for_input (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.waiting_for_input",false]],"web (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.web",false]],"web (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.web",false]],"web_search (genai.types.searchtypes attribute)":[[0,"genai.types.SearchTypes.web_search",false]],"web_search (genai.types.searchtypesdict attribute)":[[0,"genai.types.SearchTypesDict.web_search",false]],"web_search_queries (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.web_search_queries",false]],"web_search_queries (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.web_search_queries",false]],"webhook_config (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.webhook_config",false]],"webhook_config (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.webhook_config",false]],"webhook_config (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.webhook_config",false]],"webhook_config (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.webhook_config",false]],"webhookconfigdict (class in genai.types)":[[0,"genai.types.WebhookConfigDict",false]],"webhooks (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.webhooks",false]],"webhooks (genai.client.client property)":[[0,"genai.client.Client.webhooks",false]],"websearchdict (class in genai.types)":[[0,"genai.types.WebSearchDict",false]],"weight (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfig attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfig.weight",false]],"weight (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfigdict attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict.weight",false]],"weight (genai.types.weightedprompt attribute)":[[0,"genai.types.WeightedPrompt.weight",false]],"weight (genai.types.weightedpromptdict attribute)":[[0,"genai.types.WeightedPromptDict.weight",false]],"weighted_prompts (genai.types.livemusicclientcontent attribute)":[[0,"genai.types.LiveMusicClientContent.weighted_prompts",false]],"weighted_prompts (genai.types.livemusicclientcontentdict attribute)":[[0,"genai.types.LiveMusicClientContentDict.weighted_prompts",false]],"weighted_prompts (genai.types.livemusicsetweightedpromptsparameters attribute)":[[0,"genai.types.LiveMusicSetWeightedPromptsParameters.weighted_prompts",false]],"weighted_prompts (genai.types.livemusicsetweightedpromptsparametersdict attribute)":[[0,"genai.types.LiveMusicSetWeightedPromptsParametersDict.weighted_prompts",false]],"weighted_reward_configs (genai.types.compositereinforcementtuningrewardconfig attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfig.weighted_reward_configs",false]],"weighted_reward_configs (genai.types.compositereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigDict.weighted_reward_configs",false]],"weightedpromptdict (class in genai.types)":[[0,"genai.types.WeightedPromptDict",false]],"when_idle (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.WHEN_IDLE",false]],"white_space_config (genai.types.chunkingconfig attribute)":[[0,"genai.types.ChunkingConfig.white_space_config",false]],"white_space_config (genai.types.chunkingconfigdict attribute)":[[0,"genai.types.ChunkingConfigDict.white_space_config",false]],"whitespaceconfigdict (class in genai.types)":[[0,"genai.types.WhiteSpaceConfigDict",false]],"will_continue (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.will_continue",false]],"will_continue (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.will_continue",false]],"will_continue (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.will_continue",false]],"will_continue (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.will_continue",false]],"will_continue (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.will_continue",false]],"will_continue (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.will_continue",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgenagents property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgenenvironments property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgeninteractions property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgentriggers property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgenagents property)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgenenvironments property)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgeninteractions property)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgentriggers property)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.with_raw_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgenagents property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgenenvironments property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgeninteractions property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgentriggers property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgenagents property)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgenenvironments property)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgeninteractions property)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgentriggers property)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.with_streaming_response",false]],"word (genai.types.wordinfo attribute)":[[0,"genai.types.WordInfo.word",false]],"word (genai.types.wordinfodict attribute)":[[0,"genai.types.WordInfoDict.word",false]],"word_timestamp (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.word_timestamp",false]],"word_timestamp (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.word_timestamp",false]],"wordinfodict (class in genai.types)":[[0,"genai.types.WordInfoDict",false]],"words (genai.types.transcription attribute)":[[0,"genai.types.Transcription.words",false]],"words (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.words",false]],"wrong_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer.wrong_answer_reward",false]],"wrong_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict.wrong_answer_reward",false]],"wrong_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.wrong_answer_reward",false]],"wrong_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.wrong_answer_reward",false]],"year (genai.types.googletypedate attribute)":[[0,"genai.types.GoogleTypeDate.year",false]],"year (genai.types.googletypedatedict attribute)":[[0,"genai.types.GoogleTypeDateDict.year",false]],"zh (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.zh",false]]},"objects":{"genai":[[0,3,0,"-","client"],[0,3,0,"-","live"],[0,3,0,"-","models"],[0,3,0,"-","tokens"],[0,3,0,"-","tunings"],[0,3,0,"-","types"]],"genai._gaos.google_genai":[[0,0,1,"","AsyncGeminiNextGenAgents"],[0,0,1,"","AsyncGeminiNextGenEnvironments"],[0,0,1,"","AsyncGeminiNextGenInteractions"],[0,0,1,"","AsyncGeminiNextGenTriggers"],[0,0,1,"","AsyncGeminiNextGenWebhooks"],[0,0,1,"","GeminiNextGenAgents"],[0,0,1,"","GeminiNextGenEnvironments"],[0,0,1,"","GeminiNextGenInteractions"],[0,0,1,"","GeminiNextGenTriggers"],[0,0,1,"","GeminiNextGenWebhooks"]],"genai._gaos.google_genai.AsyncGeminiNextGenAgents":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments":[[0,1,1,"","create"],[0,1,1,"","create_environment"],[0,1,1,"","delete"],[0,1,1,"","delete_environment"],[0,1,1,"","get"],[0,1,1,"","get_environment"],[0,1,1,"","get_environment_files"],[0,1,1,"","list"],[0,1,1,"","list_environments"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenInteractions":[[0,1,1,"","cancel"],[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenTriggers":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","list_executions"],[0,1,1,"","run"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","ping"],[0,1,1,"","rotate_signing_secret"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenAgents":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenEnvironments":[[0,1,1,"","create"],[0,1,1,"","create_environment"],[0,1,1,"","delete"],[0,1,1,"","delete_environment"],[0,1,1,"","get"],[0,1,1,"","get_environment"],[0,1,1,"","get_environment_files"],[0,1,1,"","list"],[0,1,1,"","list_environments"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenInteractions":[[0,1,1,"","cancel"],[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenTriggers":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","list_executions"],[0,1,1,"","run"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenWebhooks":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","ping"],[0,1,1,"","rotate_signing_secret"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai.client":[[0,0,1,"","AsyncClient"],[0,0,1,"","Client"],[0,5,1,"","DebugConfig"]],"genai.client.AsyncClient":[[0,1,1,"","aclose"],[0,2,1,"","agents"],[0,2,1,"","auth_tokens"],[0,2,1,"","batches"],[0,2,1,"","caches"],[0,2,1,"","chats"],[0,2,1,"","environments"],[0,2,1,"","file_search_stores"],[0,2,1,"","files"],[0,2,1,"","interactions"],[0,2,1,"","live"],[0,2,1,"","models"],[0,2,1,"","operations"],[0,2,1,"","triggers"],[0,2,1,"","tunings"],[0,2,1,"","webhooks"]],"genai.client.Client":[[0,2,1,"","agents"],[0,2,1,"","aio"],[0,4,1,"","api_key"],[0,2,1,"","auth_tokens"],[0,2,1,"","batches"],[0,2,1,"","caches"],[0,2,1,"","chats"],[0,1,1,"","close"],[0,4,1,"","credentials"],[0,4,1,"","debug_config"],[0,4,1,"","enterprise"],[0,2,1,"","environments"],[0,2,1,"","file_search_stores"],[0,2,1,"","files"],[0,4,1,"","http_options"],[0,2,1,"","interactions"],[0,4,1,"","location"],[0,2,1,"","models"],[0,2,1,"","operations"],[0,4,1,"","project"],[0,2,1,"","triggers"],[0,2,1,"","tunings"],[0,2,1,"id0","vertexai"],[0,2,1,"","webhooks"]],"genai.client.DebugConfig":[[0,6,1,"","client_mode"],[0,6,1,"","replay_id"],[0,6,1,"","replays_directory"]],"genai.live":[[0,0,1,"","AsyncLive"],[0,0,1,"","AsyncSession"]],"genai.live.AsyncLive":[[0,1,1,"","connect"],[0,2,1,"","music"]],"genai.live.AsyncSession":[[0,1,1,"","close"],[0,1,1,"","receive"],[0,1,1,"","send"],[0,1,1,"","send_client_content"],[0,1,1,"","send_realtime_input"],[0,1,1,"","send_tool_response"],[0,1,1,"","start_stream"]],"genai.models":[[0,0,1,"","AsyncModels"],[0,0,1,"","Models"]],"genai.models.AsyncModels":[[0,1,1,"","compute_tokens"],[0,1,1,"","count_tokens"],[0,1,1,"","delete"],[0,1,1,"","edit_image"],[0,1,1,"","embed_content"],[0,1,1,"","generate_content"],[0,1,1,"","generate_content_stream"],[0,1,1,"","generate_images"],[0,1,1,"","generate_videos"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","recontext_image"],[0,1,1,"","segment_image"],[0,1,1,"","update"],[0,1,1,"","upscale_image"]],"genai.models.Models":[[0,1,1,"","compute_tokens"],[0,1,1,"","count_tokens"],[0,1,1,"","delete"],[0,1,1,"","edit_image"],[0,1,1,"","embed_content"],[0,1,1,"","generate_content"],[0,1,1,"","generate_content_stream"],[0,1,1,"","generate_images"],[0,1,1,"","generate_videos"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","recontext_image"],[0,1,1,"","segment_image"],[0,1,1,"","update"],[0,1,1,"","upscale_image"]],"genai.tokens":[[0,0,1,"","AsyncTokens"],[0,0,1,"","Tokens"]],"genai.tokens.AsyncTokens":[[0,1,1,"","create"]],"genai.tokens.Tokens":[[0,1,1,"","create"]],"genai.tunings":[[0,0,1,"","AsyncTunings"],[0,0,1,"","Tunings"]],"genai.tunings.AsyncTunings":[[0,1,1,"","cancel"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","tune"],[0,1,1,"","validate_reward"]],"genai.tunings.Tunings":[[0,1,1,"","cancel"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","tune"],[0,1,1,"","validate_reward"]],"genai.types":[[0,5,1,"","ActivityEnd"],[0,0,1,"","ActivityEndDict"],[0,0,1,"","ActivityHandling"],[0,5,1,"","ActivityStart"],[0,0,1,"","ActivityStartDict"],[0,0,1,"","AdapterSize"],[0,0,1,"","AggregationMetric"],[0,5,1,"","AggregationOutput"],[0,0,1,"","AggregationOutputDict"],[0,5,1,"","AggregationResult"],[0,0,1,"","AggregationResultDict"],[0,5,1,"","ApiAuth"],[0,5,1,"","ApiAuthApiKeyConfig"],[0,0,1,"","ApiAuthApiKeyConfigDict"],[0,0,1,"","ApiAuthDict"],[0,5,1,"","ApiKeyConfig"],[0,0,1,"","ApiKeyConfigDict"],[0,0,1,"","ApiSpec"],[0,0,1,"","AspectRatio"],[0,5,1,"","AudioChunk"],[0,0,1,"","AudioChunkDict"],[0,5,1,"","AudioResponseFormat"],[0,0,1,"","AudioResponseFormatDict"],[0,5,1,"","AudioTranscriptionConfig"],[0,0,1,"","AudioTranscriptionConfigDict"],[0,5,1,"","AuthConfig"],[0,0,1,"","AuthConfigDict"],[0,5,1,"","AuthConfigGoogleServiceAccountConfig"],[0,0,1,"","AuthConfigGoogleServiceAccountConfigDict"],[0,5,1,"","AuthConfigHttpBasicAuthConfig"],[0,0,1,"","AuthConfigHttpBasicAuthConfigDict"],[0,5,1,"","AuthConfigOauthConfig"],[0,0,1,"","AuthConfigOauthConfigDict"],[0,5,1,"","AuthConfigOidcConfig"],[0,0,1,"","AuthConfigOidcConfigDict"],[0,5,1,"","AuthToken"],[0,0,1,"","AuthTokenDict"],[0,0,1,"","AuthType"],[0,5,1,"","AutomaticActivityDetection"],[0,0,1,"","AutomaticActivityDetectionDict"],[0,5,1,"","AutomaticFunctionCallingConfig"],[0,0,1,"","AutomaticFunctionCallingConfigDict"],[0,5,1,"","AutoraterConfig"],[0,0,1,"","AutoraterConfigDict"],[0,5,1,"","AvatarConfig"],[0,0,1,"","AvatarConfigDict"],[0,5,1,"","BatchJob"],[0,5,1,"","BatchJobDestination"],[0,0,1,"","BatchJobDestinationDict"],[0,0,1,"","BatchJobDict"],[0,5,1,"","BatchJobOutputInfo"],[0,0,1,"","BatchJobOutputInfoDict"],[0,5,1,"","BatchJobSource"],[0,0,1,"","BatchJobSourceDict"],[0,0,1,"","Behavior"],[0,5,1,"","BigQuerySource"],[0,0,1,"","BigQuerySourceDict"],[0,5,1,"","BleuMetricValue"],[0,0,1,"","BleuMetricValueDict"],[0,5,1,"","BleuSpec"],[0,0,1,"","BleuSpecDict"],[0,5,1,"","Blob"],[0,0,1,"","BlobDict"],[0,0,1,"","BlockedReason"],[0,5,1,"","CachedContent"],[0,0,1,"","CachedContentDict"],[0,5,1,"","CachedContentUsageMetadata"],[0,0,1,"","CachedContentUsageMetadataDict"],[0,5,1,"","CancelBatchJobConfig"],[0,0,1,"","CancelBatchJobConfigDict"],[0,5,1,"","CancelTuningJobConfig"],[0,0,1,"","CancelTuningJobConfigDict"],[0,5,1,"","CancelTuningJobResponse"],[0,0,1,"","CancelTuningJobResponseDict"],[0,5,1,"","Candidate"],[0,0,1,"","CandidateDict"],[0,5,1,"","Checkpoint"],[0,0,1,"","CheckpointDict"],[0,5,1,"","ChunkingConfig"],[0,0,1,"","ChunkingConfigDict"],[0,5,1,"","Citation"],[0,0,1,"","CitationDict"],[0,5,1,"","CitationMetadata"],[0,0,1,"","CitationMetadataDict"],[0,5,1,"","CodeExecutionResult"],[0,0,1,"","CodeExecutionResultDict"],[0,5,1,"","CompletionStats"],[0,0,1,"","CompletionStatsDict"],[0,5,1,"","CompositeReinforcementTuningRewardConfig"],[0,0,1,"","CompositeReinforcementTuningRewardConfigDict"],[0,5,1,"","CompositeReinforcementTuningRewardConfigWeightedRewardConfig"],[0,0,1,"","CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict"],[0,5,1,"","ComputationBasedMetricSpec"],[0,0,1,"","ComputationBasedMetricSpecDict"],[0,0,1,"","ComputationBasedMetricType"],[0,5,1,"","ComputeTokensConfig"],[0,0,1,"","ComputeTokensConfigDict"],[0,5,1,"","ComputeTokensResponse"],[0,0,1,"","ComputeTokensResponseDict"],[0,5,1,"","ComputeTokensResult"],[0,0,1,"","ComputeTokensResultDict"],[0,5,1,"","ComputerUse"],[0,0,1,"","ComputerUseDict"],[0,5,1,"","Content"],[0,0,1,"","ContentDict"],[0,5,1,"","ContentEmbedding"],[0,0,1,"","ContentEmbeddingDict"],[0,5,1,"","ContentEmbeddingStatistics"],[0,0,1,"","ContentEmbeddingStatisticsDict"],[0,5,1,"","ContentReferenceImage"],[0,0,1,"","ContentReferenceImageDict"],[0,5,1,"","ContextWindowCompressionConfig"],[0,0,1,"","ContextWindowCompressionConfigDict"],[0,5,1,"","ControlReferenceConfig"],[0,0,1,"","ControlReferenceConfigDict"],[0,5,1,"","ControlReferenceImage"],[0,0,1,"","ControlReferenceImageDict"],[0,0,1,"","ControlReferenceType"],[0,5,1,"","CountTokensConfig"],[0,0,1,"","CountTokensConfigDict"],[0,5,1,"","CountTokensResponse"],[0,0,1,"","CountTokensResponseDict"],[0,5,1,"","CountTokensResult"],[0,0,1,"","CountTokensResultDict"],[0,5,1,"","CreateAuthTokenConfig"],[0,0,1,"","CreateAuthTokenConfigDict"],[0,5,1,"","CreateAuthTokenParameters"],[0,0,1,"","CreateAuthTokenParametersDict"],[0,5,1,"","CreateBatchJobConfig"],[0,0,1,"","CreateBatchJobConfigDict"],[0,5,1,"","CreateCachedContentConfig"],[0,0,1,"","CreateCachedContentConfigDict"],[0,5,1,"","CreateEmbeddingsBatchJobConfig"],[0,0,1,"","CreateEmbeddingsBatchJobConfigDict"],[0,5,1,"","CreateFileConfig"],[0,0,1,"","CreateFileConfigDict"],[0,5,1,"","CreateFileResponse"],[0,0,1,"","CreateFileResponseDict"],[0,5,1,"","CreateFileSearchStoreConfig"],[0,0,1,"","CreateFileSearchStoreConfigDict"],[0,5,1,"","CreateTuningJobConfig"],[0,0,1,"","CreateTuningJobConfigDict"],[0,5,1,"","CreateTuningJobParameters"],[0,0,1,"","CreateTuningJobParametersDict"],[0,5,1,"","CustomCodeExecutionResult"],[0,0,1,"","CustomCodeExecutionResultDict"],[0,5,1,"","CustomCodeExecutionSpec"],[0,0,1,"","CustomCodeExecutionSpecDict"],[0,5,1,"","CustomMetadata"],[0,0,1,"","CustomMetadataDict"],[0,5,1,"","CustomOutput"],[0,0,1,"","CustomOutputDict"],[0,5,1,"","CustomOutputFormatConfig"],[0,0,1,"","CustomOutputFormatConfigDict"],[0,5,1,"","CustomizedAvatar"],[0,0,1,"","CustomizedAvatarDict"],[0,5,1,"","DatasetDistribution"],[0,0,1,"","DatasetDistributionDict"],[0,5,1,"","DatasetDistributionDistributionBucket"],[0,0,1,"","DatasetDistributionDistributionBucketDict"],[0,5,1,"","DatasetStats"],[0,0,1,"","DatasetStatsDict"],[0,5,1,"","DeleteBatchJobConfig"],[0,0,1,"","DeleteBatchJobConfigDict"],[0,5,1,"","DeleteCachedContentConfig"],[0,0,1,"","DeleteCachedContentConfigDict"],[0,5,1,"","DeleteCachedContentResponse"],[0,0,1,"","DeleteCachedContentResponseDict"],[0,5,1,"","DeleteDocumentConfig"],[0,0,1,"","DeleteDocumentConfigDict"],[0,5,1,"","DeleteFileConfig"],[0,0,1,"","DeleteFileConfigDict"],[0,5,1,"","DeleteFileResponse"],[0,0,1,"","DeleteFileResponseDict"],[0,5,1,"","DeleteFileSearchStoreConfig"],[0,0,1,"","DeleteFileSearchStoreConfigDict"],[0,5,1,"","DeleteModelConfig"],[0,0,1,"","DeleteModelConfigDict"],[0,5,1,"","DeleteModelResponse"],[0,0,1,"","DeleteModelResponseDict"],[0,5,1,"","DeleteResourceJob"],[0,0,1,"","DeleteResourceJobDict"],[0,0,1,"","Delivery"],[0,5,1,"","DistillationDataStats"],[0,0,1,"","DistillationDataStatsDict"],[0,5,1,"","DistillationHyperParameters"],[0,0,1,"","DistillationHyperParametersDict"],[0,5,1,"","DistillationSamplingSpec"],[0,0,1,"","DistillationSamplingSpecDict"],[0,5,1,"","DistillationSpec"],[0,0,1,"","DistillationSpecDict"],[0,5,1,"","Document"],[0,0,1,"","DocumentDict"],[0,0,1,"","DocumentState"],[0,5,1,"","DownloadFileConfig"],[0,0,1,"","DownloadFileConfigDict"],[0,5,1,"","DownloadMediaConfig"],[0,0,1,"","DownloadMediaConfigDict"],[0,5,1,"","DynamicRetrievalConfig"],[0,0,1,"","DynamicRetrievalConfigDict"],[0,0,1,"","DynamicRetrievalConfigMode"],[0,5,1,"","EditImageConfig"],[0,0,1,"","EditImageConfigDict"],[0,5,1,"","EditImageResponse"],[0,0,1,"","EditImageResponseDict"],[0,0,1,"","EditMode"],[0,5,1,"","EmbedContentBatch"],[0,0,1,"","EmbedContentBatchDict"],[0,5,1,"","EmbedContentConfig"],[0,0,1,"","EmbedContentConfigDict"],[0,5,1,"","EmbedContentMetadata"],[0,0,1,"","EmbedContentMetadataDict"],[0,5,1,"","EmbedContentParameters"],[0,0,1,"","EmbedContentParametersDict"],[0,5,1,"","EmbedContentResponse"],[0,0,1,"","EmbedContentResponseDict"],[0,0,1,"","EmbeddingApiType"],[0,5,1,"","EmbeddingsBatchJobSource"],[0,0,1,"","EmbeddingsBatchJobSourceDict"],[0,5,1,"","EncryptionSpec"],[0,0,1,"","EncryptionSpecDict"],[0,0,1,"","EndSensitivity"],[0,5,1,"","Endpoint"],[0,0,1,"","EndpointDict"],[0,5,1,"","EnterpriseWebSearch"],[0,0,1,"","EnterpriseWebSearchDict"],[0,5,1,"","EntityLabel"],[0,0,1,"","EntityLabelDict"],[0,0,1,"","Environment"],[0,5,1,"","EvaluateDatasetResponse"],[0,0,1,"","EvaluateDatasetResponseDict"],[0,5,1,"","EvaluateDatasetRun"],[0,0,1,"","EvaluateDatasetRunDict"],[0,5,1,"","EvaluationConfig"],[0,0,1,"","EvaluationConfigDict"],[0,5,1,"","EvaluationDataset"],[0,0,1,"","EvaluationDatasetDict"],[0,5,1,"","EvaluationParserConfig"],[0,5,1,"","EvaluationParserConfigCustomCodeParserConfig"],[0,0,1,"","EvaluationParserConfigCustomCodeParserConfigDict"],[0,0,1,"","EvaluationParserConfigDict"],[0,5,1,"","ExactMatchMetricValue"],[0,0,1,"","ExactMatchMetricValueDict"],[0,5,1,"","ExecutableCode"],[0,0,1,"","ExecutableCodeDict"],[0,5,1,"","ExternalApi"],[0,0,1,"","ExternalApiDict"],[0,5,1,"","ExternalApiElasticSearchParams"],[0,0,1,"","ExternalApiElasticSearchParamsDict"],[0,5,1,"","ExternalApiSimpleSearchParams"],[0,0,1,"","ExternalApiSimpleSearchParamsDict"],[0,0,1,"","FeatureSelectionPreference"],[0,5,1,"","FetchPredictOperationConfig"],[0,0,1,"","FetchPredictOperationConfigDict"],[0,5,1,"","File"],[0,5,1,"","FileData"],[0,0,1,"","FileDataDict"],[0,0,1,"","FileDict"],[0,5,1,"","FileSearch"],[0,0,1,"","FileSearchDict"],[0,5,1,"","FileSearchStore"],[0,0,1,"","FileSearchStoreDict"],[0,0,1,"","FileSource"],[0,0,1,"","FileState"],[0,5,1,"","FileStatus"],[0,0,1,"","FileStatusDict"],[0,0,1,"","FinishReason"],[0,5,1,"","FullFineTuningSpec"],[0,0,1,"","FullFineTuningSpecDict"],[0,5,1,"","FunctionCall"],[0,0,1,"","FunctionCallDict"],[0,5,1,"","FunctionCallingConfig"],[0,0,1,"","FunctionCallingConfigDict"],[0,0,1,"","FunctionCallingConfigMode"],[0,5,1,"","FunctionDeclaration"],[0,0,1,"","FunctionDeclarationDict"],[0,5,1,"","FunctionResponse"],[0,5,1,"","FunctionResponseBlob"],[0,0,1,"","FunctionResponseBlobDict"],[0,0,1,"","FunctionResponseDict"],[0,5,1,"","FunctionResponseFileData"],[0,0,1,"","FunctionResponseFileDataDict"],[0,5,1,"","FunctionResponsePart"],[0,0,1,"","FunctionResponsePartDict"],[0,0,1,"","FunctionResponseScheduling"],[0,5,1,"","GcsDestination"],[0,0,1,"","GcsDestinationDict"],[0,5,1,"","GcsSource"],[0,0,1,"","GcsSourceDict"],[0,5,1,"","GeminiPreferenceExample"],[0,5,1,"","GeminiPreferenceExampleCompletion"],[0,0,1,"","GeminiPreferenceExampleCompletionDict"],[0,0,1,"","GeminiPreferenceExampleDict"],[0,5,1,"","GenerateContentConfig"],[0,0,1,"","GenerateContentConfigDict"],[0,5,1,"","GenerateContentResponse"],[0,0,1,"","GenerateContentResponseDict"],[0,5,1,"","GenerateContentResponsePromptFeedback"],[0,0,1,"","GenerateContentResponsePromptFeedbackDict"],[0,5,1,"","GenerateContentResponseUsageMetadata"],[0,0,1,"","GenerateContentResponseUsageMetadataDict"],[0,5,1,"","GenerateImagesConfig"],[0,0,1,"","GenerateImagesConfigDict"],[0,5,1,"","GenerateImagesResponse"],[0,0,1,"","GenerateImagesResponseDict"],[0,5,1,"","GenerateVideosConfig"],[0,0,1,"","GenerateVideosConfigDict"],[0,5,1,"","GenerateVideosOperation"],[0,5,1,"","GenerateVideosResponse"],[0,0,1,"","GenerateVideosResponseDict"],[0,5,1,"","GenerateVideosSource"],[0,0,1,"","GenerateVideosSourceDict"],[0,5,1,"","GeneratedImage"],[0,0,1,"","GeneratedImageDict"],[0,5,1,"","GeneratedImageMask"],[0,0,1,"","GeneratedImageMaskDict"],[0,5,1,"","GeneratedVideo"],[0,0,1,"","GeneratedVideoDict"],[0,5,1,"","GenerationConfig"],[0,0,1,"","GenerationConfigDict"],[0,5,1,"","GenerationConfigRoutingConfig"],[0,5,1,"","GenerationConfigRoutingConfigAutoRoutingMode"],[0,0,1,"","GenerationConfigRoutingConfigAutoRoutingModeDict"],[0,0,1,"","GenerationConfigRoutingConfigDict"],[0,5,1,"","GenerationConfigRoutingConfigManualRoutingMode"],[0,0,1,"","GenerationConfigRoutingConfigManualRoutingModeDict"],[0,5,1,"","GenerationConfigThinkingConfig"],[0,0,1,"","GenerationConfigThinkingConfigDict"],[0,5,1,"","GetBatchJobConfig"],[0,0,1,"","GetBatchJobConfigDict"],[0,5,1,"","GetCachedContentConfig"],[0,0,1,"","GetCachedContentConfigDict"],[0,5,1,"","GetDocumentConfig"],[0,0,1,"","GetDocumentConfigDict"],[0,5,1,"","GetFileConfig"],[0,0,1,"","GetFileConfigDict"],[0,5,1,"","GetFileSearchStoreConfig"],[0,0,1,"","GetFileSearchStoreConfigDict"],[0,5,1,"","GetModelConfig"],[0,0,1,"","GetModelConfigDict"],[0,5,1,"","GetOperationConfig"],[0,0,1,"","GetOperationConfigDict"],[0,5,1,"","GetTuningJobConfig"],[0,0,1,"","GetTuningJobConfigDict"],[0,5,1,"","GoogleMaps"],[0,0,1,"","GoogleMapsDict"],[0,5,1,"","GoogleMapsGroundingTypes"],[0,0,1,"","GoogleMapsGroundingTypesDict"],[0,5,1,"","GoogleMapsPlaces"],[0,0,1,"","GoogleMapsPlacesDict"],[0,5,1,"","GoogleMapsRouting"],[0,0,1,"","GoogleMapsRoutingDict"],[0,5,1,"","GoogleRpcStatus"],[0,0,1,"","GoogleRpcStatusDict"],[0,5,1,"","GoogleSearch"],[0,0,1,"","GoogleSearchDict"],[0,5,1,"","GoogleSearchRetrieval"],[0,0,1,"","GoogleSearchRetrievalDict"],[0,5,1,"","GoogleTypeDate"],[0,0,1,"","GoogleTypeDateDict"],[0,5,1,"","GroundingChunk"],[0,5,1,"","GroundingChunkCustomMetadata"],[0,0,1,"","GroundingChunkCustomMetadataDict"],[0,0,1,"","GroundingChunkDict"],[0,5,1,"","GroundingChunkImage"],[0,0,1,"","GroundingChunkImageDict"],[0,5,1,"","GroundingChunkMaps"],[0,0,1,"","GroundingChunkMapsDict"],[0,5,1,"","GroundingChunkMapsPlaceAnswerSources"],[0,5,1,"","GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution"],[0,0,1,"","GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict"],[0,0,1,"","GroundingChunkMapsPlaceAnswerSourcesDict"],[0,5,1,"","GroundingChunkMapsPlaceAnswerSourcesReviewSnippet"],[0,0,1,"","GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict"],[0,5,1,"","GroundingChunkMapsRoute"],[0,0,1,"","GroundingChunkMapsRouteDict"],[0,5,1,"","GroundingChunkRetrievedContext"],[0,0,1,"","GroundingChunkRetrievedContextDict"],[0,5,1,"","GroundingChunkStringList"],[0,0,1,"","GroundingChunkStringListDict"],[0,5,1,"","GroundingChunkWeb"],[0,0,1,"","GroundingChunkWebDict"],[0,5,1,"","GroundingMetadata"],[0,0,1,"","GroundingMetadataDict"],[0,5,1,"","GroundingMetadataSourceFlaggingUri"],[0,0,1,"","GroundingMetadataSourceFlaggingUriDict"],[0,5,1,"","GroundingSupport"],[0,0,1,"","GroundingSupportDict"],[0,0,1,"","HarmBlockMethod"],[0,0,1,"","HarmBlockThreshold"],[0,0,1,"","HarmCategory"],[0,0,1,"","HarmProbability"],[0,0,1,"","HarmSeverity"],[0,5,1,"","HistoryConfig"],[0,0,1,"","HistoryConfigDict"],[0,0,1,"","HttpElementLocation"],[0,5,1,"","HttpOptions"],[0,0,1,"","HttpOptionsDict"],[0,5,1,"","HttpResponse"],[0,0,1,"","HttpResponseDict"],[0,5,1,"","HttpRetryOptions"],[0,0,1,"","HttpRetryOptionsDict"],[0,5,1,"","Image"],[0,5,1,"","ImageConfig"],[0,0,1,"","ImageConfigDict"],[0,5,1,"","ImageConfigImageOutputOptions"],[0,0,1,"","ImageConfigImageOutputOptionsDict"],[0,0,1,"","ImageDict"],[0,0,1,"","ImagePromptLanguage"],[0,0,1,"","ImageResizeMode"],[0,5,1,"","ImageResponseFormat"],[0,0,1,"","ImageResponseFormatDict"],[0,5,1,"","ImageSearch"],[0,0,1,"","ImageSearchDict"],[0,0,1,"","ImageSize"],[0,5,1,"","ImportFileConfig"],[0,0,1,"","ImportFileConfigDict"],[0,5,1,"","ImportFileOperation"],[0,5,1,"","ImportFileResponse"],[0,0,1,"","ImportFileResponseDict"],[0,5,1,"","InlinedEmbedContentResponse"],[0,0,1,"","InlinedEmbedContentResponseDict"],[0,5,1,"","InlinedRequest"],[0,0,1,"","InlinedRequestDict"],[0,5,1,"","InlinedResponse"],[0,0,1,"","InlinedResponseDict"],[0,5,1,"","Interval"],[0,0,1,"","IntervalDict"],[0,5,1,"","JSONSchema"],[0,0,1,"","JSONSchemaType"],[0,5,1,"","JobError"],[0,0,1,"","JobErrorDict"],[0,0,1,"","JobState"],[0,5,1,"","LLMBasedMetricSpec"],[0,0,1,"","LLMBasedMetricSpecDict"],[0,0,1,"","Language"],[0,5,1,"","LanguageAuto"],[0,0,1,"","LanguageAutoDict"],[0,5,1,"","LanguageHints"],[0,0,1,"","LanguageHintsDict"],[0,5,1,"","LatLng"],[0,0,1,"","LatLngDict"],[0,5,1,"","ListBatchJobsConfig"],[0,0,1,"","ListBatchJobsConfigDict"],[0,5,1,"","ListBatchJobsResponse"],[0,0,1,"","ListBatchJobsResponseDict"],[0,5,1,"","ListCachedContentsConfig"],[0,0,1,"","ListCachedContentsConfigDict"],[0,5,1,"","ListCachedContentsResponse"],[0,0,1,"","ListCachedContentsResponseDict"],[0,5,1,"","ListDocumentsConfig"],[0,0,1,"","ListDocumentsConfigDict"],[0,5,1,"","ListDocumentsResponse"],[0,0,1,"","ListDocumentsResponseDict"],[0,5,1,"","ListFileSearchStoresConfig"],[0,0,1,"","ListFileSearchStoresConfigDict"],[0,5,1,"","ListFileSearchStoresResponse"],[0,0,1,"","ListFileSearchStoresResponseDict"],[0,5,1,"","ListFilesConfig"],[0,0,1,"","ListFilesConfigDict"],[0,5,1,"","ListFilesResponse"],[0,0,1,"","ListFilesResponseDict"],[0,5,1,"","ListModelsConfig"],[0,0,1,"","ListModelsConfigDict"],[0,5,1,"","ListModelsResponse"],[0,0,1,"","ListModelsResponseDict"],[0,5,1,"","ListTuningJobsConfig"],[0,0,1,"","ListTuningJobsConfigDict"],[0,5,1,"","ListTuningJobsResponse"],[0,0,1,"","ListTuningJobsResponseDict"],[0,5,1,"","LiveClientContent"],[0,0,1,"","LiveClientContentDict"],[0,5,1,"","LiveClientMessage"],[0,0,1,"","LiveClientMessageDict"],[0,5,1,"","LiveClientRealtimeInput"],[0,0,1,"","LiveClientRealtimeInputDict"],[0,5,1,"","LiveClientSetup"],[0,0,1,"","LiveClientSetupDict"],[0,5,1,"","LiveClientToolResponse"],[0,0,1,"","LiveClientToolResponseDict"],[0,5,1,"","LiveConnectConfig"],[0,0,1,"","LiveConnectConfigDict"],[0,5,1,"","LiveConnectConstraints"],[0,0,1,"","LiveConnectConstraintsDict"],[0,5,1,"","LiveConnectParameters"],[0,0,1,"","LiveConnectParametersDict"],[0,5,1,"","LiveMusicClientContent"],[0,0,1,"","LiveMusicClientContentDict"],[0,5,1,"","LiveMusicClientMessage"],[0,0,1,"","LiveMusicClientMessageDict"],[0,5,1,"","LiveMusicClientSetup"],[0,0,1,"","LiveMusicClientSetupDict"],[0,5,1,"","LiveMusicConnectParameters"],[0,0,1,"","LiveMusicConnectParametersDict"],[0,5,1,"","LiveMusicFilteredPrompt"],[0,0,1,"","LiveMusicFilteredPromptDict"],[0,5,1,"","LiveMusicGenerationConfig"],[0,0,1,"","LiveMusicGenerationConfigDict"],[0,0,1,"","LiveMusicPlaybackControl"],[0,5,1,"","LiveMusicServerContent"],[0,0,1,"","LiveMusicServerContentDict"],[0,5,1,"","LiveMusicServerMessage"],[0,0,1,"","LiveMusicServerMessageDict"],[0,5,1,"","LiveMusicServerSetupComplete"],[0,0,1,"","LiveMusicServerSetupCompleteDict"],[0,5,1,"","LiveMusicSetConfigParameters"],[0,0,1,"","LiveMusicSetConfigParametersDict"],[0,5,1,"","LiveMusicSetWeightedPromptsParameters"],[0,0,1,"","LiveMusicSetWeightedPromptsParametersDict"],[0,5,1,"","LiveMusicSourceMetadata"],[0,0,1,"","LiveMusicSourceMetadataDict"],[0,5,1,"","LiveSendRealtimeInputParameters"],[0,0,1,"","LiveSendRealtimeInputParametersDict"],[0,5,1,"","LiveServerContent"],[0,0,1,"","LiveServerContentDict"],[0,5,1,"","LiveServerGoAway"],[0,0,1,"","LiveServerGoAwayDict"],[0,5,1,"","LiveServerMessage"],[0,0,1,"","LiveServerMessageDict"],[0,5,1,"","LiveServerSessionResumptionUpdate"],[0,0,1,"","LiveServerSessionResumptionUpdateDict"],[0,5,1,"","LiveServerSetupComplete"],[0,0,1,"","LiveServerSetupCompleteDict"],[0,5,1,"","LiveServerToolCall"],[0,5,1,"","LiveServerToolCallCancellation"],[0,0,1,"","LiveServerToolCallCancellationDict"],[0,0,1,"","LiveServerToolCallDict"],[0,5,1,"","LogprobsResult"],[0,5,1,"","LogprobsResultCandidate"],[0,0,1,"","LogprobsResultCandidateDict"],[0,0,1,"","LogprobsResultDict"],[0,5,1,"","LogprobsResultTopCandidates"],[0,0,1,"","LogprobsResultTopCandidatesDict"],[0,5,1,"","MaskReferenceConfig"],[0,0,1,"","MaskReferenceConfigDict"],[0,5,1,"","MaskReferenceImage"],[0,0,1,"","MaskReferenceImageDict"],[0,0,1,"","MaskReferenceMode"],[0,0,1,"","MatchOperation"],[0,5,1,"","McpServer"],[0,0,1,"","McpServerDict"],[0,0,1,"","MediaModality"],[0,0,1,"","MediaResolution"],[0,5,1,"","Metric"],[0,0,1,"","MetricDict"],[0,0,1,"","Modality"],[0,5,1,"","ModalityTokenCount"],[0,0,1,"","ModalityTokenCountDict"],[0,5,1,"","Model"],[0,5,1,"","ModelArmorConfig"],[0,0,1,"","ModelArmorConfigDict"],[0,5,1,"","ModelContent"],[0,0,1,"","ModelDict"],[0,5,1,"","ModelSelectionConfig"],[0,0,1,"","ModelSelectionConfigDict"],[0,0,1,"","ModelStage"],[0,5,1,"","ModelStatus"],[0,0,1,"","ModelStatusDict"],[0,5,1,"","MultiSpeakerVoiceConfig"],[0,0,1,"","MultiSpeakerVoiceConfigDict"],[0,0,1,"","MusicGenerationMode"],[0,0,1,"","Operation"],[0,0,1,"","Outcome"],[0,5,1,"","OutputConfig"],[0,0,1,"","OutputConfigDict"],[0,5,1,"","OutputInfo"],[0,0,1,"","OutputInfoDict"],[0,0,1,"","PairwiseChoice"],[0,5,1,"","PairwiseMetricResult"],[0,0,1,"","PairwiseMetricResultDict"],[0,5,1,"","PairwiseMetricSpec"],[0,0,1,"","PairwiseMetricSpecDict"],[0,5,1,"","Part"],[0,0,1,"","PartDict"],[0,5,1,"","PartMediaResolution"],[0,0,1,"","PartMediaResolutionDict"],[0,0,1,"","PartMediaResolutionLevel"],[0,5,1,"","PartialArg"],[0,0,1,"","PartialArgDict"],[0,5,1,"","PartnerModelTuningSpec"],[0,0,1,"","PartnerModelTuningSpecDict"],[0,0,1,"","PersonGeneration"],[0,0,1,"","PhishBlockThreshold"],[0,5,1,"","PointwiseMetricResult"],[0,0,1,"","PointwiseMetricResultDict"],[0,5,1,"","PointwiseMetricSpec"],[0,0,1,"","PointwiseMetricSpecDict"],[0,5,1,"","PreTunedModel"],[0,0,1,"","PreTunedModelDict"],[0,5,1,"","PrebuiltVoiceConfig"],[0,0,1,"","PrebuiltVoiceConfigDict"],[0,5,1,"","PredefinedMetricSpec"],[0,0,1,"","PredefinedMetricSpecDict"],[0,5,1,"","PreferenceOptimizationDataStats"],[0,0,1,"","PreferenceOptimizationDataStatsDict"],[0,5,1,"","PreferenceOptimizationHyperParameters"],[0,0,1,"","PreferenceOptimizationHyperParametersDict"],[0,5,1,"","PreferenceOptimizationSpec"],[0,0,1,"","PreferenceOptimizationSpecDict"],[0,5,1,"","ProactivityConfig"],[0,0,1,"","ProactivityConfigDict"],[0,5,1,"","ProductImage"],[0,0,1,"","ProductImageDict"],[0,5,1,"","ProjectOperation"],[0,0,1,"","ProjectOperationDict"],[0,0,1,"","ProminentPeople"],[0,5,1,"","RagChunk"],[0,0,1,"","RagChunkDict"],[0,5,1,"","RagChunkPageSpan"],[0,0,1,"","RagChunkPageSpanDict"],[0,5,1,"","RagRetrievalConfig"],[0,0,1,"","RagRetrievalConfigDict"],[0,5,1,"","RagRetrievalConfigFilter"],[0,0,1,"","RagRetrievalConfigFilterDict"],[0,5,1,"","RagRetrievalConfigHybridSearch"],[0,0,1,"","RagRetrievalConfigHybridSearchDict"],[0,5,1,"","RagRetrievalConfigRanking"],[0,0,1,"","RagRetrievalConfigRankingDict"],[0,5,1,"","RagRetrievalConfigRankingLlmRanker"],[0,0,1,"","RagRetrievalConfigRankingLlmRankerDict"],[0,5,1,"","RagRetrievalConfigRankingRankService"],[0,0,1,"","RagRetrievalConfigRankingRankServiceDict"],[0,5,1,"","RawOutput"],[0,0,1,"","RawOutputDict"],[0,5,1,"","RawReferenceImage"],[0,0,1,"","RawReferenceImageDict"],[0,5,1,"","RealtimeInputConfig"],[0,0,1,"","RealtimeInputConfigDict"],[0,5,1,"","RecontextImageConfig"],[0,0,1,"","RecontextImageConfigDict"],[0,5,1,"","RecontextImageResponse"],[0,0,1,"","RecontextImageResponseDict"],[0,5,1,"","RecontextImageSource"],[0,0,1,"","RecontextImageSourceDict"],[0,5,1,"","RegisterFilesConfig"],[0,0,1,"","RegisterFilesConfigDict"],[0,5,1,"","RegisterFilesResponse"],[0,0,1,"","RegisterFilesResponseDict"],[0,5,1,"","ReinforcementTuningAutoraterScorer"],[0,0,1,"","ReinforcementTuningAutoraterScorerDict"],[0,5,1,"","ReinforcementTuningAutoraterScorerExactMatchScorer"],[0,0,1,"","ReinforcementTuningAutoraterScorerExactMatchScorerDict"],[0,5,1,"","ReinforcementTuningAutoraterScorerParsedResponseConversionScorer"],[0,0,1,"","ReinforcementTuningAutoraterScorerParsedResponseConversionScorerDict"],[0,5,1,"","ReinforcementTuningCloudRunRewardScorer"],[0,0,1,"","ReinforcementTuningCloudRunRewardScorerDict"],[0,5,1,"","ReinforcementTuningCodeExecutionRewardScorer"],[0,0,1,"","ReinforcementTuningCodeExecutionRewardScorerDict"],[0,5,1,"","ReinforcementTuningExample"],[0,0,1,"","ReinforcementTuningExampleDict"],[0,5,1,"","ReinforcementTuningHyperParameters"],[0,0,1,"","ReinforcementTuningHyperParametersDict"],[0,5,1,"","ReinforcementTuningParseResponseConfig"],[0,0,1,"","ReinforcementTuningParseResponseConfigDict"],[0,5,1,"","ReinforcementTuningRewardInfo"],[0,0,1,"","ReinforcementTuningRewardInfoDict"],[0,5,1,"","ReinforcementTuningSpec"],[0,0,1,"","ReinforcementTuningSpecDict"],[0,5,1,"","ReinforcementTuningStringMatchRewardScorer"],[0,0,1,"","ReinforcementTuningStringMatchRewardScorerDict"],[0,5,1,"","ReinforcementTuningStringMatchRewardScorerJsonMatchExpression"],[0,0,1,"","ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict"],[0,5,1,"","ReinforcementTuningStringMatchRewardScorerStringMatchExpression"],[0,0,1,"","ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict"],[0,0,1,"","ReinforcementTuningThinkingLevel"],[0,5,1,"","ReinforcementTuningUserDatasetExamples"],[0,0,1,"","ReinforcementTuningUserDatasetExamplesDict"],[0,5,1,"","ReplayFile"],[0,0,1,"","ReplayFileDict"],[0,5,1,"","ReplayInteraction"],[0,0,1,"","ReplayInteractionDict"],[0,5,1,"","ReplayRequest"],[0,0,1,"","ReplayRequestDict"],[0,5,1,"","ReplayResponse"],[0,0,1,"","ReplayResponseDict"],[0,5,1,"","ReplicatedVoiceConfig"],[0,0,1,"","ReplicatedVoiceConfigDict"],[0,0,1,"","ResourceScope"],[0,5,1,"","ResponseFormat"],[0,0,1,"","ResponseFormatDict"],[0,0,1,"","ResponseParseType"],[0,5,1,"","Retrieval"],[0,5,1,"","RetrievalConfig"],[0,0,1,"","RetrievalConfigDict"],[0,0,1,"","RetrievalDict"],[0,5,1,"","RetrievalMetadata"],[0,0,1,"","RetrievalMetadataDict"],[0,5,1,"","RougeMetricValue"],[0,0,1,"","RougeMetricValueDict"],[0,5,1,"","RougeSpec"],[0,0,1,"","RougeSpecDict"],[0,0,1,"","RubricContentType"],[0,5,1,"","RubricGenerationSpec"],[0,0,1,"","RubricGenerationSpecDict"],[0,5,1,"","SafetyAttributes"],[0,0,1,"","SafetyAttributesDict"],[0,0,1,"","SafetyFilterLevel"],[0,0,1,"","SafetyPolicy"],[0,5,1,"","SafetyRating"],[0,0,1,"","SafetyRatingDict"],[0,5,1,"","SafetySetting"],[0,0,1,"","SafetySettingDict"],[0,0,1,"","Scale"],[0,5,1,"","Schema"],[0,0,1,"","SchemaDict"],[0,5,1,"","ScribbleImage"],[0,0,1,"","ScribbleImageDict"],[0,5,1,"","SearchEntryPoint"],[0,0,1,"","SearchEntryPointDict"],[0,5,1,"","SearchTypes"],[0,0,1,"","SearchTypesDict"],[0,5,1,"","Segment"],[0,0,1,"","SegmentDict"],[0,5,1,"","SegmentImageConfig"],[0,0,1,"","SegmentImageConfigDict"],[0,5,1,"","SegmentImageResponse"],[0,0,1,"","SegmentImageResponseDict"],[0,5,1,"","SegmentImageSource"],[0,0,1,"","SegmentImageSourceDict"],[0,0,1,"","SegmentMode"],[0,0,1,"","ServiceTier"],[0,5,1,"","SessionResumptionConfig"],[0,0,1,"","SessionResumptionConfigDict"],[0,5,1,"","SingleEmbedContentResponse"],[0,0,1,"","SingleEmbedContentResponseDict"],[0,5,1,"","SingleReinforcementTuningRewardConfig"],[0,0,1,"","SingleReinforcementTuningRewardConfigDict"],[0,5,1,"","SlidingWindow"],[0,0,1,"","SlidingWindowDict"],[0,5,1,"","SpeakerVoiceConfig"],[0,0,1,"","SpeakerVoiceConfigDict"],[0,5,1,"","SpeechConfig"],[0,0,1,"","SpeechConfigDict"],[0,0,1,"","StartSensitivity"],[0,5,1,"","StreamableHttpTransport"],[0,0,1,"","StreamableHttpTransportDict"],[0,5,1,"","StringList"],[0,0,1,"","StringListDict"],[0,5,1,"","StyleReferenceConfig"],[0,0,1,"","StyleReferenceConfigDict"],[0,5,1,"","StyleReferenceImage"],[0,0,1,"","StyleReferenceImageDict"],[0,5,1,"","SubjectReferenceConfig"],[0,0,1,"","SubjectReferenceConfigDict"],[0,5,1,"","SubjectReferenceImage"],[0,0,1,"","SubjectReferenceImageDict"],[0,0,1,"","SubjectReferenceType"],[0,5,1,"","SupervisedHyperParameters"],[0,0,1,"","SupervisedHyperParametersDict"],[0,5,1,"","SupervisedTuningDataStats"],[0,0,1,"","SupervisedTuningDataStatsDict"],[0,5,1,"","SupervisedTuningDatasetDistribution"],[0,5,1,"","SupervisedTuningDatasetDistributionDatasetBucket"],[0,0,1,"","SupervisedTuningDatasetDistributionDatasetBucketDict"],[0,0,1,"","SupervisedTuningDatasetDistributionDict"],[0,5,1,"","SupervisedTuningSpec"],[0,0,1,"","SupervisedTuningSpecDict"],[0,5,1,"","TestTableFile"],[0,0,1,"","TestTableFileDict"],[0,5,1,"","TestTableItem"],[0,0,1,"","TestTableItemDict"],[0,5,1,"","TextResponseFormat"],[0,0,1,"","TextResponseFormatDict"],[0,5,1,"","ThinkingConfig"],[0,0,1,"","ThinkingConfigDict"],[0,0,1,"","ThinkingLevel"],[0,5,1,"","TokensInfo"],[0,0,1,"","TokensInfoDict"],[0,5,1,"","Tool"],[0,5,1,"","ToolCall"],[0,0,1,"","ToolCallDict"],[0,5,1,"","ToolCodeExecution"],[0,0,1,"","ToolCodeExecutionDict"],[0,5,1,"","ToolConfig"],[0,0,1,"","ToolConfigDict"],[0,0,1,"","ToolDict"],[0,5,1,"","ToolExaAiSearch"],[0,0,1,"","ToolExaAiSearchDict"],[0,5,1,"","ToolParallelAiSearch"],[0,0,1,"","ToolParallelAiSearchDict"],[0,5,1,"","ToolResponse"],[0,0,1,"","ToolResponseDict"],[0,0,1,"","ToolType"],[0,0,1,"","TrafficType"],[0,5,1,"","Transcription"],[0,0,1,"","TranscriptionDict"],[0,5,1,"","TranslationConfig"],[0,0,1,"","TranslationConfigDict"],[0,5,1,"","TunedModel"],[0,5,1,"","TunedModelCheckpoint"],[0,0,1,"","TunedModelCheckpointDict"],[0,0,1,"","TunedModelDict"],[0,5,1,"","TunedModelInfo"],[0,0,1,"","TunedModelInfoDict"],[0,5,1,"","TuningDataStats"],[0,0,1,"","TuningDataStatsDict"],[0,5,1,"","TuningDataset"],[0,0,1,"","TuningDatasetDict"],[0,5,1,"","TuningExample"],[0,0,1,"","TuningExampleDict"],[0,5,1,"","TuningJob"],[0,0,1,"","TuningJobDict"],[0,5,1,"","TuningJobMetadata"],[0,0,1,"","TuningJobMetadataDict"],[0,0,1,"","TuningJobState"],[0,0,1,"","TuningMethod"],[0,0,1,"","TuningMode"],[0,5,1,"","TuningOperation"],[0,0,1,"","TuningOperationDict"],[0,0,1,"","TuningSpeed"],[0,0,1,"","TuningTask"],[0,5,1,"","TuningValidationDataset"],[0,0,1,"","TuningValidationDatasetDict"],[0,0,1,"","TurnCompleteReason"],[0,0,1,"","TurnCoverage"],[0,0,1,"","Type"],[0,5,1,"","UnifiedMetric"],[0,0,1,"","UnifiedMetricDict"],[0,5,1,"","UpdateCachedContentConfig"],[0,0,1,"","UpdateCachedContentConfigDict"],[0,5,1,"","UpdateModelConfig"],[0,0,1,"","UpdateModelConfigDict"],[0,5,1,"","UploadFileConfig"],[0,0,1,"","UploadFileConfigDict"],[0,5,1,"","UploadToFileSearchStoreConfig"],[0,0,1,"","UploadToFileSearchStoreConfigDict"],[0,5,1,"","UploadToFileSearchStoreOperation"],[0,5,1,"","UploadToFileSearchStoreResponse"],[0,0,1,"","UploadToFileSearchStoreResponseDict"],[0,5,1,"","UploadToFileSearchStoreResumableResponse"],[0,0,1,"","UploadToFileSearchStoreResumableResponseDict"],[0,5,1,"","UpscaleImageConfig"],[0,0,1,"","UpscaleImageConfigDict"],[0,5,1,"","UpscaleImageParameters"],[0,0,1,"","UpscaleImageParametersDict"],[0,5,1,"","UpscaleImageResponse"],[0,0,1,"","UpscaleImageResponseDict"],[0,5,1,"","UrlContext"],[0,0,1,"","UrlContextDict"],[0,5,1,"","UrlContextMetadata"],[0,0,1,"","UrlContextMetadataDict"],[0,5,1,"","UrlMetadata"],[0,0,1,"","UrlMetadataDict"],[0,0,1,"","UrlRetrievalStatus"],[0,5,1,"","UsageMetadata"],[0,0,1,"","UsageMetadataDict"],[0,5,1,"","UserContent"],[0,0,1,"","VadSignalType"],[0,5,1,"","ValidateRewardConfig"],[0,0,1,"","ValidateRewardConfigDict"],[0,5,1,"","ValidateRewardResponse"],[0,0,1,"","ValidateRewardResponseDict"],[0,5,1,"","VeoHyperParameters"],[0,0,1,"","VeoHyperParametersDict"],[0,5,1,"","VeoLoraTuningSpec"],[0,0,1,"","VeoLoraTuningSpecDict"],[0,5,1,"","VeoTuningSpec"],[0,0,1,"","VeoTuningSpecDict"],[0,5,1,"","VertexAISearch"],[0,5,1,"","VertexAISearchDataStoreSpec"],[0,0,1,"","VertexAISearchDataStoreSpecDict"],[0,0,1,"","VertexAISearchDict"],[0,5,1,"","VertexMultimodalDatasetDestination"],[0,0,1,"","VertexMultimodalDatasetDestinationDict"],[0,5,1,"","VertexRagStore"],[0,0,1,"","VertexRagStoreDict"],[0,5,1,"","VertexRagStoreRagResource"],[0,0,1,"","VertexRagStoreRagResourceDict"],[0,5,1,"","Video"],[0,0,1,"","VideoCompressionQuality"],[0,0,1,"","VideoDict"],[0,5,1,"","VideoGenerationMask"],[0,0,1,"","VideoGenerationMaskDict"],[0,0,1,"","VideoGenerationMaskMode"],[0,5,1,"","VideoGenerationReferenceImage"],[0,0,1,"","VideoGenerationReferenceImageDict"],[0,0,1,"","VideoGenerationReferenceType"],[0,5,1,"","VideoMetadata"],[0,0,1,"","VideoMetadataDict"],[0,0,1,"","VideoOrientation"],[0,5,1,"","VideoResponseFormat"],[0,0,1,"","VideoResponseFormatDict"],[0,5,1,"","VoiceActivity"],[0,5,1,"","VoiceActivityDetectionSignal"],[0,0,1,"","VoiceActivityDetectionSignalDict"],[0,0,1,"","VoiceActivityDict"],[0,0,1,"","VoiceActivityType"],[0,5,1,"","VoiceConfig"],[0,0,1,"","VoiceConfigDict"],[0,5,1,"","VoiceConsentSignature"],[0,0,1,"","VoiceConsentSignatureDict"],[0,5,1,"","WebSearch"],[0,0,1,"","WebSearchDict"],[0,5,1,"","WebhookConfig"],[0,0,1,"","WebhookConfigDict"],[0,5,1,"","WeightedPrompt"],[0,0,1,"","WeightedPromptDict"],[0,5,1,"","WhiteSpaceConfig"],[0,0,1,"","WhiteSpaceConfigDict"],[0,5,1,"","WordInfo"],[0,0,1,"","WordInfoDict"]],"genai.types.ActivityHandling":[[0,4,1,"","ACTIVITY_HANDLING_UNSPECIFIED"],[0,4,1,"","NO_INTERRUPTION"],[0,4,1,"","START_OF_ACTIVITY_INTERRUPTS"]],"genai.types.AdapterSize":[[0,4,1,"","ADAPTER_SIZE_EIGHT"],[0,4,1,"","ADAPTER_SIZE_FOUR"],[0,4,1,"","ADAPTER_SIZE_ONE"],[0,4,1,"","ADAPTER_SIZE_SIXTEEN"],[0,4,1,"","ADAPTER_SIZE_THIRTY_TWO"],[0,4,1,"","ADAPTER_SIZE_TWO"],[0,4,1,"","ADAPTER_SIZE_UNSPECIFIED"]],"genai.types.AggregationMetric":[[0,4,1,"","AGGREGATION_METRIC_UNSPECIFIED"],[0,4,1,"","AVERAGE"],[0,4,1,"","MAXIMUM"],[0,4,1,"","MEDIAN"],[0,4,1,"","MINIMUM"],[0,4,1,"","MODE"],[0,4,1,"","PERCENTILE_P90"],[0,4,1,"","PERCENTILE_P95"],[0,4,1,"","PERCENTILE_P99"],[0,4,1,"","STANDARD_DEVIATION"],[0,4,1,"","VARIANCE"]],"genai.types.AggregationOutput":[[0,6,1,"","aggregation_results"],[0,6,1,"","dataset"]],"genai.types.AggregationOutputDict":[[0,4,1,"","aggregation_results"],[0,4,1,"","dataset"]],"genai.types.AggregationResult":[[0,6,1,"","aggregation_metric"],[0,6,1,"","bleu_metric_value"],[0,6,1,"","custom_code_execution_result"],[0,6,1,"","exact_match_metric_value"],[0,6,1,"","pairwise_metric_result"],[0,6,1,"","pointwise_metric_result"],[0,6,1,"","rouge_metric_value"]],"genai.types.AggregationResultDict":[[0,4,1,"","aggregation_metric"],[0,4,1,"","bleu_metric_value"],[0,4,1,"","custom_code_execution_result"],[0,4,1,"","exact_match_metric_value"],[0,4,1,"","pairwise_metric_result"],[0,4,1,"","pointwise_metric_result"],[0,4,1,"","rouge_metric_value"]],"genai.types.ApiAuth":[[0,6,1,"","api_key_config"]],"genai.types.ApiAuthApiKeyConfig":[[0,6,1,"","api_key_secret_version"],[0,6,1,"","api_key_string"]],"genai.types.ApiAuthApiKeyConfigDict":[[0,4,1,"","api_key_secret_version"],[0,4,1,"","api_key_string"]],"genai.types.ApiAuthDict":[[0,4,1,"","api_key_config"]],"genai.types.ApiKeyConfig":[[0,6,1,"","api_key_secret"],[0,6,1,"","api_key_string"],[0,6,1,"","http_element_location"],[0,6,1,"","name"]],"genai.types.ApiKeyConfigDict":[[0,4,1,"","api_key_secret"],[0,4,1,"","api_key_string"],[0,4,1,"","http_element_location"],[0,4,1,"","name"]],"genai.types.ApiSpec":[[0,4,1,"","API_SPEC_UNSPECIFIED"],[0,4,1,"","ELASTIC_SEARCH"],[0,4,1,"","SIMPLE_SEARCH"]],"genai.types.AspectRatio":[[0,4,1,"","ASPECT_RATIO_EIGHT_BY_ONE"],[0,4,1,"","ASPECT_RATIO_FIVE_BY_FOUR"],[0,4,1,"","ASPECT_RATIO_FOUR_BY_FIVE"],[0,4,1,"","ASPECT_RATIO_FOUR_BY_ONE"],[0,4,1,"","ASPECT_RATIO_FOUR_BY_THREE"],[0,4,1,"","ASPECT_RATIO_NINE_BY_SIXTEEN"],[0,4,1,"","ASPECT_RATIO_ONE_BY_EIGHT"],[0,4,1,"","ASPECT_RATIO_ONE_BY_FOUR"],[0,4,1,"","ASPECT_RATIO_ONE_BY_ONE"],[0,4,1,"","ASPECT_RATIO_SIXTEEN_BY_NINE"],[0,4,1,"","ASPECT_RATIO_THREE_BY_FOUR"],[0,4,1,"","ASPECT_RATIO_THREE_BY_TWO"],[0,4,1,"","ASPECT_RATIO_TWENTY_ONE_BY_NINE"],[0,4,1,"","ASPECT_RATIO_TWO_BY_THREE"],[0,4,1,"","ASPECT_RATIO_UNSPECIFIED"]],"genai.types.AudioChunk":[[0,6,1,"","data"],[0,6,1,"","mime_type"],[0,6,1,"","source_metadata"]],"genai.types.AudioChunkDict":[[0,4,1,"","data"],[0,4,1,"","mime_type"],[0,4,1,"","source_metadata"]],"genai.types.AudioResponseFormat":[[0,6,1,"","bit_rate"],[0,6,1,"","delivery"],[0,6,1,"","mime_type"],[0,6,1,"","sample_rate"]],"genai.types.AudioResponseFormatDict":[[0,4,1,"","bit_rate"],[0,4,1,"","delivery"],[0,4,1,"","mime_type"],[0,4,1,"","sample_rate"]],"genai.types.AudioTranscriptionConfig":[[0,6,1,"","adaptation_phrases"],[0,6,1,"","custom_vocabulary"],[0,6,1,"","diarization"],[0,6,1,"","language_auto"],[0,6,1,"","language_codes"],[0,6,1,"","language_hints"],[0,6,1,"","word_timestamp"]],"genai.types.AudioTranscriptionConfigDict":[[0,4,1,"","adaptation_phrases"],[0,4,1,"","custom_vocabulary"],[0,4,1,"","diarization"],[0,4,1,"","language_auto"],[0,4,1,"","language_codes"],[0,4,1,"","language_hints"],[0,4,1,"","word_timestamp"]],"genai.types.AuthConfig":[[0,6,1,"","api_key"],[0,6,1,"","api_key_config"],[0,6,1,"","auth_type"],[0,6,1,"","google_service_account_config"],[0,6,1,"","http_basic_auth_config"],[0,6,1,"","oauth_config"],[0,6,1,"","oidc_config"]],"genai.types.AuthConfigDict":[[0,4,1,"","api_key"],[0,4,1,"","api_key_config"],[0,4,1,"","auth_type"],[0,4,1,"","google_service_account_config"],[0,4,1,"","http_basic_auth_config"],[0,4,1,"","oauth_config"],[0,4,1,"","oidc_config"]],"genai.types.AuthConfigGoogleServiceAccountConfig":[[0,6,1,"","service_account"]],"genai.types.AuthConfigGoogleServiceAccountConfigDict":[[0,4,1,"","service_account"]],"genai.types.AuthConfigHttpBasicAuthConfig":[[0,6,1,"","credential_secret"]],"genai.types.AuthConfigHttpBasicAuthConfigDict":[[0,4,1,"","credential_secret"]],"genai.types.AuthConfigOauthConfig":[[0,6,1,"","access_token"],[0,6,1,"","service_account"]],"genai.types.AuthConfigOauthConfigDict":[[0,4,1,"","access_token"],[0,4,1,"","service_account"]],"genai.types.AuthConfigOidcConfig":[[0,6,1,"","id_token"],[0,6,1,"","service_account"]],"genai.types.AuthConfigOidcConfigDict":[[0,4,1,"","id_token"],[0,4,1,"","service_account"]],"genai.types.AuthToken":[[0,6,1,"","name"]],"genai.types.AuthTokenDict":[[0,4,1,"","name"]],"genai.types.AuthType":[[0,4,1,"","API_KEY_AUTH"],[0,4,1,"","AUTH_TYPE_UNSPECIFIED"],[0,4,1,"","GOOGLE_SERVICE_ACCOUNT_AUTH"],[0,4,1,"","HTTP_BASIC_AUTH"],[0,4,1,"","NO_AUTH"],[0,4,1,"","OAUTH"],[0,4,1,"","OIDC_AUTH"]],"genai.types.AutomaticActivityDetection":[[0,6,1,"","disabled"],[0,6,1,"","end_of_speech_sensitivity"],[0,6,1,"","prefix_padding_ms"],[0,6,1,"","silence_duration_ms"],[0,6,1,"","start_of_speech_sensitivity"]],"genai.types.AutomaticActivityDetectionDict":[[0,4,1,"","disabled"],[0,4,1,"","end_of_speech_sensitivity"],[0,4,1,"","prefix_padding_ms"],[0,4,1,"","silence_duration_ms"],[0,4,1,"","start_of_speech_sensitivity"]],"genai.types.AutomaticFunctionCallingConfig":[[0,6,1,"","disable"],[0,6,1,"","ignore_call_history"],[0,6,1,"","maximum_remote_calls"]],"genai.types.AutomaticFunctionCallingConfigDict":[[0,4,1,"","disable"],[0,4,1,"","ignore_call_history"],[0,4,1,"","maximum_remote_calls"]],"genai.types.AutoraterConfig":[[0,6,1,"","autorater_model"],[0,6,1,"","flip_enabled"],[0,6,1,"","generation_config"],[0,6,1,"","sampling_count"]],"genai.types.AutoraterConfigDict":[[0,4,1,"","autorater_model"],[0,4,1,"","flip_enabled"],[0,4,1,"","generation_config"],[0,4,1,"","sampling_count"]],"genai.types.AvatarConfig":[[0,6,1,"","audio_bitrate_bps"],[0,6,1,"","avatar_name"],[0,6,1,"","customized_avatar"],[0,6,1,"","video_bitrate_bps"]],"genai.types.AvatarConfigDict":[[0,4,1,"","audio_bitrate_bps"],[0,4,1,"","avatar_name"],[0,4,1,"","customized_avatar"],[0,4,1,"","video_bitrate_bps"]],"genai.types.BatchJob":[[0,6,1,"","completion_stats"],[0,6,1,"","create_time"],[0,6,1,"","dest"],[0,6,1,"","display_name"],[0,2,1,"","done"],[0,6,1,"","end_time"],[0,6,1,"","error"],[0,6,1,"","model"],[0,6,1,"","name"],[0,6,1,"","output_info"],[0,6,1,"","src"],[0,6,1,"","start_time"],[0,6,1,"","state"],[0,6,1,"","update_time"]],"genai.types.BatchJobDestination":[[0,6,1,"","bigquery_uri"],[0,6,1,"","file_name"],[0,6,1,"","format"],[0,6,1,"","gcs_uri"],[0,6,1,"","inlined_embed_content_responses"],[0,6,1,"","inlined_responses"],[0,6,1,"","vertex_dataset"]],"genai.types.BatchJobDestinationDict":[[0,4,1,"","bigquery_uri"],[0,4,1,"","file_name"],[0,4,1,"","format"],[0,4,1,"","gcs_uri"],[0,4,1,"","inlined_embed_content_responses"],[0,4,1,"","inlined_responses"],[0,4,1,"","vertex_dataset"]],"genai.types.BatchJobDict":[[0,4,1,"","completion_stats"],[0,4,1,"","create_time"],[0,4,1,"","dest"],[0,4,1,"","display_name"],[0,4,1,"","end_time"],[0,4,1,"","error"],[0,4,1,"","model"],[0,4,1,"","name"],[0,4,1,"","output_info"],[0,4,1,"","src"],[0,4,1,"","start_time"],[0,4,1,"","state"],[0,4,1,"","update_time"]],"genai.types.BatchJobOutputInfo":[[0,6,1,"","bigquery_output_table"],[0,6,1,"","gcs_output_directory"],[0,6,1,"","vertex_multimodal_dataset_name"]],"genai.types.BatchJobOutputInfoDict":[[0,4,1,"","bigquery_output_table"],[0,4,1,"","gcs_output_directory"],[0,4,1,"","vertex_multimodal_dataset_name"]],"genai.types.BatchJobSource":[[0,6,1,"","bigquery_uri"],[0,6,1,"","file_name"],[0,6,1,"","format"],[0,6,1,"","gcs_uri"],[0,6,1,"","inlined_requests"],[0,6,1,"","vertex_dataset_name"]],"genai.types.BatchJobSourceDict":[[0,4,1,"","bigquery_uri"],[0,4,1,"","file_name"],[0,4,1,"","format"],[0,4,1,"","gcs_uri"],[0,4,1,"","inlined_requests"],[0,4,1,"","vertex_dataset_name"]],"genai.types.Behavior":[[0,4,1,"","BLOCKING"],[0,4,1,"","NON_BLOCKING"],[0,4,1,"","UNSPECIFIED"]],"genai.types.BigQuerySource":[[0,6,1,"","input_uri"]],"genai.types.BigQuerySourceDict":[[0,4,1,"","input_uri"]],"genai.types.BleuMetricValue":[[0,6,1,"","score"]],"genai.types.BleuMetricValueDict":[[0,4,1,"","score"]],"genai.types.BleuSpec":[[0,6,1,"","use_effective_order"]],"genai.types.BleuSpecDict":[[0,4,1,"","use_effective_order"]],"genai.types.Blob":[[0,1,1,"","as_image"],[0,6,1,"","data"],[0,6,1,"","display_name"],[0,6,1,"","mime_type"]],"genai.types.BlobDict":[[0,4,1,"","data"],[0,4,1,"","display_name"],[0,4,1,"","mime_type"]],"genai.types.BlockedReason":[[0,4,1,"","BLOCKED_REASON_UNSPECIFIED"],[0,4,1,"","BLOCKLIST"],[0,4,1,"","IMAGE_SAFETY"],[0,4,1,"","JAILBREAK"],[0,4,1,"","MODEL_ARMOR"],[0,4,1,"","OTHER"],[0,4,1,"","PROHIBITED_CONTENT"],[0,4,1,"","SAFETY"]],"genai.types.CachedContent":[[0,6,1,"","create_time"],[0,6,1,"","display_name"],[0,6,1,"","expire_time"],[0,6,1,"","model"],[0,6,1,"","name"],[0,6,1,"","update_time"],[0,6,1,"","usage_metadata"]],"genai.types.CachedContentDict":[[0,4,1,"","create_time"],[0,4,1,"","display_name"],[0,4,1,"","expire_time"],[0,4,1,"","model"],[0,4,1,"","name"],[0,4,1,"","update_time"],[0,4,1,"","usage_metadata"]],"genai.types.CachedContentUsageMetadata":[[0,6,1,"","audio_duration_seconds"],[0,6,1,"","image_count"],[0,6,1,"","text_count"],[0,6,1,"","total_token_count"],[0,6,1,"","video_duration_seconds"]],"genai.types.CachedContentUsageMetadataDict":[[0,4,1,"","audio_duration_seconds"],[0,4,1,"","image_count"],[0,4,1,"","text_count"],[0,4,1,"","total_token_count"],[0,4,1,"","video_duration_seconds"]],"genai.types.CancelBatchJobConfig":[[0,6,1,"","http_options"]],"genai.types.CancelBatchJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.CancelTuningJobConfig":[[0,6,1,"","http_options"]],"genai.types.CancelTuningJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.CancelTuningJobResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.CancelTuningJobResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.Candidate":[[0,6,1,"","avg_logprobs"],[0,6,1,"","citation_metadata"],[0,6,1,"","content"],[0,6,1,"","finish_message"],[0,6,1,"","finish_reason"],[0,6,1,"","grounding_metadata"],[0,6,1,"","index"],[0,6,1,"","logprobs_result"],[0,6,1,"","safety_ratings"],[0,6,1,"","token_count"],[0,6,1,"","url_context_metadata"]],"genai.types.CandidateDict":[[0,4,1,"","avg_logprobs"],[0,4,1,"","citation_metadata"],[0,4,1,"","content"],[0,4,1,"","finish_message"],[0,4,1,"","finish_reason"],[0,4,1,"","grounding_metadata"],[0,4,1,"","index"],[0,4,1,"","logprobs_result"],[0,4,1,"","safety_ratings"],[0,4,1,"","token_count"],[0,4,1,"","url_context_metadata"]],"genai.types.Checkpoint":[[0,6,1,"","checkpoint_id"],[0,6,1,"","epoch"],[0,6,1,"","step"]],"genai.types.CheckpointDict":[[0,4,1,"","checkpoint_id"],[0,4,1,"","epoch"],[0,4,1,"","step"]],"genai.types.ChunkingConfig":[[0,6,1,"","white_space_config"]],"genai.types.ChunkingConfigDict":[[0,4,1,"","white_space_config"]],"genai.types.Citation":[[0,6,1,"","end_index"],[0,6,1,"","license"],[0,6,1,"","publication_date"],[0,6,1,"","start_index"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.CitationDict":[[0,4,1,"","end_index"],[0,4,1,"","license"],[0,4,1,"","publication_date"],[0,4,1,"","start_index"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.CitationMetadata":[[0,6,1,"","citations"]],"genai.types.CitationMetadataDict":[[0,4,1,"","citations"]],"genai.types.CodeExecutionResult":[[0,6,1,"","id"],[0,6,1,"","outcome"],[0,6,1,"","output"]],"genai.types.CodeExecutionResultDict":[[0,4,1,"","id"],[0,4,1,"","outcome"],[0,4,1,"","output"]],"genai.types.CompletionStats":[[0,6,1,"","failed_count"],[0,6,1,"","incomplete_count"],[0,6,1,"","successful_count"],[0,6,1,"","successful_forecast_point_count"]],"genai.types.CompletionStatsDict":[[0,4,1,"","failed_count"],[0,4,1,"","incomplete_count"],[0,4,1,"","successful_count"],[0,4,1,"","successful_forecast_point_count"]],"genai.types.CompositeReinforcementTuningRewardConfig":[[0,6,1,"","weighted_reward_configs"]],"genai.types.CompositeReinforcementTuningRewardConfigDict":[[0,4,1,"","weighted_reward_configs"]],"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfig":[[0,6,1,"","reward_config"],[0,6,1,"","weight"]],"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict":[[0,4,1,"","reward_config"],[0,4,1,"","weight"]],"genai.types.ComputationBasedMetricSpec":[[0,6,1,"","parameters"],[0,6,1,"","type"]],"genai.types.ComputationBasedMetricSpecDict":[[0,4,1,"","parameters"],[0,4,1,"","type"]],"genai.types.ComputationBasedMetricType":[[0,4,1,"","BLEU"],[0,4,1,"","COMPUTATION_BASED_METRIC_TYPE_UNSPECIFIED"],[0,4,1,"","EXACT_MATCH"],[0,4,1,"","ROUGE"]],"genai.types.ComputeTokensConfig":[[0,6,1,"","http_options"]],"genai.types.ComputeTokensConfigDict":[[0,4,1,"","http_options"]],"genai.types.ComputeTokensResponse":[[0,6,1,"","sdk_http_response"],[0,6,1,"","tokens_info"]],"genai.types.ComputeTokensResponseDict":[[0,4,1,"","sdk_http_response"],[0,4,1,"","tokens_info"]],"genai.types.ComputeTokensResult":[[0,6,1,"","tokens_info"]],"genai.types.ComputeTokensResultDict":[[0,4,1,"","tokens_info"]],"genai.types.ComputerUse":[[0,6,1,"","disabled_safety_policies"],[0,6,1,"","enable_prompt_injection_detection"],[0,6,1,"","environment"],[0,6,1,"","excluded_predefined_functions"]],"genai.types.ComputerUseDict":[[0,4,1,"","disabled_safety_policies"],[0,4,1,"","enable_prompt_injection_detection"],[0,4,1,"","environment"],[0,4,1,"","excluded_predefined_functions"]],"genai.types.Content":[[0,6,1,"","parts"],[0,6,1,"","role"]],"genai.types.ContentDict":[[0,4,1,"","parts"],[0,4,1,"","role"]],"genai.types.ContentEmbedding":[[0,6,1,"","statistics"],[0,6,1,"","values"]],"genai.types.ContentEmbeddingDict":[[0,4,1,"","statistics"]],"genai.types.ContentEmbeddingStatistics":[[0,6,1,"","token_count"],[0,6,1,"","tokens_details"],[0,6,1,"","truncated"]],"genai.types.ContentEmbeddingStatisticsDict":[[0,4,1,"","token_count"],[0,4,1,"","tokens_details"],[0,4,1,"","truncated"]],"genai.types.ContentReferenceImage":[[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.ContentReferenceImageDict":[[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.ContextWindowCompressionConfig":[[0,6,1,"","sliding_window"],[0,6,1,"","trigger_tokens"]],"genai.types.ContextWindowCompressionConfigDict":[[0,4,1,"","sliding_window"],[0,4,1,"","trigger_tokens"]],"genai.types.ControlReferenceConfig":[[0,6,1,"","control_type"],[0,6,1,"","enable_control_image_computation"]],"genai.types.ControlReferenceConfigDict":[[0,4,1,"","control_type"],[0,4,1,"","enable_control_image_computation"]],"genai.types.ControlReferenceImage":[[0,6,1,"","config"],[0,6,1,"","control_image_config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.ControlReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.ControlReferenceType":[[0,4,1,"","CONTROL_TYPE_CANNY"],[0,4,1,"","CONTROL_TYPE_DEFAULT"],[0,4,1,"","CONTROL_TYPE_FACE_MESH"],[0,4,1,"","CONTROL_TYPE_SCRIBBLE"]],"genai.types.CountTokensConfig":[[0,6,1,"","generation_config"],[0,6,1,"","http_options"],[0,6,1,"","system_instruction"],[0,6,1,"","tools"]],"genai.types.CountTokensConfigDict":[[0,4,1,"","generation_config"],[0,4,1,"","http_options"],[0,4,1,"","system_instruction"],[0,4,1,"","tools"]],"genai.types.CountTokensResponse":[[0,6,1,"","cached_content_token_count"],[0,6,1,"","sdk_http_response"],[0,6,1,"","total_tokens"]],"genai.types.CountTokensResponseDict":[[0,4,1,"","cached_content_token_count"],[0,4,1,"","sdk_http_response"],[0,4,1,"","total_tokens"]],"genai.types.CountTokensResult":[[0,6,1,"","total_tokens"]],"genai.types.CountTokensResultDict":[[0,4,1,"","total_tokens"]],"genai.types.CreateAuthTokenConfig":[[0,6,1,"","expire_time"],[0,6,1,"","http_options"],[0,6,1,"","live_connect_constraints"],[0,6,1,"","lock_additional_fields"],[0,6,1,"","new_session_expire_time"],[0,6,1,"","uses"]],"genai.types.CreateAuthTokenConfigDict":[[0,4,1,"","expire_time"],[0,4,1,"","http_options"],[0,4,1,"","live_connect_constraints"],[0,4,1,"","lock_additional_fields"],[0,4,1,"","new_session_expire_time"],[0,4,1,"","uses"]],"genai.types.CreateAuthTokenParameters":[[0,6,1,"","config"]],"genai.types.CreateAuthTokenParametersDict":[[0,4,1,"","config"]],"genai.types.CreateBatchJobConfig":[[0,6,1,"","dest"],[0,6,1,"","display_name"],[0,6,1,"","http_options"],[0,6,1,"","webhook_config"]],"genai.types.CreateBatchJobConfigDict":[[0,4,1,"","dest"],[0,4,1,"","display_name"],[0,4,1,"","http_options"],[0,4,1,"","webhook_config"]],"genai.types.CreateCachedContentConfig":[[0,6,1,"","contents"],[0,6,1,"","display_name"],[0,6,1,"","expire_time"],[0,6,1,"","http_options"],[0,6,1,"","kms_key_name"],[0,6,1,"","system_instruction"],[0,6,1,"","tool_config"],[0,6,1,"","tools"],[0,6,1,"","ttl"]],"genai.types.CreateCachedContentConfigDict":[[0,4,1,"","contents"],[0,4,1,"","display_name"],[0,4,1,"","expire_time"],[0,4,1,"","http_options"],[0,4,1,"","kms_key_name"],[0,4,1,"","system_instruction"],[0,4,1,"","tool_config"],[0,4,1,"","tools"],[0,4,1,"","ttl"]],"genai.types.CreateEmbeddingsBatchJobConfig":[[0,6,1,"","display_name"],[0,6,1,"","http_options"]],"genai.types.CreateEmbeddingsBatchJobConfigDict":[[0,4,1,"","display_name"],[0,4,1,"","http_options"]],"genai.types.CreateFileConfig":[[0,6,1,"","http_options"],[0,6,1,"","should_return_http_response"]],"genai.types.CreateFileConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","should_return_http_response"]],"genai.types.CreateFileResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.CreateFileResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.CreateFileSearchStoreConfig":[[0,6,1,"","display_name"],[0,6,1,"","embedding_model"],[0,6,1,"","http_options"]],"genai.types.CreateFileSearchStoreConfigDict":[[0,4,1,"","display_name"],[0,4,1,"","embedding_model"],[0,4,1,"","http_options"]],"genai.types.CreateTuningJobConfig":[[0,6,1,"","adapter_size"],[0,6,1,"","base_teacher_model"],[0,6,1,"","batch_size"],[0,6,1,"","beta"],[0,6,1,"","checkpoint_interval"],[0,6,1,"","composite_reward_config"],[0,6,1,"","custom_base_model"],[0,6,1,"","description"],[0,6,1,"","encryption_spec"],[0,6,1,"","epoch_count"],[0,6,1,"","evaluate_interval"],[0,6,1,"","evaluation_config"],[0,6,1,"","export_last_checkpoint_only"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","learning_rate"],[0,6,1,"","learning_rate_multiplier"],[0,6,1,"","max_output_tokens"],[0,6,1,"","method"],[0,6,1,"","output_uri"],[0,6,1,"","pre_tuned_model_checkpoint_id"],[0,6,1,"","reward_config"],[0,6,1,"","samples_per_prompt"],[0,6,1,"","sft_loss_weight_multiplier"],[0,6,1,"","thinking_level"],[0,6,1,"","tuned_model_display_name"],[0,6,1,"","tuned_teacher_model_source"],[0,6,1,"","tuning_mode"],[0,6,1,"","validation_dataset"],[0,6,1,"","validation_dataset_uri"]],"genai.types.CreateTuningJobConfigDict":[[0,4,1,"","adapter_size"],[0,4,1,"","base_teacher_model"],[0,4,1,"","batch_size"],[0,4,1,"","beta"],[0,4,1,"","checkpoint_interval"],[0,4,1,"","composite_reward_config"],[0,4,1,"","custom_base_model"],[0,4,1,"","description"],[0,4,1,"","encryption_spec"],[0,4,1,"","epoch_count"],[0,4,1,"","evaluate_interval"],[0,4,1,"","evaluation_config"],[0,4,1,"","export_last_checkpoint_only"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","learning_rate"],[0,4,1,"","learning_rate_multiplier"],[0,4,1,"","max_output_tokens"],[0,4,1,"","method"],[0,4,1,"","output_uri"],[0,4,1,"","pre_tuned_model_checkpoint_id"],[0,4,1,"","reward_config"],[0,4,1,"","samples_per_prompt"],[0,4,1,"","sft_loss_weight_multiplier"],[0,4,1,"","thinking_level"],[0,4,1,"","tuned_model_display_name"],[0,4,1,"","tuned_teacher_model_source"],[0,4,1,"","tuning_mode"],[0,4,1,"","validation_dataset"],[0,4,1,"","validation_dataset_uri"]],"genai.types.CreateTuningJobParameters":[[0,6,1,"","base_model"],[0,6,1,"","config"],[0,6,1,"","training_dataset"]],"genai.types.CreateTuningJobParametersDict":[[0,4,1,"","base_model"],[0,4,1,"","config"],[0,4,1,"","training_dataset"]],"genai.types.CustomCodeExecutionResult":[[0,6,1,"","score"]],"genai.types.CustomCodeExecutionResultDict":[[0,4,1,"","score"]],"genai.types.CustomCodeExecutionSpec":[[0,6,1,"","evaluation_function"]],"genai.types.CustomCodeExecutionSpecDict":[[0,4,1,"","evaluation_function"]],"genai.types.CustomMetadata":[[0,6,1,"","key"],[0,6,1,"","numeric_value"],[0,6,1,"","string_list_value"],[0,6,1,"","string_value"]],"genai.types.CustomMetadataDict":[[0,4,1,"","key"],[0,4,1,"","numeric_value"],[0,4,1,"","string_list_value"],[0,4,1,"","string_value"]],"genai.types.CustomOutput":[[0,6,1,"","raw_outputs"]],"genai.types.CustomOutputDict":[[0,4,1,"","raw_outputs"]],"genai.types.CustomOutputFormatConfig":[[0,6,1,"","return_raw_output"]],"genai.types.CustomOutputFormatConfigDict":[[0,4,1,"","return_raw_output"]],"genai.types.CustomizedAvatar":[[0,6,1,"","image_data"],[0,6,1,"","image_mime_type"]],"genai.types.CustomizedAvatarDict":[[0,4,1,"","image_data"],[0,4,1,"","image_mime_type"]],"genai.types.DatasetDistribution":[[0,6,1,"","buckets"],[0,6,1,"","max"],[0,6,1,"","mean"],[0,6,1,"","median"],[0,6,1,"","min"],[0,6,1,"","p5"],[0,6,1,"","p95"],[0,6,1,"","sum"]],"genai.types.DatasetDistributionDict":[[0,4,1,"","buckets"],[0,4,1,"","max"],[0,4,1,"","mean"],[0,4,1,"","median"],[0,4,1,"","min"],[0,4,1,"","p5"],[0,4,1,"","p95"],[0,4,1,"","sum"]],"genai.types.DatasetDistributionDistributionBucket":[[0,6,1,"","count"],[0,6,1,"","left"],[0,6,1,"","right"]],"genai.types.DatasetDistributionDistributionBucketDict":[[0,4,1,"","count"],[0,4,1,"","left"],[0,4,1,"","right"]],"genai.types.DatasetStats":[[0,6,1,"","contents_per_example_distribution"],[0,6,1,"","dropped_example_indices"],[0,6,1,"","dropped_example_reasons"],[0,6,1,"","reinforcement_tuning_user_dataset_examples"],[0,6,1,"","total_billable_character_count"],[0,6,1,"","total_billable_token_count"],[0,6,1,"","total_tuning_character_count"],[0,6,1,"","tuning_dataset_example_count"],[0,6,1,"","tuning_step_count"],[0,6,1,"","user_dataset_examples"],[0,6,1,"","user_input_token_distribution"],[0,6,1,"","user_message_per_example_distribution"],[0,6,1,"","user_output_token_distribution"]],"genai.types.DatasetStatsDict":[[0,4,1,"","contents_per_example_distribution"],[0,4,1,"","dropped_example_indices"],[0,4,1,"","dropped_example_reasons"],[0,4,1,"","reinforcement_tuning_user_dataset_examples"],[0,4,1,"","total_billable_character_count"],[0,4,1,"","total_billable_token_count"],[0,4,1,"","total_tuning_character_count"],[0,4,1,"","tuning_dataset_example_count"],[0,4,1,"","tuning_step_count"],[0,4,1,"","user_dataset_examples"],[0,4,1,"","user_input_token_distribution"],[0,4,1,"","user_message_per_example_distribution"],[0,4,1,"","user_output_token_distribution"]],"genai.types.DeleteBatchJobConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteBatchJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteCachedContentConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteCachedContentConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteCachedContentResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.DeleteCachedContentResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.DeleteDocumentConfig":[[0,6,1,"","force"],[0,6,1,"","http_options"]],"genai.types.DeleteDocumentConfigDict":[[0,4,1,"","force"],[0,4,1,"","http_options"]],"genai.types.DeleteFileConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteFileConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteFileResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.DeleteFileResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.DeleteFileSearchStoreConfig":[[0,6,1,"","force"],[0,6,1,"","http_options"]],"genai.types.DeleteFileSearchStoreConfigDict":[[0,4,1,"","force"],[0,4,1,"","http_options"]],"genai.types.DeleteModelConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteModelConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteModelResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.DeleteModelResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.DeleteResourceJob":[[0,6,1,"","done"],[0,6,1,"","error"],[0,6,1,"","name"],[0,6,1,"","sdk_http_response"]],"genai.types.DeleteResourceJobDict":[[0,4,1,"","done"],[0,4,1,"","error"],[0,4,1,"","name"],[0,4,1,"","sdk_http_response"]],"genai.types.Delivery":[[0,4,1,"","DELIVERY_UNSPECIFIED"],[0,4,1,"","INLINE"],[0,4,1,"","URI"]],"genai.types.DistillationDataStats":[[0,6,1,"","training_dataset_stats"]],"genai.types.DistillationDataStatsDict":[[0,4,1,"","training_dataset_stats"]],"genai.types.DistillationHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","batch_size"],[0,6,1,"","epoch_count"],[0,6,1,"","generation_config"],[0,6,1,"","learning_rate"],[0,6,1,"","learning_rate_multiplier"]],"genai.types.DistillationHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","batch_size"],[0,4,1,"","epoch_count"],[0,4,1,"","generation_config"],[0,4,1,"","learning_rate"],[0,4,1,"","learning_rate_multiplier"]],"genai.types.DistillationSamplingSpec":[[0,6,1,"","base_teacher_model"],[0,6,1,"","hyperparameters"],[0,6,1,"","prompt_dataset_uri"],[0,6,1,"","tuned_teacher_model_source"],[0,6,1,"","validation_dataset_uri"]],"genai.types.DistillationSamplingSpecDict":[[0,4,1,"","base_teacher_model"],[0,4,1,"","hyperparameters"],[0,4,1,"","prompt_dataset_uri"],[0,4,1,"","tuned_teacher_model_source"],[0,4,1,"","validation_dataset_uri"]],"genai.types.DistillationSpec":[[0,6,1,"","base_teacher_model"],[0,6,1,"","hyper_parameters"],[0,6,1,"","pipeline_root_directory"],[0,6,1,"","prompt_dataset_uri"],[0,6,1,"","student_model"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","tuned_teacher_model_source"],[0,6,1,"","tuning_mode"],[0,6,1,"","validation_dataset_uri"]],"genai.types.DistillationSpecDict":[[0,4,1,"","base_teacher_model"],[0,4,1,"","hyper_parameters"],[0,4,1,"","pipeline_root_directory"],[0,4,1,"","prompt_dataset_uri"],[0,4,1,"","student_model"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","tuned_teacher_model_source"],[0,4,1,"","tuning_mode"],[0,4,1,"","validation_dataset_uri"]],"genai.types.Document":[[0,6,1,"","create_time"],[0,6,1,"","custom_metadata"],[0,6,1,"","display_name"],[0,6,1,"","mime_type"],[0,6,1,"","name"],[0,6,1,"","size_bytes"],[0,6,1,"","state"],[0,6,1,"","update_time"]],"genai.types.DocumentDict":[[0,4,1,"","create_time"],[0,4,1,"","custom_metadata"],[0,4,1,"","display_name"],[0,4,1,"","mime_type"],[0,4,1,"","name"],[0,4,1,"","size_bytes"],[0,4,1,"","state"],[0,4,1,"","update_time"]],"genai.types.DocumentState":[[0,4,1,"","STATE_ACTIVE"],[0,4,1,"","STATE_FAILED"],[0,4,1,"","STATE_PENDING"],[0,4,1,"","STATE_UNSPECIFIED"]],"genai.types.DownloadFileConfig":[[0,6,1,"","http_options"]],"genai.types.DownloadFileConfigDict":[[0,4,1,"","http_options"]],"genai.types.DownloadMediaConfig":[[0,6,1,"","http_options"]],"genai.types.DownloadMediaConfigDict":[[0,4,1,"","http_options"]],"genai.types.DynamicRetrievalConfig":[[0,6,1,"","dynamic_threshold"],[0,6,1,"","mode"]],"genai.types.DynamicRetrievalConfigDict":[[0,4,1,"","dynamic_threshold"],[0,4,1,"","mode"]],"genai.types.DynamicRetrievalConfigMode":[[0,4,1,"","MODE_DYNAMIC"],[0,4,1,"","MODE_UNSPECIFIED"]],"genai.types.EditImageConfig":[[0,6,1,"","add_watermark"],[0,6,1,"","aspect_ratio"],[0,6,1,"","base_steps"],[0,6,1,"","edit_mode"],[0,6,1,"","guidance_scale"],[0,6,1,"","http_options"],[0,6,1,"","include_rai_reason"],[0,6,1,"","include_safety_attributes"],[0,6,1,"","labels"],[0,6,1,"","language"],[0,6,1,"","negative_prompt"],[0,6,1,"","number_of_images"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"],[0,6,1,"","seed"]],"genai.types.EditImageConfigDict":[[0,4,1,"","add_watermark"],[0,4,1,"","aspect_ratio"],[0,4,1,"","base_steps"],[0,4,1,"","edit_mode"],[0,4,1,"","guidance_scale"],[0,4,1,"","http_options"],[0,4,1,"","include_rai_reason"],[0,4,1,"","include_safety_attributes"],[0,4,1,"","labels"],[0,4,1,"","language"],[0,4,1,"","negative_prompt"],[0,4,1,"","number_of_images"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"],[0,4,1,"","seed"]],"genai.types.EditImageResponse":[[0,6,1,"","generated_images"],[0,6,1,"","sdk_http_response"]],"genai.types.EditImageResponseDict":[[0,4,1,"","generated_images"],[0,4,1,"","sdk_http_response"]],"genai.types.EditMode":[[0,4,1,"","EDIT_MODE_BGSWAP"],[0,4,1,"","EDIT_MODE_CONTROLLED_EDITING"],[0,4,1,"","EDIT_MODE_DEFAULT"],[0,4,1,"","EDIT_MODE_INPAINT_INSERTION"],[0,4,1,"","EDIT_MODE_INPAINT_REMOVAL"],[0,4,1,"","EDIT_MODE_OUTPAINT"],[0,4,1,"","EDIT_MODE_PRODUCT_IMAGE"],[0,4,1,"","EDIT_MODE_STYLE"]],"genai.types.EmbedContentBatch":[[0,6,1,"","config"],[0,6,1,"","contents"]],"genai.types.EmbedContentBatchDict":[[0,4,1,"","config"],[0,4,1,"","contents"]],"genai.types.EmbedContentConfig":[[0,6,1,"","audio_track_extraction"],[0,6,1,"","auto_truncate"],[0,6,1,"","document_ocr"],[0,6,1,"","http_options"],[0,6,1,"","mime_type"],[0,6,1,"","output_dimensionality"],[0,6,1,"","task_type"],[0,6,1,"","title"]],"genai.types.EmbedContentConfigDict":[[0,4,1,"","audio_track_extraction"],[0,4,1,"","auto_truncate"],[0,4,1,"","document_ocr"],[0,4,1,"","http_options"],[0,4,1,"","mime_type"],[0,4,1,"","output_dimensionality"],[0,4,1,"","task_type"],[0,4,1,"","title"]],"genai.types.EmbedContentMetadata":[[0,6,1,"","billable_character_count"]],"genai.types.EmbedContentMetadataDict":[[0,4,1,"","billable_character_count"]],"genai.types.EmbedContentParameters":[[0,6,1,"","config"],[0,6,1,"","contents"],[0,6,1,"","model"]],"genai.types.EmbedContentParametersDict":[[0,4,1,"","config"],[0,4,1,"","contents"],[0,4,1,"","model"]],"genai.types.EmbedContentResponse":[[0,6,1,"","embeddings"],[0,6,1,"","metadata"],[0,6,1,"","sdk_http_response"]],"genai.types.EmbedContentResponseDict":[[0,4,1,"","embeddings"],[0,4,1,"","metadata"],[0,4,1,"","sdk_http_response"]],"genai.types.EmbeddingApiType":[[0,4,1,"","EMBED_CONTENT"],[0,4,1,"","PREDICT"]],"genai.types.EmbeddingsBatchJobSource":[[0,6,1,"","file_name"],[0,6,1,"","inlined_requests"]],"genai.types.EmbeddingsBatchJobSourceDict":[[0,4,1,"","file_name"],[0,4,1,"","inlined_requests"]],"genai.types.EncryptionSpec":[[0,6,1,"","kms_key_name"]],"genai.types.EncryptionSpecDict":[[0,4,1,"","kms_key_name"]],"genai.types.EndSensitivity":[[0,4,1,"","END_SENSITIVITY_HIGH"],[0,4,1,"","END_SENSITIVITY_LOW"],[0,4,1,"","END_SENSITIVITY_UNSPECIFIED"]],"genai.types.Endpoint":[[0,6,1,"","deployed_model_id"],[0,6,1,"","name"]],"genai.types.EndpointDict":[[0,4,1,"","deployed_model_id"],[0,4,1,"","name"]],"genai.types.EnterpriseWebSearch":[[0,6,1,"","blocking_confidence"],[0,6,1,"","exclude_domains"]],"genai.types.EnterpriseWebSearchDict":[[0,4,1,"","blocking_confidence"],[0,4,1,"","exclude_domains"]],"genai.types.EntityLabel":[[0,6,1,"","label"],[0,6,1,"","score"]],"genai.types.EntityLabelDict":[[0,4,1,"","label"],[0,4,1,"","score"]],"genai.types.Environment":[[0,4,1,"","ENVIRONMENT_BROWSER"],[0,4,1,"","ENVIRONMENT_DESKTOP"],[0,4,1,"","ENVIRONMENT_MOBILE"],[0,4,1,"","ENVIRONMENT_UNSPECIFIED"]],"genai.types.EvaluateDatasetResponse":[[0,6,1,"","aggregation_output"],[0,6,1,"","output_info"]],"genai.types.EvaluateDatasetResponseDict":[[0,4,1,"","aggregation_output"],[0,4,1,"","output_info"]],"genai.types.EvaluateDatasetRun":[[0,6,1,"","checkpoint_id"],[0,6,1,"","error"],[0,6,1,"","evaluate_dataset_response"],[0,6,1,"","evaluation_run"],[0,6,1,"","operation_name"]],"genai.types.EvaluateDatasetRunDict":[[0,4,1,"","checkpoint_id"],[0,4,1,"","error"],[0,4,1,"","evaluate_dataset_response"],[0,4,1,"","evaluation_run"],[0,4,1,"","operation_name"]],"genai.types.EvaluationConfig":[[0,6,1,"","autorater_config"],[0,6,1,"","inference_generation_config"],[0,6,1,"","metrics"],[0,6,1,"","output_config"]],"genai.types.EvaluationConfigDict":[[0,4,1,"","autorater_config"],[0,4,1,"","inference_generation_config"],[0,4,1,"","metrics"],[0,4,1,"","output_config"]],"genai.types.EvaluationDataset":[[0,6,1,"","bigquery_source"],[0,6,1,"","gcs_source"]],"genai.types.EvaluationDatasetDict":[[0,4,1,"","bigquery_source"],[0,4,1,"","gcs_source"]],"genai.types.EvaluationParserConfig":[[0,6,1,"","custom_code_parser_config"]],"genai.types.EvaluationParserConfigCustomCodeParserConfig":[[0,6,1,"","parsing_function"]],"genai.types.EvaluationParserConfigCustomCodeParserConfigDict":[[0,4,1,"","parsing_function"]],"genai.types.EvaluationParserConfigDict":[[0,4,1,"","custom_code_parser_config"]],"genai.types.ExactMatchMetricValue":[[0,6,1,"","score"]],"genai.types.ExactMatchMetricValueDict":[[0,4,1,"","score"]],"genai.types.ExecutableCode":[[0,6,1,"","code"],[0,6,1,"","id"],[0,6,1,"","language"]],"genai.types.ExecutableCodeDict":[[0,4,1,"","code"],[0,4,1,"","id"],[0,4,1,"","language"]],"genai.types.ExternalApi":[[0,6,1,"","api_auth"],[0,6,1,"","api_spec"],[0,6,1,"","auth_config"],[0,6,1,"","elastic_search_params"],[0,6,1,"","endpoint"],[0,6,1,"","simple_search_params"]],"genai.types.ExternalApiDict":[[0,4,1,"","api_auth"],[0,4,1,"","api_spec"],[0,4,1,"","auth_config"],[0,4,1,"","elastic_search_params"],[0,4,1,"","endpoint"],[0,4,1,"","simple_search_params"]],"genai.types.ExternalApiElasticSearchParams":[[0,6,1,"","index"],[0,6,1,"","num_hits"],[0,6,1,"","search_template"]],"genai.types.ExternalApiElasticSearchParamsDict":[[0,4,1,"","index"],[0,4,1,"","num_hits"],[0,4,1,"","search_template"]],"genai.types.FeatureSelectionPreference":[[0,4,1,"","BALANCED"],[0,4,1,"","FEATURE_SELECTION_PREFERENCE_UNSPECIFIED"],[0,4,1,"","PRIORITIZE_COST"],[0,4,1,"","PRIORITIZE_QUALITY"]],"genai.types.FetchPredictOperationConfig":[[0,6,1,"","http_options"]],"genai.types.FetchPredictOperationConfigDict":[[0,4,1,"","http_options"]],"genai.types.File":[[0,6,1,"","create_time"],[0,6,1,"","display_name"],[0,6,1,"","download_uri"],[0,6,1,"","error"],[0,6,1,"","expiration_time"],[0,6,1,"","mime_type"],[0,6,1,"","name"],[0,6,1,"","sha256_hash"],[0,6,1,"","size_bytes"],[0,6,1,"","source"],[0,6,1,"","state"],[0,6,1,"","update_time"],[0,6,1,"","uri"],[0,6,1,"","video_metadata"]],"genai.types.FileData":[[0,6,1,"","display_name"],[0,6,1,"","file_uri"],[0,6,1,"","mime_type"]],"genai.types.FileDataDict":[[0,4,1,"","display_name"],[0,4,1,"","file_uri"],[0,4,1,"","mime_type"]],"genai.types.FileDict":[[0,4,1,"","create_time"],[0,4,1,"","display_name"],[0,4,1,"","download_uri"],[0,4,1,"","error"],[0,4,1,"","expiration_time"],[0,4,1,"","mime_type"],[0,4,1,"","name"],[0,4,1,"","sha256_hash"],[0,4,1,"","size_bytes"],[0,4,1,"","source"],[0,4,1,"","state"],[0,4,1,"","update_time"],[0,4,1,"","uri"],[0,4,1,"","video_metadata"]],"genai.types.FileSearch":[[0,6,1,"","file_search_store_names"],[0,6,1,"","metadata_filter"],[0,6,1,"","top_k"]],"genai.types.FileSearchDict":[[0,4,1,"","file_search_store_names"],[0,4,1,"","metadata_filter"],[0,4,1,"","top_k"]],"genai.types.FileSearchStore":[[0,6,1,"","active_documents_count"],[0,6,1,"","create_time"],[0,6,1,"","display_name"],[0,6,1,"","embedding_model"],[0,6,1,"","failed_documents_count"],[0,6,1,"","name"],[0,6,1,"","pending_documents_count"],[0,6,1,"","size_bytes"],[0,6,1,"","update_time"]],"genai.types.FileSearchStoreDict":[[0,4,1,"","active_documents_count"],[0,4,1,"","create_time"],[0,4,1,"","display_name"],[0,4,1,"","embedding_model"],[0,4,1,"","failed_documents_count"],[0,4,1,"","name"],[0,4,1,"","pending_documents_count"],[0,4,1,"","size_bytes"],[0,4,1,"","update_time"]],"genai.types.FileSource":[[0,4,1,"","GENERATED"],[0,4,1,"","REGISTERED"],[0,4,1,"","SOURCE_UNSPECIFIED"],[0,4,1,"","UPLOADED"]],"genai.types.FileState":[[0,4,1,"","ACTIVE"],[0,4,1,"","FAILED"],[0,4,1,"","PROCESSING"],[0,4,1,"","STATE_UNSPECIFIED"]],"genai.types.FileStatus":[[0,6,1,"","code"],[0,6,1,"","details"],[0,6,1,"","message"]],"genai.types.FileStatusDict":[[0,4,1,"","code"],[0,4,1,"","details"],[0,4,1,"","message"]],"genai.types.FinishReason":[[0,4,1,"","BLOCKLIST"],[0,4,1,"","FINISH_REASON_UNSPECIFIED"],[0,4,1,"","IMAGE_OTHER"],[0,4,1,"","IMAGE_PROHIBITED_CONTENT"],[0,4,1,"","IMAGE_RECITATION"],[0,4,1,"","IMAGE_SAFETY"],[0,4,1,"","LANGUAGE"],[0,4,1,"","MALFORMED_FUNCTION_CALL"],[0,4,1,"","MAX_TOKENS"],[0,4,1,"","NO_IMAGE"],[0,4,1,"","OTHER"],[0,4,1,"","PROHIBITED_CONTENT"],[0,4,1,"","RECITATION"],[0,4,1,"","SAFETY"],[0,4,1,"","SPII"],[0,4,1,"","STOP"],[0,4,1,"","UNEXPECTED_TOOL_CALL"]],"genai.types.FullFineTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.FullFineTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.FunctionCall":[[0,6,1,"","args"],[0,6,1,"","id"],[0,6,1,"","name"],[0,6,1,"","partial_args"],[0,6,1,"","will_continue"]],"genai.types.FunctionCallDict":[[0,4,1,"","args"],[0,4,1,"","id"],[0,4,1,"","name"],[0,4,1,"","partial_args"],[0,4,1,"","will_continue"]],"genai.types.FunctionCallingConfig":[[0,6,1,"","allowed_function_names"],[0,6,1,"","mode"],[0,6,1,"","stream_function_call_arguments"]],"genai.types.FunctionCallingConfigDict":[[0,4,1,"","allowed_function_names"],[0,4,1,"","mode"],[0,4,1,"","stream_function_call_arguments"]],"genai.types.FunctionCallingConfigMode":[[0,4,1,"","ANY"],[0,4,1,"","AUTO"],[0,4,1,"","MODE_UNSPECIFIED"],[0,4,1,"","NONE"],[0,4,1,"","VALIDATED"]],"genai.types.FunctionDeclaration":[[0,6,1,"","behavior"],[0,6,1,"","description"],[0,1,1,"","from_callable"],[0,1,1,"","from_callable_with_api_option"],[0,6,1,"","name"],[0,6,1,"","parameters"],[0,6,1,"","parameters_json_schema"],[0,6,1,"","response"],[0,6,1,"","response_json_schema"]],"genai.types.FunctionDeclarationDict":[[0,4,1,"","behavior"],[0,4,1,"","description"],[0,4,1,"","name"],[0,4,1,"","parameters"],[0,4,1,"","parameters_json_schema"],[0,4,1,"","response"],[0,4,1,"","response_json_schema"]],"genai.types.FunctionResponse":[[0,1,1,"","from_mcp_response"],[0,6,1,"","id"],[0,6,1,"","name"],[0,6,1,"","parts"],[0,6,1,"","response"],[0,6,1,"","scheduling"],[0,6,1,"","will_continue"]],"genai.types.FunctionResponseBlob":[[0,6,1,"","data"],[0,6,1,"","display_name"],[0,6,1,"","mime_type"]],"genai.types.FunctionResponseBlobDict":[[0,4,1,"","data"],[0,4,1,"","display_name"],[0,4,1,"","mime_type"]],"genai.types.FunctionResponseDict":[[0,4,1,"","id"],[0,4,1,"","name"],[0,4,1,"","parts"],[0,4,1,"","response"],[0,4,1,"","scheduling"],[0,4,1,"","will_continue"]],"genai.types.FunctionResponseFileData":[[0,6,1,"","display_name"],[0,6,1,"","file_uri"],[0,6,1,"","mime_type"]],"genai.types.FunctionResponseFileDataDict":[[0,4,1,"","display_name"],[0,4,1,"","file_uri"],[0,4,1,"","mime_type"]],"genai.types.FunctionResponsePart":[[0,6,1,"","file_data"],[0,1,1,"","from_bytes"],[0,1,1,"","from_uri"],[0,6,1,"","inline_data"]],"genai.types.FunctionResponsePartDict":[[0,4,1,"","file_data"],[0,4,1,"","inline_data"]],"genai.types.FunctionResponseScheduling":[[0,4,1,"","INTERRUPT"],[0,4,1,"","SCHEDULING_UNSPECIFIED"],[0,4,1,"","SILENT"],[0,4,1,"","WHEN_IDLE"]],"genai.types.GcsDestination":[[0,6,1,"","output_uri_prefix"]],"genai.types.GcsDestinationDict":[[0,4,1,"","output_uri_prefix"]],"genai.types.GcsSource":[[0,6,1,"","uris"]],"genai.types.GcsSourceDict":[[0,4,1,"","uris"]],"genai.types.GeminiPreferenceExample":[[0,6,1,"","completions"],[0,6,1,"","contents"]],"genai.types.GeminiPreferenceExampleCompletion":[[0,6,1,"","completion"],[0,6,1,"","score"]],"genai.types.GeminiPreferenceExampleCompletionDict":[[0,4,1,"","completion"],[0,4,1,"","score"]],"genai.types.GeminiPreferenceExampleDict":[[0,4,1,"","completions"],[0,4,1,"","contents"]],"genai.types.GenerateContentConfig":[[0,6,1,"","audio_timestamp"],[0,6,1,"","audio_transcription_config"],[0,6,1,"","automatic_function_calling"],[0,6,1,"","cached_content"],[0,6,1,"","candidate_count"],[0,6,1,"","enable_enhanced_civic_answers"],[0,6,1,"","frequency_penalty"],[0,6,1,"","http_options"],[0,6,1,"","image_config"],[0,6,1,"","labels"],[0,6,1,"","logprobs"],[0,6,1,"","max_output_tokens"],[0,6,1,"","media_resolution"],[0,6,1,"","model_armor_config"],[0,6,1,"","model_selection_config"],[0,6,1,"","presence_penalty"],[0,6,1,"","response_json_schema"],[0,6,1,"","response_logprobs"],[0,6,1,"","response_mime_type"],[0,6,1,"","response_modalities"],[0,6,1,"","response_schema"],[0,6,1,"","routing_config"],[0,6,1,"","safety_settings"],[0,6,1,"","seed"],[0,6,1,"","service_tier"],[0,6,1,"","should_return_http_response"],[0,6,1,"","speech_config"],[0,6,1,"","stop_sequences"],[0,6,1,"","system_instruction"],[0,6,1,"","temperature"],[0,6,1,"","thinking_config"],[0,6,1,"","tool_config"],[0,6,1,"","tools"],[0,6,1,"","top_k"],[0,6,1,"","top_p"]],"genai.types.GenerateContentConfigDict":[[0,4,1,"","audio_timestamp"],[0,4,1,"","audio_transcription_config"],[0,4,1,"","automatic_function_calling"],[0,4,1,"","cached_content"],[0,4,1,"","candidate_count"],[0,4,1,"","enable_enhanced_civic_answers"],[0,4,1,"","frequency_penalty"],[0,4,1,"","http_options"],[0,4,1,"","image_config"],[0,4,1,"","labels"],[0,4,1,"","logprobs"],[0,4,1,"","max_output_tokens"],[0,4,1,"","media_resolution"],[0,4,1,"","model_armor_config"],[0,4,1,"","model_selection_config"],[0,4,1,"","presence_penalty"],[0,4,1,"","response_json_schema"],[0,4,1,"","response_logprobs"],[0,4,1,"","response_mime_type"],[0,4,1,"","response_modalities"],[0,4,1,"","response_schema"],[0,4,1,"","routing_config"],[0,4,1,"","safety_settings"],[0,4,1,"","seed"],[0,4,1,"","service_tier"],[0,4,1,"","should_return_http_response"],[0,4,1,"","speech_config"],[0,4,1,"","stop_sequences"],[0,4,1,"","system_instruction"],[0,4,1,"","temperature"],[0,4,1,"","thinking_config"],[0,4,1,"","tool_config"],[0,4,1,"","tools"],[0,4,1,"","top_k"],[0,4,1,"","top_p"]],"genai.types.GenerateContentResponse":[[0,6,1,"","automatic_function_calling_history"],[0,6,1,"","candidates"],[0,2,1,"","code_execution_result"],[0,6,1,"","create_time"],[0,2,1,"","executable_code"],[0,2,1,"","function_calls"],[0,6,1,"","model_status"],[0,6,1,"","model_version"],[0,6,1,"","parsed"],[0,2,1,"","parts"],[0,6,1,"","prompt_feedback"],[0,6,1,"","response_id"],[0,6,1,"","sdk_http_response"],[0,2,1,"","text"],[0,6,1,"","usage_metadata"]],"genai.types.GenerateContentResponseDict":[[0,4,1,"","candidates"],[0,4,1,"","create_time"],[0,4,1,"","model_status"],[0,4,1,"","model_version"],[0,4,1,"","prompt_feedback"],[0,4,1,"","response_id"],[0,4,1,"","sdk_http_response"],[0,4,1,"","usage_metadata"]],"genai.types.GenerateContentResponsePromptFeedback":[[0,6,1,"","block_reason"],[0,6,1,"","block_reason_message"],[0,6,1,"","safety_ratings"]],"genai.types.GenerateContentResponsePromptFeedbackDict":[[0,4,1,"","block_reason"],[0,4,1,"","block_reason_message"],[0,4,1,"","safety_ratings"]],"genai.types.GenerateContentResponseUsageMetadata":[[0,6,1,"","cache_tokens_details"],[0,6,1,"","cached_content_token_count"],[0,6,1,"","candidates_token_count"],[0,6,1,"","candidates_tokens_details"],[0,6,1,"","prompt_token_count"],[0,6,1,"","prompt_tokens_details"],[0,6,1,"","thoughts_token_count"],[0,6,1,"","tool_use_prompt_token_count"],[0,6,1,"","tool_use_prompt_tokens_details"],[0,6,1,"","total_token_count"],[0,6,1,"","traffic_type"]],"genai.types.GenerateContentResponseUsageMetadataDict":[[0,4,1,"","cache_tokens_details"],[0,4,1,"","cached_content_token_count"],[0,4,1,"","candidates_token_count"],[0,4,1,"","candidates_tokens_details"],[0,4,1,"","prompt_token_count"],[0,4,1,"","prompt_tokens_details"],[0,4,1,"","thoughts_token_count"],[0,4,1,"","tool_use_prompt_token_count"],[0,4,1,"","tool_use_prompt_tokens_details"],[0,4,1,"","total_token_count"],[0,4,1,"","traffic_type"]],"genai.types.GenerateImagesConfig":[[0,6,1,"","add_watermark"],[0,6,1,"","aspect_ratio"],[0,6,1,"","enhance_prompt"],[0,6,1,"","guidance_scale"],[0,6,1,"","http_options"],[0,6,1,"","image_size"],[0,6,1,"","include_rai_reason"],[0,6,1,"","include_safety_attributes"],[0,6,1,"","labels"],[0,6,1,"","language"],[0,6,1,"","negative_prompt"],[0,6,1,"","number_of_images"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"],[0,6,1,"","seed"]],"genai.types.GenerateImagesConfigDict":[[0,4,1,"","add_watermark"],[0,4,1,"","aspect_ratio"],[0,4,1,"","enhance_prompt"],[0,4,1,"","guidance_scale"],[0,4,1,"","http_options"],[0,4,1,"","image_size"],[0,4,1,"","include_rai_reason"],[0,4,1,"","include_safety_attributes"],[0,4,1,"","labels"],[0,4,1,"","language"],[0,4,1,"","negative_prompt"],[0,4,1,"","number_of_images"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"],[0,4,1,"","seed"]],"genai.types.GenerateImagesResponse":[[0,6,1,"","generated_images"],[0,2,1,"","images"],[0,6,1,"","positive_prompt_safety_attributes"],[0,6,1,"","sdk_http_response"]],"genai.types.GenerateImagesResponseDict":[[0,4,1,"","generated_images"],[0,4,1,"","positive_prompt_safety_attributes"],[0,4,1,"","sdk_http_response"]],"genai.types.GenerateVideosConfig":[[0,6,1,"","aspect_ratio"],[0,6,1,"","compression_quality"],[0,6,1,"","duration_seconds"],[0,6,1,"","enhance_prompt"],[0,6,1,"","fps"],[0,6,1,"","generate_audio"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","last_frame"],[0,6,1,"","mask"],[0,6,1,"","negative_prompt"],[0,6,1,"","number_of_videos"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","person_generation"],[0,6,1,"","pubsub_topic"],[0,6,1,"","reference_images"],[0,6,1,"","resize_mode"],[0,6,1,"","resolution"],[0,6,1,"","seed"],[0,6,1,"","webhook_config"]],"genai.types.GenerateVideosConfigDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","compression_quality"],[0,4,1,"","duration_seconds"],[0,4,1,"","enhance_prompt"],[0,4,1,"","fps"],[0,4,1,"","generate_audio"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","last_frame"],[0,4,1,"","mask"],[0,4,1,"","negative_prompt"],[0,4,1,"","number_of_videos"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","person_generation"],[0,4,1,"","pubsub_topic"],[0,4,1,"","reference_images"],[0,4,1,"","resize_mode"],[0,4,1,"","resolution"],[0,4,1,"","seed"],[0,4,1,"","webhook_config"]],"genai.types.GenerateVideosOperation":[[0,1,1,"","from_api_response"],[0,6,1,"","response"],[0,6,1,"","result"]],"genai.types.GenerateVideosResponse":[[0,6,1,"","generated_videos"],[0,6,1,"","rai_media_filtered_count"],[0,6,1,"","rai_media_filtered_reasons"]],"genai.types.GenerateVideosResponseDict":[[0,4,1,"","generated_videos"],[0,4,1,"","rai_media_filtered_count"],[0,4,1,"","rai_media_filtered_reasons"]],"genai.types.GenerateVideosSource":[[0,6,1,"","image"],[0,6,1,"","prompt"],[0,6,1,"","video"]],"genai.types.GenerateVideosSourceDict":[[0,4,1,"","image"],[0,4,1,"","prompt"],[0,4,1,"","video"]],"genai.types.GeneratedImage":[[0,6,1,"","enhanced_prompt"],[0,6,1,"","image"],[0,6,1,"","rai_filtered_reason"],[0,6,1,"","safety_attributes"]],"genai.types.GeneratedImageDict":[[0,4,1,"","enhanced_prompt"],[0,4,1,"","image"],[0,4,1,"","rai_filtered_reason"],[0,4,1,"","safety_attributes"]],"genai.types.GeneratedImageMask":[[0,6,1,"","labels"],[0,6,1,"","mask"]],"genai.types.GeneratedImageMaskDict":[[0,4,1,"","labels"],[0,4,1,"","mask"]],"genai.types.GeneratedVideo":[[0,6,1,"","video"]],"genai.types.GeneratedVideoDict":[[0,4,1,"","video"]],"genai.types.GenerationConfig":[[0,6,1,"","audio_timestamp"],[0,6,1,"","audio_transcription_config"],[0,6,1,"","candidate_count"],[0,6,1,"","enable_affective_dialog"],[0,6,1,"","enable_enhanced_civic_answers"],[0,6,1,"","frequency_penalty"],[0,6,1,"","logprobs"],[0,6,1,"","max_output_tokens"],[0,6,1,"","media_resolution"],[0,6,1,"","model_selection_config"],[0,6,1,"","presence_penalty"],[0,6,1,"","response_format"],[0,6,1,"","response_json_schema"],[0,6,1,"","response_logprobs"],[0,6,1,"","response_mime_type"],[0,6,1,"","response_modalities"],[0,6,1,"","response_schema"],[0,6,1,"","routing_config"],[0,6,1,"","seed"],[0,6,1,"","speech_config"],[0,6,1,"","stop_sequences"],[0,6,1,"","temperature"],[0,6,1,"","thinking_config"],[0,6,1,"","top_k"],[0,6,1,"","top_p"],[0,6,1,"","translation_config"]],"genai.types.GenerationConfigDict":[[0,4,1,"","audio_timestamp"],[0,4,1,"","audio_transcription_config"],[0,4,1,"","candidate_count"],[0,4,1,"","enable_affective_dialog"],[0,4,1,"","enable_enhanced_civic_answers"],[0,4,1,"","frequency_penalty"],[0,4,1,"","logprobs"],[0,4,1,"","max_output_tokens"],[0,4,1,"","media_resolution"],[0,4,1,"","model_selection_config"],[0,4,1,"","presence_penalty"],[0,4,1,"","response_format"],[0,4,1,"","response_json_schema"],[0,4,1,"","response_logprobs"],[0,4,1,"","response_mime_type"],[0,4,1,"","response_modalities"],[0,4,1,"","response_schema"],[0,4,1,"","routing_config"],[0,4,1,"","seed"],[0,4,1,"","speech_config"],[0,4,1,"","stop_sequences"],[0,4,1,"","temperature"],[0,4,1,"","thinking_config"],[0,4,1,"","top_k"],[0,4,1,"","top_p"],[0,4,1,"","translation_config"]],"genai.types.GenerationConfigRoutingConfig":[[0,6,1,"","auto_mode"],[0,6,1,"","manual_mode"]],"genai.types.GenerationConfigRoutingConfigAutoRoutingMode":[[0,6,1,"","model_routing_preference"]],"genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict":[[0,4,1,"","model_routing_preference"]],"genai.types.GenerationConfigRoutingConfigDict":[[0,4,1,"","auto_mode"],[0,4,1,"","manual_mode"]],"genai.types.GenerationConfigRoutingConfigManualRoutingMode":[[0,6,1,"","model_name"]],"genai.types.GenerationConfigRoutingConfigManualRoutingModeDict":[[0,4,1,"","model_name"]],"genai.types.GenerationConfigThinkingConfigDict":[[0,4,1,"","include_thoughts"],[0,4,1,"","thinking_budget"],[0,4,1,"","thinking_level"]],"genai.types.GetBatchJobConfig":[[0,6,1,"","http_options"]],"genai.types.GetBatchJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetCachedContentConfig":[[0,6,1,"","http_options"]],"genai.types.GetCachedContentConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetDocumentConfig":[[0,6,1,"","http_options"]],"genai.types.GetDocumentConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetFileConfig":[[0,6,1,"","http_options"]],"genai.types.GetFileConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetFileSearchStoreConfig":[[0,6,1,"","http_options"]],"genai.types.GetFileSearchStoreConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetModelConfig":[[0,6,1,"","http_options"]],"genai.types.GetModelConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetOperationConfig":[[0,6,1,"","http_options"]],"genai.types.GetOperationConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetTuningJobConfig":[[0,6,1,"","http_options"]],"genai.types.GetTuningJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.GoogleMaps":[[0,6,1,"","auth_config"],[0,6,1,"","enable_widget"],[0,6,1,"","grounding_types"]],"genai.types.GoogleMapsDict":[[0,4,1,"","auth_config"],[0,4,1,"","enable_widget"],[0,4,1,"","grounding_types"]],"genai.types.GoogleMapsGroundingTypes":[[0,6,1,"","places"],[0,6,1,"","routing"]],"genai.types.GoogleMapsGroundingTypesDict":[[0,4,1,"","places"],[0,4,1,"","routing"]],"genai.types.GoogleRpcStatus":[[0,6,1,"","code"],[0,6,1,"","details"],[0,6,1,"","message"]],"genai.types.GoogleRpcStatusDict":[[0,4,1,"","code"],[0,4,1,"","details"],[0,4,1,"","message"]],"genai.types.GoogleSearch":[[0,6,1,"","blocking_confidence"],[0,6,1,"","exclude_domains"],[0,6,1,"","search_types"],[0,6,1,"","time_range_filter"]],"genai.types.GoogleSearchDict":[[0,4,1,"","blocking_confidence"],[0,4,1,"","exclude_domains"],[0,4,1,"","search_types"],[0,4,1,"","time_range_filter"]],"genai.types.GoogleSearchRetrieval":[[0,6,1,"","dynamic_retrieval_config"]],"genai.types.GoogleSearchRetrievalDict":[[0,4,1,"","dynamic_retrieval_config"]],"genai.types.GoogleTypeDate":[[0,6,1,"","day"],[0,6,1,"","month"],[0,6,1,"","year"]],"genai.types.GoogleTypeDateDict":[[0,4,1,"","day"],[0,4,1,"","month"],[0,4,1,"","year"]],"genai.types.GroundingChunk":[[0,6,1,"","image"],[0,6,1,"","maps"],[0,6,1,"","retrieved_context"],[0,6,1,"","web"]],"genai.types.GroundingChunkCustomMetadata":[[0,6,1,"","key"],[0,6,1,"","numeric_value"],[0,6,1,"","string_list_value"],[0,6,1,"","string_value"]],"genai.types.GroundingChunkCustomMetadataDict":[[0,4,1,"","key"],[0,4,1,"","numeric_value"],[0,4,1,"","string_list_value"],[0,4,1,"","string_value"]],"genai.types.GroundingChunkDict":[[0,4,1,"","image"],[0,4,1,"","maps"],[0,4,1,"","retrieved_context"],[0,4,1,"","web"]],"genai.types.GroundingChunkImage":[[0,6,1,"","domain"],[0,6,1,"","image_uri"],[0,6,1,"","source_uri"],[0,6,1,"","title"]],"genai.types.GroundingChunkImageDict":[[0,4,1,"","domain"],[0,4,1,"","image_uri"],[0,4,1,"","source_uri"],[0,4,1,"","title"]],"genai.types.GroundingChunkMaps":[[0,6,1,"","place_answer_sources"],[0,6,1,"","place_id"],[0,6,1,"","route"],[0,6,1,"","text"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.GroundingChunkMapsDict":[[0,4,1,"","place_answer_sources"],[0,4,1,"","place_id"],[0,4,1,"","route"],[0,4,1,"","text"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.GroundingChunkMapsPlaceAnswerSources":[[0,6,1,"","flag_content_uri"],[0,6,1,"","review_snippet"],[0,6,1,"","review_snippets"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution":[[0,6,1,"","display_name"],[0,6,1,"","photo_uri"],[0,6,1,"","uri"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict":[[0,4,1,"","display_name"],[0,4,1,"","photo_uri"],[0,4,1,"","uri"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict":[[0,4,1,"","flag_content_uri"],[0,4,1,"","review_snippet"],[0,4,1,"","review_snippets"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet":[[0,6,1,"","author_attribution"],[0,6,1,"","flag_content_uri"],[0,6,1,"","google_maps_uri"],[0,6,1,"","relative_publish_time_description"],[0,6,1,"","review"],[0,6,1,"","review_id"],[0,6,1,"","title"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict":[[0,4,1,"","author_attribution"],[0,4,1,"","flag_content_uri"],[0,4,1,"","google_maps_uri"],[0,4,1,"","relative_publish_time_description"],[0,4,1,"","review"],[0,4,1,"","review_id"],[0,4,1,"","title"]],"genai.types.GroundingChunkMapsRoute":[[0,6,1,"","distance_meters"],[0,6,1,"","duration"],[0,6,1,"","encoded_polyline"]],"genai.types.GroundingChunkMapsRouteDict":[[0,4,1,"","distance_meters"],[0,4,1,"","duration"],[0,4,1,"","encoded_polyline"]],"genai.types.GroundingChunkRetrievedContext":[[0,6,1,"","custom_metadata"],[0,6,1,"","document_name"],[0,6,1,"","file_search_store"],[0,6,1,"","media_id"],[0,6,1,"","page_number"],[0,6,1,"","rag_chunk"],[0,6,1,"","text"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.GroundingChunkRetrievedContextDict":[[0,4,1,"","custom_metadata"],[0,4,1,"","document_name"],[0,4,1,"","file_search_store"],[0,4,1,"","media_id"],[0,4,1,"","page_number"],[0,4,1,"","rag_chunk"],[0,4,1,"","text"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.GroundingChunkStringList":[[0,6,1,"","values"]],"genai.types.GroundingChunkWeb":[[0,6,1,"","domain"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.GroundingChunkWebDict":[[0,4,1,"","domain"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.GroundingMetadata":[[0,6,1,"","google_maps_widget_context_token"],[0,6,1,"","grounding_chunks"],[0,6,1,"","grounding_supports"],[0,6,1,"","image_search_queries"],[0,6,1,"","retrieval_metadata"],[0,6,1,"","retrieval_queries"],[0,6,1,"","search_entry_point"],[0,6,1,"","source_flagging_uris"],[0,6,1,"","web_search_queries"]],"genai.types.GroundingMetadataDict":[[0,4,1,"","google_maps_widget_context_token"],[0,4,1,"","grounding_chunks"],[0,4,1,"","grounding_supports"],[0,4,1,"","image_search_queries"],[0,4,1,"","retrieval_metadata"],[0,4,1,"","retrieval_queries"],[0,4,1,"","search_entry_point"],[0,4,1,"","source_flagging_uris"],[0,4,1,"","web_search_queries"]],"genai.types.GroundingMetadataSourceFlaggingUri":[[0,6,1,"","flag_content_uri"],[0,6,1,"","source_id"]],"genai.types.GroundingMetadataSourceFlaggingUriDict":[[0,4,1,"","flag_content_uri"],[0,4,1,"","source_id"]],"genai.types.GroundingSupport":[[0,6,1,"","confidence_scores"],[0,6,1,"","grounding_chunk_indices"],[0,6,1,"","rendered_parts"],[0,6,1,"","segment"]],"genai.types.GroundingSupportDict":[[0,4,1,"","confidence_scores"],[0,4,1,"","grounding_chunk_indices"],[0,4,1,"","rendered_parts"],[0,4,1,"","segment"]],"genai.types.HarmBlockMethod":[[0,4,1,"","HARM_BLOCK_METHOD_UNSPECIFIED"],[0,4,1,"","PROBABILITY"],[0,4,1,"","SEVERITY"]],"genai.types.HarmBlockThreshold":[[0,4,1,"","BLOCK_LOW_AND_ABOVE"],[0,4,1,"","BLOCK_MEDIUM_AND_ABOVE"],[0,4,1,"","BLOCK_NONE"],[0,4,1,"","BLOCK_ONLY_HIGH"],[0,4,1,"","HARM_BLOCK_THRESHOLD_UNSPECIFIED"],[0,4,1,"","OFF"]],"genai.types.HarmCategory":[[0,4,1,"","HARM_CATEGORY_CIVIC_INTEGRITY"],[0,4,1,"","HARM_CATEGORY_DANGEROUS_CONTENT"],[0,4,1,"","HARM_CATEGORY_HARASSMENT"],[0,4,1,"","HARM_CATEGORY_HATE_SPEECH"],[0,4,1,"","HARM_CATEGORY_IMAGE_DANGEROUS_CONTENT"],[0,4,1,"","HARM_CATEGORY_IMAGE_HARASSMENT"],[0,4,1,"","HARM_CATEGORY_IMAGE_HATE"],[0,4,1,"","HARM_CATEGORY_IMAGE_SEXUALLY_EXPLICIT"],[0,4,1,"","HARM_CATEGORY_JAILBREAK"],[0,4,1,"","HARM_CATEGORY_SEXUALLY_EXPLICIT"],[0,4,1,"","HARM_CATEGORY_UNSPECIFIED"]],"genai.types.HarmProbability":[[0,4,1,"","HARM_PROBABILITY_UNSPECIFIED"],[0,4,1,"","HIGH"],[0,4,1,"","LOW"],[0,4,1,"","MEDIUM"],[0,4,1,"","NEGLIGIBLE"]],"genai.types.HarmSeverity":[[0,4,1,"","HARM_SEVERITY_HIGH"],[0,4,1,"","HARM_SEVERITY_LOW"],[0,4,1,"","HARM_SEVERITY_MEDIUM"],[0,4,1,"","HARM_SEVERITY_NEGLIGIBLE"],[0,4,1,"","HARM_SEVERITY_UNSPECIFIED"]],"genai.types.HistoryConfig":[[0,6,1,"","initial_history_in_client_content"]],"genai.types.HistoryConfigDict":[[0,4,1,"","initial_history_in_client_content"]],"genai.types.HttpElementLocation":[[0,4,1,"","HTTP_IN_BODY"],[0,4,1,"","HTTP_IN_COOKIE"],[0,4,1,"","HTTP_IN_HEADER"],[0,4,1,"","HTTP_IN_PATH"],[0,4,1,"","HTTP_IN_QUERY"],[0,4,1,"","HTTP_IN_UNSPECIFIED"]],"genai.types.HttpOptions":[[0,6,1,"","aiohttp_client"],[0,6,1,"","api_version"],[0,6,1,"","async_client_args"],[0,6,1,"","base_url"],[0,6,1,"","base_url_resource_scope"],[0,6,1,"","client_args"],[0,6,1,"","extra_body"],[0,6,1,"","headers"],[0,6,1,"","httpx_async_client"],[0,6,1,"","httpx_client"],[0,6,1,"","retry_options"],[0,6,1,"","timeout"]],"genai.types.HttpOptionsDict":[[0,4,1,"","api_version"],[0,4,1,"","async_client_args"],[0,4,1,"","base_url"],[0,4,1,"","base_url_resource_scope"],[0,4,1,"","client_args"],[0,4,1,"","extra_body"],[0,4,1,"","headers"],[0,4,1,"","retry_options"],[0,4,1,"","timeout"]],"genai.types.HttpResponse":[[0,6,1,"","body"],[0,6,1,"","headers"]],"genai.types.HttpResponseDict":[[0,4,1,"","body"],[0,4,1,"","headers"]],"genai.types.HttpRetryOptions":[[0,6,1,"","attempts"],[0,6,1,"","exp_base"],[0,6,1,"","http_status_codes"],[0,6,1,"","initial_delay"],[0,6,1,"","jitter"],[0,6,1,"","max_delay"]],"genai.types.HttpRetryOptionsDict":[[0,4,1,"","attempts"],[0,4,1,"","exp_base"],[0,4,1,"","http_status_codes"],[0,4,1,"","initial_delay"],[0,4,1,"","jitter"],[0,4,1,"","max_delay"]],"genai.types.Image":[[0,1,1,"","from_file"],[0,6,1,"","gcs_uri"],[0,6,1,"","image_bytes"],[0,6,1,"","mime_type"],[0,1,1,"","model_post_init"],[0,1,1,"","save"],[0,1,1,"","show"]],"genai.types.ImageConfig":[[0,6,1,"","aspect_ratio"],[0,6,1,"","image_output_options"],[0,6,1,"","image_size"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","prominent_people"]],"genai.types.ImageConfigDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","image_output_options"],[0,4,1,"","image_size"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","prominent_people"]],"genai.types.ImageConfigImageOutputOptions":[[0,6,1,"","compression_quality"],[0,6,1,"","mime_type"]],"genai.types.ImageConfigImageOutputOptionsDict":[[0,4,1,"","compression_quality"],[0,4,1,"","mime_type"]],"genai.types.ImageDict":[[0,4,1,"","gcs_uri"],[0,4,1,"","image_bytes"],[0,4,1,"","mime_type"]],"genai.types.ImagePromptLanguage":[[0,4,1,"","auto"],[0,4,1,"","en"],[0,4,1,"","es"],[0,4,1,"","hi"],[0,4,1,"","ja"],[0,4,1,"","ko"],[0,4,1,"","pt"],[0,4,1,"","zh"]],"genai.types.ImageResizeMode":[[0,4,1,"","CROP"],[0,4,1,"","PAD"]],"genai.types.ImageResponseFormat":[[0,6,1,"","aspect_ratio"],[0,6,1,"","delivery"],[0,6,1,"","image_size"],[0,6,1,"","mime_type"]],"genai.types.ImageResponseFormatDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","delivery"],[0,4,1,"","image_size"],[0,4,1,"","mime_type"]],"genai.types.ImageSize":[[0,4,1,"","IMAGE_SIZE_FIVE_TWELVE"],[0,4,1,"","IMAGE_SIZE_FOUR_K"],[0,4,1,"","IMAGE_SIZE_ONE_K"],[0,4,1,"","IMAGE_SIZE_TWO_K"],[0,4,1,"","IMAGE_SIZE_UNSPECIFIED"]],"genai.types.ImportFileConfig":[[0,6,1,"","chunking_config"],[0,6,1,"","custom_metadata"],[0,6,1,"","http_options"]],"genai.types.ImportFileConfigDict":[[0,4,1,"","chunking_config"],[0,4,1,"","custom_metadata"],[0,4,1,"","http_options"]],"genai.types.ImportFileOperation":[[0,1,1,"","from_api_response"],[0,6,1,"","response"]],"genai.types.ImportFileResponse":[[0,6,1,"","document_name"],[0,6,1,"","parent"],[0,6,1,"","sdk_http_response"]],"genai.types.ImportFileResponseDict":[[0,4,1,"","document_name"],[0,4,1,"","parent"],[0,4,1,"","sdk_http_response"]],"genai.types.InlinedEmbedContentResponse":[[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","response"]],"genai.types.InlinedEmbedContentResponseDict":[[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","response"]],"genai.types.InlinedRequest":[[0,6,1,"","config"],[0,6,1,"","contents"],[0,6,1,"","metadata"],[0,6,1,"","model"]],"genai.types.InlinedRequestDict":[[0,4,1,"","config"],[0,4,1,"","contents"],[0,4,1,"","metadata"],[0,4,1,"","model"]],"genai.types.InlinedResponse":[[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","response"]],"genai.types.InlinedResponseDict":[[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","response"]],"genai.types.Interval":[[0,6,1,"","end_time"],[0,6,1,"","start_time"]],"genai.types.IntervalDict":[[0,4,1,"","end_time"],[0,4,1,"","start_time"]],"genai.types.JSONSchema":[[0,6,1,"","additional_properties"],[0,6,1,"","any_of"],[0,6,1,"","default"],[0,6,1,"","defs"],[0,6,1,"","description"],[0,6,1,"","enum"],[0,6,1,"","format"],[0,6,1,"","items"],[0,6,1,"","max_items"],[0,6,1,"","max_length"],[0,6,1,"","max_properties"],[0,6,1,"","maximum"],[0,6,1,"","min_items"],[0,6,1,"","min_length"],[0,6,1,"","min_properties"],[0,6,1,"","minimum"],[0,6,1,"","one_of"],[0,6,1,"","pattern"],[0,6,1,"","properties"],[0,6,1,"","ref"],[0,6,1,"","required"],[0,6,1,"","title"],[0,6,1,"","type"],[0,6,1,"","unique_items"]],"genai.types.JSONSchemaType":[[0,4,1,"","ARRAY"],[0,4,1,"","BOOLEAN"],[0,4,1,"","INTEGER"],[0,4,1,"","NULL"],[0,4,1,"","NUMBER"],[0,4,1,"","OBJECT"],[0,4,1,"","STRING"]],"genai.types.JobError":[[0,6,1,"","code"],[0,6,1,"","details"],[0,6,1,"","message"]],"genai.types.JobErrorDict":[[0,4,1,"","code"],[0,4,1,"","details"],[0,4,1,"","message"]],"genai.types.JobState":[[0,4,1,"","JOB_STATE_CANCELLED"],[0,4,1,"","JOB_STATE_CANCELLING"],[0,4,1,"","JOB_STATE_EXPIRED"],[0,4,1,"","JOB_STATE_FAILED"],[0,4,1,"","JOB_STATE_PARTIALLY_SUCCEEDED"],[0,4,1,"","JOB_STATE_PAUSED"],[0,4,1,"","JOB_STATE_PENDING"],[0,4,1,"","JOB_STATE_QUEUED"],[0,4,1,"","JOB_STATE_RUNNING"],[0,4,1,"","JOB_STATE_SUCCEEDED"],[0,4,1,"","JOB_STATE_UNSPECIFIED"],[0,4,1,"","JOB_STATE_UPDATING"]],"genai.types.LLMBasedMetricSpec":[[0,6,1,"","additional_config"],[0,6,1,"","judge_autorater_config"],[0,6,1,"","metric_prompt_template"],[0,6,1,"","predefined_rubric_generation_spec"],[0,6,1,"","result_parser_config"],[0,6,1,"","rubric_generation_spec"],[0,6,1,"","rubric_group_key"],[0,6,1,"","system_instruction"]],"genai.types.LLMBasedMetricSpecDict":[[0,4,1,"","additional_config"],[0,4,1,"","judge_autorater_config"],[0,4,1,"","metric_prompt_template"],[0,4,1,"","predefined_rubric_generation_spec"],[0,4,1,"","result_parser_config"],[0,4,1,"","rubric_generation_spec"],[0,4,1,"","rubric_group_key"],[0,4,1,"","system_instruction"]],"genai.types.Language":[[0,4,1,"","LANGUAGE_UNSPECIFIED"],[0,4,1,"","PYTHON"]],"genai.types.LanguageHints":[[0,6,1,"","language_codes"]],"genai.types.LanguageHintsDict":[[0,4,1,"","language_codes"]],"genai.types.LatLng":[[0,6,1,"","latitude"],[0,6,1,"","longitude"]],"genai.types.LatLngDict":[[0,4,1,"","latitude"],[0,4,1,"","longitude"]],"genai.types.ListBatchJobsConfig":[[0,6,1,"","filter"],[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListBatchJobsConfigDict":[[0,4,1,"","filter"],[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListBatchJobsResponse":[[0,6,1,"","batch_jobs"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListBatchJobsResponseDict":[[0,4,1,"","batch_jobs"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListCachedContentsConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListCachedContentsConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListCachedContentsResponse":[[0,6,1,"","cached_contents"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListCachedContentsResponseDict":[[0,4,1,"","cached_contents"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListDocumentsConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListDocumentsConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListDocumentsResponse":[[0,6,1,"","documents"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListDocumentsResponseDict":[[0,4,1,"","documents"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListFileSearchStoresConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListFileSearchStoresConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListFileSearchStoresResponse":[[0,6,1,"","file_search_stores"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListFileSearchStoresResponseDict":[[0,4,1,"","file_search_stores"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListFilesConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListFilesConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListFilesResponse":[[0,6,1,"","files"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListFilesResponseDict":[[0,4,1,"","files"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListModelsConfig":[[0,6,1,"","filter"],[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"],[0,6,1,"","query_base"]],"genai.types.ListModelsConfigDict":[[0,4,1,"","filter"],[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"],[0,4,1,"","query_base"]],"genai.types.ListModelsResponse":[[0,6,1,"","models"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListModelsResponseDict":[[0,4,1,"","models"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListTuningJobsConfig":[[0,6,1,"","filter"],[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListTuningJobsConfigDict":[[0,4,1,"","filter"],[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListTuningJobsResponse":[[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"],[0,6,1,"","tuning_jobs"]],"genai.types.ListTuningJobsResponseDict":[[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"],[0,4,1,"","tuning_jobs"]],"genai.types.LiveClientContent":[[0,6,1,"","turn_complete"],[0,6,1,"","turns"]],"genai.types.LiveClientContentDict":[[0,4,1,"","turn_complete"],[0,4,1,"","turns"]],"genai.types.LiveClientMessage":[[0,6,1,"","client_content"],[0,6,1,"","realtime_input"],[0,6,1,"","setup"],[0,6,1,"","tool_response"]],"genai.types.LiveClientMessageDict":[[0,4,1,"","client_content"],[0,4,1,"","realtime_input"],[0,4,1,"","setup"],[0,4,1,"","tool_response"]],"genai.types.LiveClientRealtimeInput":[[0,6,1,"","activity_end"],[0,6,1,"","activity_start"],[0,6,1,"","audio"],[0,6,1,"","audio_stream_end"],[0,6,1,"","media_chunks"],[0,6,1,"","text"],[0,6,1,"","video"]],"genai.types.LiveClientRealtimeInputDict":[[0,4,1,"","activity_end"],[0,4,1,"","activity_start"],[0,4,1,"","audio"],[0,4,1,"","audio_stream_end"],[0,4,1,"","media_chunks"],[0,4,1,"","text"],[0,4,1,"","video"]],"genai.types.LiveClientSetup":[[0,6,1,"","avatar_config"],[0,6,1,"","context_window_compression"],[0,6,1,"","explicit_vad_signal"],[0,6,1,"","generation_config"],[0,6,1,"","history_config"],[0,6,1,"","input_audio_transcription"],[0,6,1,"","model"],[0,6,1,"","output_audio_transcription"],[0,6,1,"","proactivity"],[0,6,1,"","safety_settings"],[0,6,1,"","session_resumption"],[0,6,1,"","system_instruction"],[0,6,1,"","tools"]],"genai.types.LiveClientSetupDict":[[0,4,1,"","avatar_config"],[0,4,1,"","context_window_compression"],[0,4,1,"","explicit_vad_signal"],[0,4,1,"","generation_config"],[0,4,1,"","history_config"],[0,4,1,"","input_audio_transcription"],[0,4,1,"","model"],[0,4,1,"","output_audio_transcription"],[0,4,1,"","proactivity"],[0,4,1,"","safety_settings"],[0,4,1,"","session_resumption"],[0,4,1,"","system_instruction"],[0,4,1,"","tools"]],"genai.types.LiveClientToolResponse":[[0,6,1,"","function_responses"]],"genai.types.LiveClientToolResponseDict":[[0,4,1,"","function_responses"]],"genai.types.LiveConnectConfig":[[0,6,1,"","avatar_config"],[0,6,1,"","context_window_compression"],[0,6,1,"","enable_affective_dialog"],[0,6,1,"","explicit_vad_signal"],[0,6,1,"","generation_config"],[0,6,1,"","history_config"],[0,6,1,"","http_options"],[0,6,1,"","input_audio_transcription"],[0,6,1,"","max_output_tokens"],[0,6,1,"","media_resolution"],[0,6,1,"","output_audio_transcription"],[0,6,1,"","proactivity"],[0,6,1,"","realtime_input_config"],[0,6,1,"","response_modalities"],[0,6,1,"","safety_settings"],[0,6,1,"","seed"],[0,6,1,"","session_resumption"],[0,6,1,"","speech_config"],[0,6,1,"","system_instruction"],[0,6,1,"","temperature"],[0,6,1,"","thinking_config"],[0,6,1,"","tools"],[0,6,1,"","top_k"],[0,6,1,"","top_p"],[0,6,1,"","translation_config"]],"genai.types.LiveConnectConfigDict":[[0,4,1,"","avatar_config"],[0,4,1,"","context_window_compression"],[0,4,1,"","enable_affective_dialog"],[0,4,1,"","explicit_vad_signal"],[0,4,1,"","generation_config"],[0,4,1,"","history_config"],[0,4,1,"","http_options"],[0,4,1,"","input_audio_transcription"],[0,4,1,"","max_output_tokens"],[0,4,1,"","media_resolution"],[0,4,1,"","output_audio_transcription"],[0,4,1,"","proactivity"],[0,4,1,"","realtime_input_config"],[0,4,1,"","response_modalities"],[0,4,1,"","safety_settings"],[0,4,1,"","seed"],[0,4,1,"","session_resumption"],[0,4,1,"","speech_config"],[0,4,1,"","system_instruction"],[0,4,1,"","temperature"],[0,4,1,"","thinking_config"],[0,4,1,"","tools"],[0,4,1,"","top_k"],[0,4,1,"","top_p"],[0,4,1,"","translation_config"]],"genai.types.LiveConnectConstraints":[[0,6,1,"","config"],[0,6,1,"","model"]],"genai.types.LiveConnectConstraintsDict":[[0,4,1,"","config"],[0,4,1,"","model"]],"genai.types.LiveConnectParameters":[[0,6,1,"","config"],[0,6,1,"","model"]],"genai.types.LiveConnectParametersDict":[[0,4,1,"","config"],[0,4,1,"","model"]],"genai.types.LiveMusicClientContent":[[0,6,1,"","weighted_prompts"]],"genai.types.LiveMusicClientContentDict":[[0,4,1,"","weighted_prompts"]],"genai.types.LiveMusicClientMessage":[[0,6,1,"","client_content"],[0,6,1,"","music_generation_config"],[0,6,1,"","playback_control"],[0,6,1,"","setup"]],"genai.types.LiveMusicClientMessageDict":[[0,4,1,"","client_content"],[0,4,1,"","music_generation_config"],[0,4,1,"","playback_control"],[0,4,1,"","setup"]],"genai.types.LiveMusicClientSetup":[[0,6,1,"","model"]],"genai.types.LiveMusicClientSetupDict":[[0,4,1,"","model"]],"genai.types.LiveMusicConnectParameters":[[0,6,1,"","model"]],"genai.types.LiveMusicConnectParametersDict":[[0,4,1,"","model"]],"genai.types.LiveMusicFilteredPrompt":[[0,6,1,"","filtered_reason"],[0,6,1,"","text"]],"genai.types.LiveMusicFilteredPromptDict":[[0,4,1,"","filtered_reason"],[0,4,1,"","text"]],"genai.types.LiveMusicGenerationConfig":[[0,6,1,"","bpm"],[0,6,1,"","brightness"],[0,6,1,"","density"],[0,6,1,"","guidance"],[0,6,1,"","music_generation_mode"],[0,6,1,"","mute_bass"],[0,6,1,"","mute_drums"],[0,6,1,"","only_bass_and_drums"],[0,6,1,"","scale"],[0,6,1,"","seed"],[0,6,1,"","temperature"],[0,6,1,"","top_k"]],"genai.types.LiveMusicGenerationConfigDict":[[0,4,1,"","bpm"],[0,4,1,"","brightness"],[0,4,1,"","density"],[0,4,1,"","guidance"],[0,4,1,"","music_generation_mode"],[0,4,1,"","mute_bass"],[0,4,1,"","mute_drums"],[0,4,1,"","only_bass_and_drums"],[0,4,1,"","scale"],[0,4,1,"","seed"],[0,4,1,"","temperature"],[0,4,1,"","top_k"]],"genai.types.LiveMusicPlaybackControl":[[0,4,1,"","PAUSE"],[0,4,1,"","PLAY"],[0,4,1,"","PLAYBACK_CONTROL_UNSPECIFIED"],[0,4,1,"","RESET_CONTEXT"],[0,4,1,"","STOP"]],"genai.types.LiveMusicServerContent":[[0,6,1,"","audio_chunks"]],"genai.types.LiveMusicServerContentDict":[[0,4,1,"","audio_chunks"]],"genai.types.LiveMusicServerMessage":[[0,6,1,"","filtered_prompt"],[0,6,1,"","server_content"],[0,6,1,"","setup_complete"]],"genai.types.LiveMusicServerMessageDict":[[0,4,1,"","filtered_prompt"],[0,4,1,"","server_content"],[0,4,1,"","setup_complete"]],"genai.types.LiveMusicSetConfigParameters":[[0,6,1,"","music_generation_config"]],"genai.types.LiveMusicSetConfigParametersDict":[[0,4,1,"","music_generation_config"]],"genai.types.LiveMusicSetWeightedPromptsParameters":[[0,6,1,"","weighted_prompts"]],"genai.types.LiveMusicSetWeightedPromptsParametersDict":[[0,4,1,"","weighted_prompts"]],"genai.types.LiveMusicSourceMetadata":[[0,6,1,"","client_content"],[0,6,1,"","music_generation_config"]],"genai.types.LiveMusicSourceMetadataDict":[[0,4,1,"","client_content"],[0,4,1,"","music_generation_config"]],"genai.types.LiveSendRealtimeInputParameters":[[0,6,1,"","activity_end"],[0,6,1,"","activity_start"],[0,6,1,"","audio"],[0,6,1,"","audio_stream_end"],[0,6,1,"","media"],[0,6,1,"","text"],[0,6,1,"","video"]],"genai.types.LiveSendRealtimeInputParametersDict":[[0,4,1,"","activity_end"],[0,4,1,"","activity_start"],[0,4,1,"","audio"],[0,4,1,"","audio_stream_end"],[0,4,1,"","media"],[0,4,1,"","text"],[0,4,1,"","video"]],"genai.types.LiveServerContent":[[0,6,1,"","generation_complete"],[0,6,1,"","grounding_metadata"],[0,6,1,"","input_transcription"],[0,6,1,"","interim_input_transcription"],[0,6,1,"","interrupted"],[0,6,1,"","model_turn"],[0,6,1,"","output_transcription"],[0,6,1,"","turn_complete"],[0,6,1,"","turn_complete_reason"],[0,6,1,"","url_context_metadata"],[0,6,1,"","waiting_for_input"]],"genai.types.LiveServerContentDict":[[0,4,1,"","generation_complete"],[0,4,1,"","grounding_metadata"],[0,4,1,"","input_transcription"],[0,4,1,"","interim_input_transcription"],[0,4,1,"","interrupted"],[0,4,1,"","model_turn"],[0,4,1,"","output_transcription"],[0,4,1,"","turn_complete"],[0,4,1,"","turn_complete_reason"],[0,4,1,"","url_context_metadata"],[0,4,1,"","waiting_for_input"]],"genai.types.LiveServerGoAway":[[0,6,1,"","time_left"]],"genai.types.LiveServerGoAwayDict":[[0,4,1,"","time_left"]],"genai.types.LiveServerMessage":[[0,2,1,"","data"],[0,6,1,"","go_away"],[0,6,1,"","server_content"],[0,6,1,"","session_resumption_update"],[0,6,1,"","setup_complete"],[0,2,1,"","text"],[0,6,1,"","tool_call"],[0,6,1,"","tool_call_cancellation"],[0,6,1,"","usage_metadata"],[0,6,1,"","voice_activity"],[0,6,1,"","voice_activity_detection_signal"]],"genai.types.LiveServerMessageDict":[[0,4,1,"","go_away"],[0,4,1,"","server_content"],[0,4,1,"","session_resumption_update"],[0,4,1,"","setup_complete"],[0,4,1,"","tool_call"],[0,4,1,"","tool_call_cancellation"],[0,4,1,"","usage_metadata"],[0,4,1,"","voice_activity"],[0,4,1,"","voice_activity_detection_signal"]],"genai.types.LiveServerSessionResumptionUpdate":[[0,6,1,"","last_consumed_client_message_index"],[0,6,1,"","new_handle"],[0,6,1,"","resumable"]],"genai.types.LiveServerSessionResumptionUpdateDict":[[0,4,1,"","last_consumed_client_message_index"],[0,4,1,"","new_handle"],[0,4,1,"","resumable"]],"genai.types.LiveServerSetupComplete":[[0,6,1,"","session_id"],[0,6,1,"","voice_consent_signature"]],"genai.types.LiveServerSetupCompleteDict":[[0,4,1,"","session_id"],[0,4,1,"","voice_consent_signature"]],"genai.types.LiveServerToolCall":[[0,6,1,"","function_calls"]],"genai.types.LiveServerToolCallCancellation":[[0,6,1,"","ids"]],"genai.types.LiveServerToolCallCancellationDict":[[0,4,1,"","ids"]],"genai.types.LiveServerToolCallDict":[[0,4,1,"","function_calls"]],"genai.types.LogprobsResult":[[0,6,1,"","chosen_candidates"],[0,6,1,"","log_probability_sum"],[0,6,1,"","top_candidates"]],"genai.types.LogprobsResultCandidate":[[0,6,1,"","log_probability"],[0,6,1,"","token"],[0,6,1,"","token_id"]],"genai.types.LogprobsResultCandidateDict":[[0,4,1,"","log_probability"],[0,4,1,"","token"],[0,4,1,"","token_id"]],"genai.types.LogprobsResultDict":[[0,4,1,"","chosen_candidates"],[0,4,1,"","log_probability_sum"],[0,4,1,"","top_candidates"]],"genai.types.LogprobsResultTopCandidates":[[0,6,1,"","candidates"]],"genai.types.LogprobsResultTopCandidatesDict":[[0,4,1,"","candidates"]],"genai.types.MaskReferenceConfig":[[0,6,1,"","mask_dilation"],[0,6,1,"","mask_mode"],[0,6,1,"","segmentation_classes"]],"genai.types.MaskReferenceConfigDict":[[0,4,1,"","mask_dilation"],[0,4,1,"","mask_mode"],[0,4,1,"","segmentation_classes"]],"genai.types.MaskReferenceImage":[[0,6,1,"","config"],[0,6,1,"","mask_image_config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.MaskReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.MaskReferenceMode":[[0,4,1,"","MASK_MODE_BACKGROUND"],[0,4,1,"","MASK_MODE_DEFAULT"],[0,4,1,"","MASK_MODE_FOREGROUND"],[0,4,1,"","MASK_MODE_SEMANTIC"],[0,4,1,"","MASK_MODE_USER_PROVIDED"]],"genai.types.MatchOperation":[[0,4,1,"","EXACT_MATCH"],[0,4,1,"","MATCH_OPERATION_UNSPECIFIED"],[0,4,1,"","PARTIAL_MATCH"],[0,4,1,"","REGEX_CONTAINS"]],"genai.types.McpServer":[[0,6,1,"","name"],[0,6,1,"","streamable_http_transport"]],"genai.types.McpServerDict":[[0,4,1,"","name"],[0,4,1,"","streamable_http_transport"]],"genai.types.MediaModality":[[0,4,1,"","AUDIO"],[0,4,1,"","DOCUMENT"],[0,4,1,"","IMAGE"],[0,4,1,"","MODALITY_UNSPECIFIED"],[0,4,1,"","TEXT"],[0,4,1,"","VIDEO"]],"genai.types.MediaResolution":[[0,4,1,"","MEDIA_RESOLUTION_HIGH"],[0,4,1,"","MEDIA_RESOLUTION_LOW"],[0,4,1,"","MEDIA_RESOLUTION_MEDIUM"],[0,4,1,"","MEDIA_RESOLUTION_UNSPECIFIED"]],"genai.types.Metric":[[0,6,1,"","aggregate_summary_fn"],[0,6,1,"","custom_function"],[0,6,1,"","judge_model_system_instruction"],[0,1,1,"","model_post_init"],[0,6,1,"","name"],[0,6,1,"","parse_and_reduce_fn"],[0,6,1,"","prompt_template"],[0,6,1,"","return_raw_output"],[0,1,1,"","to_yaml_file"],[0,7,1,"","validate_name"]],"genai.types.MetricDict":[[0,4,1,"","aggregate_summary_fn"],[0,4,1,"","custom_function"],[0,4,1,"","judge_model_system_instruction"],[0,4,1,"","name"],[0,4,1,"","parse_and_reduce_fn"],[0,4,1,"","prompt_template"],[0,4,1,"","return_raw_output"]],"genai.types.Modality":[[0,4,1,"","AUDIO"],[0,4,1,"","IMAGE"],[0,4,1,"","MODALITY_UNSPECIFIED"],[0,4,1,"","TEXT"],[0,4,1,"","VIDEO"]],"genai.types.ModalityTokenCount":[[0,6,1,"","modality"],[0,6,1,"","token_count"]],"genai.types.ModalityTokenCountDict":[[0,4,1,"","modality"],[0,4,1,"","token_count"]],"genai.types.Model":[[0,6,1,"","checkpoints"],[0,6,1,"","default_checkpoint_id"],[0,6,1,"","description"],[0,6,1,"","display_name"],[0,6,1,"","endpoints"],[0,6,1,"","input_token_limit"],[0,6,1,"","labels"],[0,6,1,"","max_temperature"],[0,6,1,"","name"],[0,6,1,"","output_token_limit"],[0,6,1,"","supported_actions"],[0,6,1,"","temperature"],[0,6,1,"","thinking"],[0,6,1,"","top_k"],[0,6,1,"","top_p"],[0,6,1,"","tuned_model_info"],[0,6,1,"","version"]],"genai.types.ModelArmorConfig":[[0,6,1,"","prompt_template_name"],[0,6,1,"","response_template_name"]],"genai.types.ModelArmorConfigDict":[[0,4,1,"","prompt_template_name"],[0,4,1,"","response_template_name"]],"genai.types.ModelContent":[[0,6,1,"","parts"],[0,6,1,"","role"]],"genai.types.ModelDict":[[0,4,1,"","checkpoints"],[0,4,1,"","default_checkpoint_id"],[0,4,1,"","description"],[0,4,1,"","display_name"],[0,4,1,"","endpoints"],[0,4,1,"","input_token_limit"],[0,4,1,"","labels"],[0,4,1,"","max_temperature"],[0,4,1,"","name"],[0,4,1,"","output_token_limit"],[0,4,1,"","supported_actions"],[0,4,1,"","temperature"],[0,4,1,"","thinking"],[0,4,1,"","top_k"],[0,4,1,"","top_p"],[0,4,1,"","tuned_model_info"],[0,4,1,"","version"]],"genai.types.ModelSelectionConfig":[[0,6,1,"","feature_selection_preference"]],"genai.types.ModelSelectionConfigDict":[[0,4,1,"","feature_selection_preference"]],"genai.types.ModelStage":[[0,4,1,"","DEPRECATED"],[0,4,1,"","EXPERIMENTAL"],[0,4,1,"","LEGACY"],[0,4,1,"","MODEL_STAGE_UNSPECIFIED"],[0,4,1,"","PREVIEW"],[0,4,1,"","RETIRED"],[0,4,1,"","STABLE"],[0,4,1,"","UNSTABLE_EXPERIMENTAL"]],"genai.types.ModelStatus":[[0,6,1,"","message"],[0,6,1,"","model_stage"],[0,6,1,"","retirement_time"]],"genai.types.ModelStatusDict":[[0,4,1,"","message"],[0,4,1,"","model_stage"],[0,4,1,"","retirement_time"]],"genai.types.MultiSpeakerVoiceConfig":[[0,6,1,"","speaker_voice_configs"]],"genai.types.MultiSpeakerVoiceConfigDict":[[0,4,1,"","speaker_voice_configs"]],"genai.types.MusicGenerationMode":[[0,4,1,"","DIVERSITY"],[0,4,1,"","MUSIC_GENERATION_MODE_UNSPECIFIED"],[0,4,1,"","QUALITY"],[0,4,1,"","VOCALIZATION"]],"genai.types.Operation":[[0,4,1,"","done"],[0,4,1,"","error"],[0,1,1,"","from_api_response"],[0,4,1,"","metadata"],[0,4,1,"","name"]],"genai.types.Outcome":[[0,4,1,"","OUTCOME_DEADLINE_EXCEEDED"],[0,4,1,"","OUTCOME_FAILED"],[0,4,1,"","OUTCOME_OK"],[0,4,1,"","OUTCOME_UNSPECIFIED"]],"genai.types.OutputConfig":[[0,6,1,"","gcs_destination"]],"genai.types.OutputConfigDict":[[0,4,1,"","gcs_destination"]],"genai.types.OutputInfo":[[0,6,1,"","gcs_output_directory"]],"genai.types.OutputInfoDict":[[0,4,1,"","gcs_output_directory"]],"genai.types.PairwiseChoice":[[0,4,1,"","BASELINE"],[0,4,1,"","CANDIDATE"],[0,4,1,"","PAIRWISE_CHOICE_UNSPECIFIED"],[0,4,1,"","TIE"]],"genai.types.PairwiseMetricResult":[[0,6,1,"","custom_output"],[0,6,1,"","explanation"],[0,6,1,"","pairwise_choice"]],"genai.types.PairwiseMetricResultDict":[[0,4,1,"","custom_output"],[0,4,1,"","explanation"],[0,4,1,"","pairwise_choice"]],"genai.types.PairwiseMetricSpec":[[0,6,1,"","baseline_response_field_name"],[0,6,1,"","candidate_response_field_name"],[0,6,1,"","custom_output_format_config"],[0,6,1,"","metric_prompt_template"],[0,6,1,"","system_instruction"]],"genai.types.PairwiseMetricSpecDict":[[0,4,1,"","baseline_response_field_name"],[0,4,1,"","candidate_response_field_name"],[0,4,1,"","custom_output_format_config"],[0,4,1,"","metric_prompt_template"],[0,4,1,"","system_instruction"]],"genai.types.Part":[[0,1,1,"","as_image"],[0,6,1,"","audio_transcription"],[0,6,1,"","code_execution_result"],[0,6,1,"","executable_code"],[0,6,1,"","file_data"],[0,1,1,"","from_bytes"],[0,1,1,"","from_code_execution_result"],[0,1,1,"","from_executable_code"],[0,1,1,"","from_function_call"],[0,1,1,"","from_function_response"],[0,1,1,"","from_text"],[0,1,1,"","from_uri"],[0,6,1,"","function_call"],[0,6,1,"","function_response"],[0,6,1,"","inline_data"],[0,6,1,"","media_resolution"],[0,6,1,"","part_metadata"],[0,6,1,"","text"],[0,6,1,"","thought"],[0,6,1,"","thought_signature"],[0,6,1,"","tool_call"],[0,6,1,"","tool_response"],[0,6,1,"","video_metadata"]],"genai.types.PartDict":[[0,4,1,"","audio_transcription"],[0,4,1,"","code_execution_result"],[0,4,1,"","executable_code"],[0,4,1,"","file_data"],[0,4,1,"","function_call"],[0,4,1,"","function_response"],[0,4,1,"","inline_data"],[0,4,1,"","media_resolution"],[0,4,1,"","part_metadata"],[0,4,1,"","text"],[0,4,1,"","thought"],[0,4,1,"","thought_signature"],[0,4,1,"","tool_call"],[0,4,1,"","tool_response"],[0,4,1,"","video_metadata"]],"genai.types.PartMediaResolution":[[0,6,1,"","level"],[0,6,1,"","num_tokens"]],"genai.types.PartMediaResolutionDict":[[0,4,1,"","level"],[0,4,1,"","num_tokens"]],"genai.types.PartMediaResolutionLevel":[[0,4,1,"","MEDIA_RESOLUTION_HIGH"],[0,4,1,"","MEDIA_RESOLUTION_LOW"],[0,4,1,"","MEDIA_RESOLUTION_MEDIUM"],[0,4,1,"","MEDIA_RESOLUTION_ULTRA_HIGH"],[0,4,1,"","MEDIA_RESOLUTION_UNSPECIFIED"]],"genai.types.PartialArg":[[0,6,1,"","bool_value"],[0,6,1,"","json_path"],[0,6,1,"","null_value"],[0,6,1,"","number_value"],[0,6,1,"","string_value"],[0,6,1,"","will_continue"]],"genai.types.PartialArgDict":[[0,4,1,"","bool_value"],[0,4,1,"","json_path"],[0,4,1,"","null_value"],[0,4,1,"","number_value"],[0,4,1,"","string_value"],[0,4,1,"","will_continue"]],"genai.types.PartnerModelTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.PartnerModelTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.PersonGeneration":[[0,4,1,"","ALLOW_ADULT"],[0,4,1,"","ALLOW_ALL"],[0,4,1,"","DONT_ALLOW"]],"genai.types.PhishBlockThreshold":[[0,4,1,"","BLOCK_HIGHER_AND_ABOVE"],[0,4,1,"","BLOCK_HIGH_AND_ABOVE"],[0,4,1,"","BLOCK_LOW_AND_ABOVE"],[0,4,1,"","BLOCK_MEDIUM_AND_ABOVE"],[0,4,1,"","BLOCK_ONLY_EXTREMELY_HIGH"],[0,4,1,"","BLOCK_VERY_HIGH_AND_ABOVE"],[0,4,1,"","PHISH_BLOCK_THRESHOLD_UNSPECIFIED"]],"genai.types.PointwiseMetricResult":[[0,6,1,"","custom_output"],[0,6,1,"","explanation"],[0,6,1,"","score"]],"genai.types.PointwiseMetricResultDict":[[0,4,1,"","custom_output"],[0,4,1,"","explanation"],[0,4,1,"","score"]],"genai.types.PointwiseMetricSpec":[[0,6,1,"","custom_output_format_config"],[0,6,1,"","metric_prompt_template"],[0,6,1,"","system_instruction"]],"genai.types.PointwiseMetricSpecDict":[[0,4,1,"","custom_output_format_config"],[0,4,1,"","metric_prompt_template"],[0,4,1,"","system_instruction"]],"genai.types.PreTunedModel":[[0,6,1,"","base_model"],[0,6,1,"","checkpoint_id"],[0,6,1,"","tuned_model_name"]],"genai.types.PreTunedModelDict":[[0,4,1,"","base_model"],[0,4,1,"","checkpoint_id"],[0,4,1,"","tuned_model_name"]],"genai.types.PrebuiltVoiceConfig":[[0,6,1,"","voice_name"]],"genai.types.PrebuiltVoiceConfigDict":[[0,4,1,"","voice_name"]],"genai.types.PredefinedMetricSpec":[[0,6,1,"","metric_spec_name"],[0,6,1,"","metric_spec_parameters"]],"genai.types.PredefinedMetricSpecDict":[[0,4,1,"","metric_spec_name"],[0,4,1,"","metric_spec_parameters"]],"genai.types.PreferenceOptimizationDataStats":[[0,6,1,"","dropped_example_indices"],[0,6,1,"","dropped_example_reasons"],[0,6,1,"","score_variance_per_example_distribution"],[0,6,1,"","scores_distribution"],[0,6,1,"","total_billable_token_count"],[0,6,1,"","tuning_dataset_example_count"],[0,6,1,"","tuning_step_count"],[0,6,1,"","user_dataset_examples"],[0,6,1,"","user_input_token_distribution"],[0,6,1,"","user_output_token_distribution"]],"genai.types.PreferenceOptimizationDataStatsDict":[[0,4,1,"","dropped_example_indices"],[0,4,1,"","dropped_example_reasons"],[0,4,1,"","score_variance_per_example_distribution"],[0,4,1,"","scores_distribution"],[0,4,1,"","total_billable_token_count"],[0,4,1,"","tuning_dataset_example_count"],[0,4,1,"","tuning_step_count"],[0,4,1,"","user_dataset_examples"],[0,4,1,"","user_input_token_distribution"],[0,4,1,"","user_output_token_distribution"]],"genai.types.PreferenceOptimizationHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","beta"],[0,6,1,"","epoch_count"],[0,6,1,"","learning_rate_multiplier"]],"genai.types.PreferenceOptimizationHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","beta"],[0,4,1,"","epoch_count"],[0,4,1,"","learning_rate_multiplier"]],"genai.types.PreferenceOptimizationSpec":[[0,6,1,"","export_last_checkpoint_only"],[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.PreferenceOptimizationSpecDict":[[0,4,1,"","export_last_checkpoint_only"],[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.ProactivityConfig":[[0,6,1,"","proactive_audio"]],"genai.types.ProactivityConfigDict":[[0,4,1,"","proactive_audio"]],"genai.types.ProductImage":[[0,6,1,"","product_image"]],"genai.types.ProductImageDict":[[0,4,1,"","product_image"]],"genai.types.ProjectOperation":[[0,6,1,"","done"],[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","name"]],"genai.types.ProjectOperationDict":[[0,4,1,"","done"],[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","name"]],"genai.types.ProminentPeople":[[0,4,1,"","ALLOW_PROMINENT_PEOPLE"],[0,4,1,"","BLOCK_PROMINENT_PEOPLE"],[0,4,1,"","PROMINENT_PEOPLE_UNSPECIFIED"]],"genai.types.RagChunk":[[0,6,1,"","chunk_id"],[0,6,1,"","file_id"],[0,6,1,"","page_span"],[0,6,1,"","text"]],"genai.types.RagChunkDict":[[0,4,1,"","chunk_id"],[0,4,1,"","file_id"],[0,4,1,"","page_span"],[0,4,1,"","text"]],"genai.types.RagChunkPageSpan":[[0,6,1,"","first_page"],[0,6,1,"","last_page"]],"genai.types.RagChunkPageSpanDict":[[0,4,1,"","first_page"],[0,4,1,"","last_page"]],"genai.types.RagRetrievalConfig":[[0,6,1,"","filter"],[0,6,1,"","hybrid_search"],[0,6,1,"","ranking"],[0,6,1,"","top_k"]],"genai.types.RagRetrievalConfigDict":[[0,4,1,"","filter"],[0,4,1,"","hybrid_search"],[0,4,1,"","ranking"],[0,4,1,"","top_k"]],"genai.types.RagRetrievalConfigFilter":[[0,6,1,"","metadata_filter"],[0,6,1,"","vector_distance_threshold"],[0,6,1,"","vector_similarity_threshold"]],"genai.types.RagRetrievalConfigFilterDict":[[0,4,1,"","metadata_filter"],[0,4,1,"","vector_distance_threshold"],[0,4,1,"","vector_similarity_threshold"]],"genai.types.RagRetrievalConfigHybridSearch":[[0,6,1,"","alpha"]],"genai.types.RagRetrievalConfigHybridSearchDict":[[0,4,1,"","alpha"]],"genai.types.RagRetrievalConfigRanking":[[0,6,1,"","llm_ranker"],[0,6,1,"","rank_service"]],"genai.types.RagRetrievalConfigRankingDict":[[0,4,1,"","llm_ranker"],[0,4,1,"","rank_service"]],"genai.types.RagRetrievalConfigRankingLlmRanker":[[0,6,1,"","model_name"]],"genai.types.RagRetrievalConfigRankingLlmRankerDict":[[0,4,1,"","model_name"]],"genai.types.RagRetrievalConfigRankingRankService":[[0,6,1,"","model_name"]],"genai.types.RagRetrievalConfigRankingRankServiceDict":[[0,4,1,"","model_name"]],"genai.types.RawOutput":[[0,6,1,"","raw_output"]],"genai.types.RawOutputDict":[[0,4,1,"","raw_output"]],"genai.types.RawReferenceImage":[[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.RawReferenceImageDict":[[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.RealtimeInputConfig":[[0,6,1,"","activity_handling"],[0,6,1,"","automatic_activity_detection"],[0,6,1,"","turn_coverage"]],"genai.types.RealtimeInputConfigDict":[[0,4,1,"","activity_handling"],[0,4,1,"","automatic_activity_detection"],[0,4,1,"","turn_coverage"]],"genai.types.RecontextImageConfig":[[0,6,1,"","add_watermark"],[0,6,1,"","base_steps"],[0,6,1,"","enhance_prompt"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","number_of_images"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"],[0,6,1,"","seed"]],"genai.types.RecontextImageConfigDict":[[0,4,1,"","add_watermark"],[0,4,1,"","base_steps"],[0,4,1,"","enhance_prompt"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","number_of_images"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"],[0,4,1,"","seed"]],"genai.types.RecontextImageResponse":[[0,6,1,"","generated_images"]],"genai.types.RecontextImageResponseDict":[[0,4,1,"","generated_images"]],"genai.types.RecontextImageSource":[[0,6,1,"","person_image"],[0,6,1,"","product_images"],[0,6,1,"","prompt"]],"genai.types.RecontextImageSourceDict":[[0,4,1,"","person_image"],[0,4,1,"","product_images"],[0,4,1,"","prompt"]],"genai.types.RegisterFilesConfig":[[0,6,1,"","http_options"],[0,6,1,"","should_return_http_response"]],"genai.types.RegisterFilesConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","should_return_http_response"]],"genai.types.RegisterFilesResponse":[[0,6,1,"","files"],[0,6,1,"","sdk_http_response"]],"genai.types.RegisterFilesResponseDict":[[0,4,1,"","files"],[0,4,1,"","sdk_http_response"]],"genai.types.ReinforcementTuningAutoraterScorer":[[0,6,1,"","autorater_config"],[0,6,1,"","autorater_prompt"],[0,6,1,"","autorater_response_parse_config"],[0,6,1,"","exact_match_scorer"],[0,6,1,"","parsed_response_conversion_scorer"]],"genai.types.ReinforcementTuningAutoraterScorerDict":[[0,4,1,"","autorater_config"],[0,4,1,"","autorater_prompt"],[0,4,1,"","autorater_response_parse_config"],[0,4,1,"","exact_match_scorer"],[0,4,1,"","parsed_response_conversion_scorer"]],"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer":[[0,6,1,"","correct_answer_reward"],[0,6,1,"","expression"],[0,6,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict":[[0,4,1,"","correct_answer_reward"],[0,4,1,"","expression"],[0,4,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningCloudRunRewardScorer":[[0,6,1,"","cloud_run_uri"]],"genai.types.ReinforcementTuningCloudRunRewardScorerDict":[[0,4,1,"","cloud_run_uri"]],"genai.types.ReinforcementTuningCodeExecutionRewardScorer":[[0,6,1,"","python_code_snippet"]],"genai.types.ReinforcementTuningCodeExecutionRewardScorerDict":[[0,4,1,"","python_code_snippet"]],"genai.types.ReinforcementTuningExample":[[0,6,1,"","contents"],[0,6,1,"","references"],[0,6,1,"","system_instruction"]],"genai.types.ReinforcementTuningExampleDict":[[0,4,1,"","contents"],[0,4,1,"","references"],[0,4,1,"","system_instruction"]],"genai.types.ReinforcementTuningHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","batch_size"],[0,6,1,"","checkpoint_interval"],[0,6,1,"","epoch_count"],[0,6,1,"","evaluate_interval"],[0,6,1,"","learning_rate_multiplier"],[0,6,1,"","max_output_tokens"],[0,6,1,"","samples_per_prompt"],[0,6,1,"","thinking_budget"],[0,6,1,"","thinking_level"]],"genai.types.ReinforcementTuningHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","batch_size"],[0,4,1,"","checkpoint_interval"],[0,4,1,"","epoch_count"],[0,4,1,"","evaluate_interval"],[0,4,1,"","learning_rate_multiplier"],[0,4,1,"","max_output_tokens"],[0,4,1,"","samples_per_prompt"],[0,4,1,"","thinking_budget"],[0,4,1,"","thinking_level"]],"genai.types.ReinforcementTuningParseResponseConfig":[[0,6,1,"","parse_type"],[0,6,1,"","regex_extract_expression"]],"genai.types.ReinforcementTuningParseResponseConfigDict":[[0,4,1,"","parse_type"],[0,4,1,"","regex_extract_expression"]],"genai.types.ReinforcementTuningRewardInfo":[[0,6,1,"","reward"],[0,6,1,"","user_requested_aux_info"]],"genai.types.ReinforcementTuningRewardInfoDict":[[0,4,1,"","reward"],[0,4,1,"","user_requested_aux_info"]],"genai.types.ReinforcementTuningSpec":[[0,6,1,"","composite_reward_config"],[0,6,1,"","hyper_parameters"],[0,6,1,"","single_reward_config"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.ReinforcementTuningSpecDict":[[0,4,1,"","composite_reward_config"],[0,4,1,"","hyper_parameters"],[0,4,1,"","single_reward_config"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.ReinforcementTuningStringMatchRewardScorer":[[0,6,1,"","correct_answer_reward"],[0,6,1,"","json_match_expression"],[0,6,1,"","string_match_expression"],[0,6,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningStringMatchRewardScorerDict":[[0,4,1,"","correct_answer_reward"],[0,4,1,"","json_match_expression"],[0,4,1,"","string_match_expression"],[0,4,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpression":[[0,6,1,"","key_name"],[0,6,1,"","value_string_match_expression"]],"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict":[[0,4,1,"","key_name"],[0,4,1,"","value_string_match_expression"]],"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpression":[[0,6,1,"","expression"],[0,6,1,"","match_operation"]],"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict":[[0,4,1,"","expression"],[0,4,1,"","match_operation"]],"genai.types.ReinforcementTuningThinkingLevel":[[0,4,1,"","HIGH"],[0,4,1,"","MINIMAL"],[0,4,1,"","REINFORCEMENT_TUNING_THINKING_LEVEL_UNSPECIFIED"]],"genai.types.ReinforcementTuningUserDatasetExamples":[[0,6,1,"","user_dataset_examples"]],"genai.types.ReinforcementTuningUserDatasetExamplesDict":[[0,4,1,"","user_dataset_examples"]],"genai.types.ReplayFile":[[0,6,1,"","interactions"],[0,6,1,"","replay_id"]],"genai.types.ReplayFileDict":[[0,4,1,"","interactions"],[0,4,1,"","replay_id"]],"genai.types.ReplayInteraction":[[0,6,1,"","request"],[0,6,1,"","response"]],"genai.types.ReplayInteractionDict":[[0,4,1,"","request"],[0,4,1,"","response"]],"genai.types.ReplayRequest":[[0,6,1,"","body_segments"],[0,6,1,"","headers"],[0,6,1,"","method"],[0,6,1,"","url"]],"genai.types.ReplayRequestDict":[[0,4,1,"","body_segments"],[0,4,1,"","headers"],[0,4,1,"","method"],[0,4,1,"","url"]],"genai.types.ReplayResponse":[[0,6,1,"","body_segments"],[0,6,1,"","headers"],[0,6,1,"","sdk_response_segments"],[0,6,1,"","status_code"]],"genai.types.ReplayResponseDict":[[0,4,1,"","body_segments"],[0,4,1,"","headers"],[0,4,1,"","sdk_response_segments"],[0,4,1,"","status_code"]],"genai.types.ReplicatedVoiceConfig":[[0,6,1,"","consent_audio"],[0,6,1,"","mime_type"],[0,6,1,"","voice_consent_signature"],[0,6,1,"","voice_sample_audio"]],"genai.types.ReplicatedVoiceConfigDict":[[0,4,1,"","consent_audio"],[0,4,1,"","mime_type"],[0,4,1,"","voice_consent_signature"],[0,4,1,"","voice_sample_audio"]],"genai.types.ResourceScope":[[0,4,1,"","COLLECTION"]],"genai.types.ResponseFormat":[[0,6,1,"","audio"],[0,6,1,"","image"],[0,6,1,"","text"],[0,6,1,"","video"]],"genai.types.ResponseFormatDict":[[0,4,1,"","audio"],[0,4,1,"","image"],[0,4,1,"","text"],[0,4,1,"","video"]],"genai.types.ResponseParseType":[[0,4,1,"","IDENTITY"],[0,4,1,"","REGEX_EXTRACT"],[0,4,1,"","RESPONSE_PARSE_TYPE_UNSPECIFIED"]],"genai.types.Retrieval":[[0,6,1,"","disable_attribution"],[0,6,1,"","external_api"],[0,6,1,"","vertex_ai_search"],[0,6,1,"","vertex_rag_store"]],"genai.types.RetrievalConfig":[[0,6,1,"","language_code"],[0,6,1,"","lat_lng"]],"genai.types.RetrievalConfigDict":[[0,4,1,"","language_code"],[0,4,1,"","lat_lng"]],"genai.types.RetrievalDict":[[0,4,1,"","disable_attribution"],[0,4,1,"","external_api"],[0,4,1,"","vertex_ai_search"],[0,4,1,"","vertex_rag_store"]],"genai.types.RetrievalMetadata":[[0,6,1,"","google_search_dynamic_retrieval_score"]],"genai.types.RetrievalMetadataDict":[[0,4,1,"","google_search_dynamic_retrieval_score"]],"genai.types.RougeMetricValue":[[0,6,1,"","score"]],"genai.types.RougeMetricValueDict":[[0,4,1,"","score"]],"genai.types.RougeSpec":[[0,6,1,"","rouge_type"],[0,6,1,"","split_summaries"],[0,6,1,"","use_stemmer"]],"genai.types.RougeSpecDict":[[0,4,1,"","rouge_type"],[0,4,1,"","split_summaries"],[0,4,1,"","use_stemmer"]],"genai.types.RubricContentType":[[0,4,1,"","NL_QUESTION_ANSWER"],[0,4,1,"","PROPERTY"],[0,4,1,"","PYTHON_CODE_ASSERTION"],[0,4,1,"","RUBRIC_CONTENT_TYPE_UNSPECIFIED"]],"genai.types.RubricGenerationSpec":[[0,6,1,"","prompt_template"],[0,6,1,"","rubric_content_type"],[0,6,1,"","rubric_type_ontology"]],"genai.types.RubricGenerationSpecDict":[[0,4,1,"","prompt_template"],[0,4,1,"","rubric_content_type"],[0,4,1,"","rubric_type_ontology"]],"genai.types.SafetyAttributes":[[0,6,1,"","categories"],[0,6,1,"","content_type"],[0,6,1,"","scores"]],"genai.types.SafetyAttributesDict":[[0,4,1,"","categories"],[0,4,1,"","content_type"],[0,4,1,"","scores"]],"genai.types.SafetyFilterLevel":[[0,4,1,"","BLOCK_LOW_AND_ABOVE"],[0,4,1,"","BLOCK_MEDIUM_AND_ABOVE"],[0,4,1,"","BLOCK_NONE"],[0,4,1,"","BLOCK_ONLY_HIGH"]],"genai.types.SafetyPolicy":[[0,4,1,"","ACCOUNT_CREATION"],[0,4,1,"","COMMUNICATION_TOOL"],[0,4,1,"","DATA_MODIFICATION"],[0,4,1,"","FINANCIAL_TRANSACTIONS"],[0,4,1,"","LEGAL_TERMS_AND_AGREEMENTS"],[0,4,1,"","SAFETY_POLICY_UNSPECIFIED"],[0,4,1,"","SENSITIVE_DATA_MODIFICATION"],[0,4,1,"","USER_CONSENT_MANAGEMENT"]],"genai.types.SafetyRating":[[0,6,1,"","blocked"],[0,6,1,"","category"],[0,6,1,"","overwritten_threshold"],[0,6,1,"","probability"],[0,6,1,"","probability_score"],[0,6,1,"","severity"],[0,6,1,"","severity_score"]],"genai.types.SafetyRatingDict":[[0,4,1,"","blocked"],[0,4,1,"","category"],[0,4,1,"","overwritten_threshold"],[0,4,1,"","probability"],[0,4,1,"","probability_score"],[0,4,1,"","severity"],[0,4,1,"","severity_score"]],"genai.types.SafetySetting":[[0,6,1,"","category"],[0,6,1,"","method"],[0,6,1,"","threshold"]],"genai.types.SafetySettingDict":[[0,4,1,"","category"],[0,4,1,"","method"],[0,4,1,"","threshold"]],"genai.types.Scale":[[0,4,1,"","A_FLAT_MAJOR_F_MINOR"],[0,4,1,"","A_MAJOR_G_FLAT_MINOR"],[0,4,1,"","B_FLAT_MAJOR_G_MINOR"],[0,4,1,"","B_MAJOR_A_FLAT_MINOR"],[0,4,1,"","C_MAJOR_A_MINOR"],[0,4,1,"","D_FLAT_MAJOR_B_FLAT_MINOR"],[0,4,1,"","D_MAJOR_B_MINOR"],[0,4,1,"","E_FLAT_MAJOR_C_MINOR"],[0,4,1,"","E_MAJOR_D_FLAT_MINOR"],[0,4,1,"","F_MAJOR_D_MINOR"],[0,4,1,"","G_FLAT_MAJOR_E_FLAT_MINOR"],[0,4,1,"","G_MAJOR_E_MINOR"],[0,4,1,"","SCALE_UNSPECIFIED"]],"genai.types.Schema":[[0,6,1,"","additional_properties"],[0,6,1,"","any_of"],[0,6,1,"","default"],[0,6,1,"","defs"],[0,6,1,"","description"],[0,6,1,"","enum"],[0,6,1,"","example"],[0,6,1,"","format"],[0,1,1,"","from_json_schema"],[0,6,1,"","items"],[0,2,1,"","json_schema"],[0,6,1,"","max_items"],[0,6,1,"","max_length"],[0,6,1,"","max_properties"],[0,6,1,"","maximum"],[0,6,1,"","min_items"],[0,6,1,"","min_length"],[0,6,1,"","min_properties"],[0,6,1,"","minimum"],[0,6,1,"","nullable"],[0,6,1,"","pattern"],[0,6,1,"","properties"],[0,6,1,"","property_ordering"],[0,6,1,"","ref"],[0,6,1,"","required"],[0,6,1,"","title"],[0,6,1,"","type"]],"genai.types.SchemaDict":[[0,4,1,"","additional_properties"],[0,4,1,"","any_of"],[0,4,1,"","default"],[0,4,1,"","defs"],[0,4,1,"","description"],[0,4,1,"","enum"],[0,4,1,"","example"],[0,4,1,"","format"],[0,4,1,"","max_items"],[0,4,1,"","max_length"],[0,4,1,"","max_properties"],[0,4,1,"","maximum"],[0,4,1,"","min_items"],[0,4,1,"","min_length"],[0,4,1,"","min_properties"],[0,4,1,"","minimum"],[0,4,1,"","nullable"],[0,4,1,"","pattern"],[0,4,1,"","properties"],[0,4,1,"","property_ordering"],[0,4,1,"","ref"],[0,4,1,"","required"],[0,4,1,"","title"],[0,4,1,"","type"]],"genai.types.ScribbleImage":[[0,6,1,"","image"]],"genai.types.ScribbleImageDict":[[0,4,1,"","image"]],"genai.types.SearchEntryPoint":[[0,6,1,"","rendered_content"],[0,6,1,"","sdk_blob"]],"genai.types.SearchEntryPointDict":[[0,4,1,"","rendered_content"],[0,4,1,"","sdk_blob"]],"genai.types.SearchTypes":[[0,6,1,"","image_search"],[0,6,1,"","web_search"]],"genai.types.SearchTypesDict":[[0,4,1,"","image_search"],[0,4,1,"","web_search"]],"genai.types.Segment":[[0,6,1,"","end_index"],[0,6,1,"","part_index"],[0,6,1,"","start_index"],[0,6,1,"","text"]],"genai.types.SegmentDict":[[0,4,1,"","end_index"],[0,4,1,"","part_index"],[0,4,1,"","start_index"],[0,4,1,"","text"]],"genai.types.SegmentImageConfig":[[0,6,1,"","binary_color_threshold"],[0,6,1,"","confidence_threshold"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","mask_dilation"],[0,6,1,"","max_predictions"],[0,6,1,"","mode"]],"genai.types.SegmentImageConfigDict":[[0,4,1,"","binary_color_threshold"],[0,4,1,"","confidence_threshold"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","mask_dilation"],[0,4,1,"","max_predictions"],[0,4,1,"","mode"]],"genai.types.SegmentImageResponse":[[0,6,1,"","generated_masks"]],"genai.types.SegmentImageResponseDict":[[0,4,1,"","generated_masks"]],"genai.types.SegmentImageSource":[[0,6,1,"","image"],[0,6,1,"","prompt"],[0,6,1,"","scribble_image"]],"genai.types.SegmentImageSourceDict":[[0,4,1,"","image"],[0,4,1,"","prompt"],[0,4,1,"","scribble_image"]],"genai.types.SegmentMode":[[0,4,1,"","BACKGROUND"],[0,4,1,"","FOREGROUND"],[0,4,1,"","INTERACTIVE"],[0,4,1,"","PROMPT"],[0,4,1,"","SEMANTIC"]],"genai.types.ServiceTier":[[0,4,1,"","FLEX"],[0,4,1,"","PRIORITY"],[0,4,1,"","STANDARD"],[0,4,1,"","UNSPECIFIED"]],"genai.types.SessionResumptionConfig":[[0,6,1,"","handle"],[0,6,1,"","transparent"]],"genai.types.SessionResumptionConfigDict":[[0,4,1,"","handle"],[0,4,1,"","transparent"]],"genai.types.SingleEmbedContentResponse":[[0,6,1,"","embedding"],[0,6,1,"","token_count"]],"genai.types.SingleEmbedContentResponseDict":[[0,4,1,"","embedding"],[0,4,1,"","token_count"]],"genai.types.SingleReinforcementTuningRewardConfig":[[0,6,1,"","autorater_scorer"],[0,6,1,"","cloud_run_reward_scorer"],[0,6,1,"","code_execution_reward_scorer"],[0,6,1,"","parse_response_config"],[0,6,1,"","reward_name"],[0,6,1,"","string_match_reward_scorer"]],"genai.types.SingleReinforcementTuningRewardConfigDict":[[0,4,1,"","autorater_scorer"],[0,4,1,"","cloud_run_reward_scorer"],[0,4,1,"","code_execution_reward_scorer"],[0,4,1,"","parse_response_config"],[0,4,1,"","reward_name"],[0,4,1,"","string_match_reward_scorer"]],"genai.types.SlidingWindow":[[0,6,1,"","target_tokens"]],"genai.types.SlidingWindowDict":[[0,4,1,"","target_tokens"]],"genai.types.SpeakerVoiceConfig":[[0,6,1,"","speaker"],[0,6,1,"","voice_config"]],"genai.types.SpeakerVoiceConfigDict":[[0,4,1,"","speaker"],[0,4,1,"","voice_config"]],"genai.types.SpeechConfig":[[0,6,1,"","language_code"],[0,6,1,"","multi_speaker_voice_config"],[0,6,1,"","voice_config"]],"genai.types.SpeechConfigDict":[[0,4,1,"","language_code"],[0,4,1,"","multi_speaker_voice_config"],[0,4,1,"","voice_config"]],"genai.types.StartSensitivity":[[0,4,1,"","START_SENSITIVITY_HIGH"],[0,4,1,"","START_SENSITIVITY_LOW"],[0,4,1,"","START_SENSITIVITY_UNSPECIFIED"]],"genai.types.StreamableHttpTransport":[[0,6,1,"","headers"],[0,6,1,"","sse_read_timeout"],[0,6,1,"","terminate_on_close"],[0,6,1,"","timeout"],[0,6,1,"","url"]],"genai.types.StreamableHttpTransportDict":[[0,4,1,"","headers"],[0,4,1,"","sse_read_timeout"],[0,4,1,"","terminate_on_close"],[0,4,1,"","timeout"],[0,4,1,"","url"]],"genai.types.StringList":[[0,6,1,"","values"]],"genai.types.StyleReferenceConfig":[[0,6,1,"","style_description"]],"genai.types.StyleReferenceConfigDict":[[0,4,1,"","style_description"]],"genai.types.StyleReferenceImage":[[0,6,1,"","config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"],[0,6,1,"","style_image_config"]],"genai.types.StyleReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.SubjectReferenceConfig":[[0,6,1,"","subject_description"],[0,6,1,"","subject_type"]],"genai.types.SubjectReferenceConfigDict":[[0,4,1,"","subject_description"],[0,4,1,"","subject_type"]],"genai.types.SubjectReferenceImage":[[0,6,1,"","config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"],[0,6,1,"","subject_image_config"]],"genai.types.SubjectReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.SubjectReferenceType":[[0,4,1,"","SUBJECT_TYPE_ANIMAL"],[0,4,1,"","SUBJECT_TYPE_DEFAULT"],[0,4,1,"","SUBJECT_TYPE_PERSON"],[0,4,1,"","SUBJECT_TYPE_PRODUCT"]],"genai.types.SupervisedHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","batch_size"],[0,6,1,"","epoch_count"],[0,6,1,"","learning_rate"],[0,6,1,"","learning_rate_multiplier"]],"genai.types.SupervisedHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","batch_size"],[0,4,1,"","epoch_count"],[0,4,1,"","learning_rate"],[0,4,1,"","learning_rate_multiplier"]],"genai.types.SupervisedTuningDataStats":[[0,6,1,"","dropped_example_reasons"],[0,6,1,"","total_billable_character_count"],[0,6,1,"","total_billable_token_count"],[0,6,1,"","total_truncated_example_count"],[0,6,1,"","total_tuning_character_count"],[0,6,1,"","truncated_example_indices"],[0,6,1,"","tuning_dataset_example_count"],[0,6,1,"","tuning_step_count"],[0,6,1,"","user_dataset_examples"],[0,6,1,"","user_input_token_distribution"],[0,6,1,"","user_message_per_example_distribution"],[0,6,1,"","user_output_token_distribution"]],"genai.types.SupervisedTuningDataStatsDict":[[0,4,1,"","dropped_example_reasons"],[0,4,1,"","total_billable_character_count"],[0,4,1,"","total_billable_token_count"],[0,4,1,"","total_truncated_example_count"],[0,4,1,"","total_tuning_character_count"],[0,4,1,"","truncated_example_indices"],[0,4,1,"","tuning_dataset_example_count"],[0,4,1,"","tuning_step_count"],[0,4,1,"","user_dataset_examples"],[0,4,1,"","user_input_token_distribution"],[0,4,1,"","user_message_per_example_distribution"],[0,4,1,"","user_output_token_distribution"]],"genai.types.SupervisedTuningDatasetDistribution":[[0,6,1,"","billable_sum"],[0,6,1,"","buckets"],[0,6,1,"","max"],[0,6,1,"","mean"],[0,6,1,"","median"],[0,6,1,"","min"],[0,6,1,"","p5"],[0,6,1,"","p95"],[0,6,1,"","sum"]],"genai.types.SupervisedTuningDatasetDistributionDatasetBucket":[[0,6,1,"","count"],[0,6,1,"","left"],[0,6,1,"","right"]],"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict":[[0,4,1,"","count"],[0,4,1,"","left"],[0,4,1,"","right"]],"genai.types.SupervisedTuningDatasetDistributionDict":[[0,4,1,"","billable_sum"],[0,4,1,"","buckets"],[0,4,1,"","max"],[0,4,1,"","mean"],[0,4,1,"","median"],[0,4,1,"","min"],[0,4,1,"","p5"],[0,4,1,"","p95"],[0,4,1,"","sum"]],"genai.types.SupervisedTuningSpec":[[0,6,1,"","export_last_checkpoint_only"],[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","tuning_mode"],[0,6,1,"","validation_dataset_uri"]],"genai.types.SupervisedTuningSpecDict":[[0,4,1,"","export_last_checkpoint_only"],[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","tuning_mode"],[0,4,1,"","validation_dataset_uri"]],"genai.types.TestTableFile":[[0,6,1,"","comment"],[0,6,1,"","parameter_names"],[0,6,1,"","test_method"],[0,6,1,"","test_table"]],"genai.types.TestTableFileDict":[[0,4,1,"","comment"],[0,4,1,"","parameter_names"],[0,4,1,"","test_method"],[0,4,1,"","test_table"]],"genai.types.TestTableItem":[[0,6,1,"","exception_if_mldev"],[0,6,1,"","exception_if_vertex"],[0,6,1,"","has_union"],[0,6,1,"","ignore_keys"],[0,6,1,"","name"],[0,6,1,"","override_replay_id"],[0,6,1,"","parameters"],[0,6,1,"","skip_in_api_mode"]],"genai.types.TestTableItemDict":[[0,4,1,"","exception_if_mldev"],[0,4,1,"","exception_if_vertex"],[0,4,1,"","has_union"],[0,4,1,"","ignore_keys"],[0,4,1,"","name"],[0,4,1,"","override_replay_id"],[0,4,1,"","parameters"],[0,4,1,"","skip_in_api_mode"]],"genai.types.TextResponseFormat":[[0,6,1,"","jsonSchema"],[0,6,1,"","mime_type"]],"genai.types.TextResponseFormatDict":[[0,4,1,"","mime_type"],[0,4,1,"","schema"]],"genai.types.ThinkingConfig":[[0,6,1,"","include_thoughts"],[0,6,1,"","thinking_budget"],[0,6,1,"","thinking_level"]],"genai.types.ThinkingConfigDict":[[0,4,1,"","include_thoughts"],[0,4,1,"","thinking_budget"],[0,4,1,"","thinking_level"]],"genai.types.ThinkingLevel":[[0,4,1,"","HIGH"],[0,4,1,"","LOW"],[0,4,1,"","MEDIUM"],[0,4,1,"","MINIMAL"],[0,4,1,"","THINKING_LEVEL_UNSPECIFIED"]],"genai.types.TokensInfo":[[0,6,1,"","role"],[0,6,1,"","token_ids"],[0,6,1,"","tokens"]],"genai.types.TokensInfoDict":[[0,4,1,"","role"],[0,4,1,"","token_ids"],[0,4,1,"","tokens"]],"genai.types.Tool":[[0,6,1,"","code_execution"],[0,6,1,"","computer_use"],[0,6,1,"","enterprise_web_search"],[0,6,1,"","exa_ai_search"],[0,6,1,"","file_search"],[0,6,1,"","function_declarations"],[0,6,1,"","google_maps"],[0,6,1,"","google_search"],[0,6,1,"","google_search_retrieval"],[0,6,1,"","mcp_servers"],[0,6,1,"","parallel_ai_search"],[0,6,1,"","retrieval"],[0,6,1,"","url_context"]],"genai.types.ToolCall":[[0,6,1,"","args"],[0,6,1,"","id"],[0,6,1,"","tool_type"]],"genai.types.ToolCallDict":[[0,4,1,"","args"],[0,4,1,"","id"],[0,4,1,"","tool_type"]],"genai.types.ToolConfig":[[0,6,1,"","function_calling_config"],[0,6,1,"","include_server_side_tool_invocations"],[0,6,1,"","retrieval_config"]],"genai.types.ToolConfigDict":[[0,4,1,"","function_calling_config"],[0,4,1,"","include_server_side_tool_invocations"],[0,4,1,"","retrieval_config"]],"genai.types.ToolDict":[[0,4,1,"","code_execution"],[0,4,1,"","computer_use"],[0,4,1,"","enterprise_web_search"],[0,4,1,"","exa_ai_search"],[0,4,1,"","file_search"],[0,4,1,"","function_declarations"],[0,4,1,"","google_maps"],[0,4,1,"","google_search"],[0,4,1,"","google_search_retrieval"],[0,4,1,"","mcp_servers"],[0,4,1,"","parallel_ai_search"],[0,4,1,"","retrieval"],[0,4,1,"","url_context"]],"genai.types.ToolExaAiSearch":[[0,6,1,"","api_key"],[0,6,1,"","custom_configs"]],"genai.types.ToolExaAiSearchDict":[[0,4,1,"","api_key"],[0,4,1,"","custom_configs"]],"genai.types.ToolParallelAiSearch":[[0,6,1,"","api_key"],[0,6,1,"","custom_configs"]],"genai.types.ToolParallelAiSearchDict":[[0,4,1,"","api_key"],[0,4,1,"","custom_configs"]],"genai.types.ToolResponse":[[0,6,1,"","id"],[0,6,1,"","response"],[0,6,1,"","tool_type"]],"genai.types.ToolResponseDict":[[0,4,1,"","id"],[0,4,1,"","response"],[0,4,1,"","tool_type"]],"genai.types.ToolType":[[0,4,1,"","FILE_SEARCH"],[0,4,1,"","GOOGLE_MAPS"],[0,4,1,"","GOOGLE_SEARCH_IMAGE"],[0,4,1,"","GOOGLE_SEARCH_WEB"],[0,4,1,"","TOOL_TYPE_UNSPECIFIED"],[0,4,1,"","URL_CONTEXT"]],"genai.types.TrafficType":[[0,4,1,"","ON_DEMAND"],[0,4,1,"","ON_DEMAND_FLEX"],[0,4,1,"","ON_DEMAND_PRIORITY"],[0,4,1,"","PROVISIONED_THROUGHPUT"],[0,4,1,"","TRAFFIC_TYPE_UNSPECIFIED"]],"genai.types.Transcription":[[0,6,1,"","finished"],[0,6,1,"","language_code"],[0,6,1,"","speaker_label"],[0,6,1,"","text"],[0,6,1,"","words"]],"genai.types.TranscriptionDict":[[0,4,1,"","finished"],[0,4,1,"","language_code"],[0,4,1,"","speaker_label"],[0,4,1,"","text"],[0,4,1,"","words"]],"genai.types.TranslationConfig":[[0,6,1,"","echo_target_language"],[0,6,1,"","target_language_code"]],"genai.types.TranslationConfigDict":[[0,4,1,"","echo_target_language"],[0,4,1,"","target_language_code"]],"genai.types.TunedModel":[[0,6,1,"","checkpoints"],[0,6,1,"","endpoint"],[0,6,1,"","model"]],"genai.types.TunedModelCheckpoint":[[0,6,1,"","checkpoint_id"],[0,6,1,"","endpoint"],[0,6,1,"","epoch"],[0,6,1,"","step"]],"genai.types.TunedModelCheckpointDict":[[0,4,1,"","checkpoint_id"],[0,4,1,"","endpoint"],[0,4,1,"","epoch"],[0,4,1,"","step"]],"genai.types.TunedModelDict":[[0,4,1,"","checkpoints"],[0,4,1,"","endpoint"],[0,4,1,"","model"]],"genai.types.TunedModelInfo":[[0,6,1,"","base_model"],[0,6,1,"","create_time"],[0,6,1,"","update_time"]],"genai.types.TunedModelInfoDict":[[0,4,1,"","base_model"],[0,4,1,"","create_time"],[0,4,1,"","update_time"]],"genai.types.TuningDataStats":[[0,6,1,"","distillation_data_stats"],[0,6,1,"","preference_optimization_data_stats"],[0,6,1,"","reinforcement_tuning_data_stats"],[0,6,1,"","supervised_tuning_data_stats"]],"genai.types.TuningDataStatsDict":[[0,4,1,"","distillation_data_stats"],[0,4,1,"","preference_optimization_data_stats"],[0,4,1,"","reinforcement_tuning_data_stats"],[0,4,1,"","supervised_tuning_data_stats"]],"genai.types.TuningDataset":[[0,6,1,"","examples"],[0,6,1,"","gcs_uri"],[0,6,1,"","vertex_dataset_resource"]],"genai.types.TuningDatasetDict":[[0,4,1,"","examples"],[0,4,1,"","gcs_uri"],[0,4,1,"","vertex_dataset_resource"]],"genai.types.TuningExample":[[0,6,1,"","output"],[0,6,1,"","text_input"]],"genai.types.TuningExampleDict":[[0,4,1,"","output"],[0,4,1,"","text_input"]],"genai.types.TuningJob":[[0,6,1,"","base_model"],[0,6,1,"","create_time"],[0,6,1,"","custom_base_model"],[0,6,1,"","description"],[0,6,1,"","distillation_sampling_spec"],[0,6,1,"","distillation_spec"],[0,6,1,"","encryption_spec"],[0,6,1,"","end_time"],[0,6,1,"","error"],[0,6,1,"","evaluate_dataset_runs"],[0,6,1,"","evaluation_config"],[0,6,1,"","experiment"],[0,6,1,"","full_fine_tuning_spec"],[0,2,1,"","has_ended"],[0,2,1,"","has_succeeded"],[0,6,1,"","labels"],[0,6,1,"","name"],[0,6,1,"","output_uri"],[0,6,1,"","partner_model_tuning_spec"],[0,6,1,"","pipeline_job"],[0,6,1,"","pre_tuned_model"],[0,6,1,"","preference_optimization_spec"],[0,6,1,"","reinforcement_tuning_spec"],[0,6,1,"","sdk_http_response"],[0,6,1,"","service_account"],[0,6,1,"","start_time"],[0,6,1,"","state"],[0,6,1,"","supervised_tuning_spec"],[0,6,1,"","tuned_model"],[0,6,1,"","tuned_model_display_name"],[0,6,1,"","tuning_data_stats"],[0,6,1,"","tuning_job_metadata"],[0,6,1,"","tuning_job_state"],[0,6,1,"","update_time"],[0,6,1,"","veo_lora_tuning_spec"],[0,6,1,"","veo_tuning_spec"]],"genai.types.TuningJobDict":[[0,4,1,"","base_model"],[0,4,1,"","create_time"],[0,4,1,"","custom_base_model"],[0,4,1,"","description"],[0,4,1,"","distillation_sampling_spec"],[0,4,1,"","distillation_spec"],[0,4,1,"","encryption_spec"],[0,4,1,"","end_time"],[0,4,1,"","error"],[0,4,1,"","evaluate_dataset_runs"],[0,4,1,"","evaluation_config"],[0,4,1,"","experiment"],[0,4,1,"","full_fine_tuning_spec"],[0,4,1,"","labels"],[0,4,1,"","name"],[0,4,1,"","output_uri"],[0,4,1,"","partner_model_tuning_spec"],[0,4,1,"","pipeline_job"],[0,4,1,"","pre_tuned_model"],[0,4,1,"","preference_optimization_spec"],[0,4,1,"","reinforcement_tuning_spec"],[0,4,1,"","sdk_http_response"],[0,4,1,"","service_account"],[0,4,1,"","start_time"],[0,4,1,"","state"],[0,4,1,"","supervised_tuning_spec"],[0,4,1,"","tuned_model"],[0,4,1,"","tuned_model_display_name"],[0,4,1,"","tuning_data_stats"],[0,4,1,"","tuning_job_metadata"],[0,4,1,"","tuning_job_state"],[0,4,1,"","update_time"],[0,4,1,"","veo_lora_tuning_spec"],[0,4,1,"","veo_tuning_spec"]],"genai.types.TuningJobMetadata":[[0,6,1,"","completed_epoch_count"],[0,6,1,"","completed_step_count"]],"genai.types.TuningJobMetadataDict":[[0,4,1,"","completed_epoch_count"],[0,4,1,"","completed_step_count"]],"genai.types.TuningJobState":[[0,4,1,"","TUNING_JOB_STATE_POST_PROCESSING"],[0,4,1,"","TUNING_JOB_STATE_PROCESSING_DATASET"],[0,4,1,"","TUNING_JOB_STATE_TUNING"],[0,4,1,"","TUNING_JOB_STATE_UNSPECIFIED"],[0,4,1,"","TUNING_JOB_STATE_WAITING_FOR_CAPACITY"],[0,4,1,"","TUNING_JOB_STATE_WAITING_FOR_QUOTA"]],"genai.types.TuningMethod":[[0,4,1,"","DISTILLATION"],[0,4,1,"","PREFERENCE_TUNING"],[0,4,1,"","REINFORCEMENT_TUNING"],[0,4,1,"","SUPERVISED_FINE_TUNING"]],"genai.types.TuningMode":[[0,4,1,"","TUNING_MODE_FULL"],[0,4,1,"","TUNING_MODE_PEFT_ADAPTER"],[0,4,1,"","TUNING_MODE_UNSPECIFIED"]],"genai.types.TuningOperation":[[0,6,1,"","done"],[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","name"],[0,6,1,"","sdk_http_response"]],"genai.types.TuningOperationDict":[[0,4,1,"","done"],[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","name"],[0,4,1,"","sdk_http_response"]],"genai.types.TuningSpeed":[[0,4,1,"","FAST"],[0,4,1,"","REGULAR"],[0,4,1,"","TUNING_SPEED_UNSPECIFIED"]],"genai.types.TuningTask":[[0,4,1,"","TUNING_TASK_I2V"],[0,4,1,"","TUNING_TASK_R2V"],[0,4,1,"","TUNING_TASK_T2V"],[0,4,1,"","TUNING_TASK_UNSPECIFIED"]],"genai.types.TuningValidationDataset":[[0,6,1,"","gcs_uri"],[0,6,1,"","vertex_dataset_resource"]],"genai.types.TuningValidationDatasetDict":[[0,4,1,"","gcs_uri"],[0,4,1,"","vertex_dataset_resource"]],"genai.types.TurnCompleteReason":[[0,4,1,"","BLOCKLIST"],[0,4,1,"","GENERATED_AUDIO_SAFETY"],[0,4,1,"","GENERATED_CONTENT_BLOCKLIST"],[0,4,1,"","GENERATED_CONTENT_PROHIBITED"],[0,4,1,"","GENERATED_CONTENT_SAFETY"],[0,4,1,"","GENERATED_IMAGE_CELEBRITY"],[0,4,1,"","GENERATED_IMAGE_IDENTIFIABLE_PEOPLE"],[0,4,1,"","GENERATED_IMAGE_MINORS"],[0,4,1,"","GENERATED_IMAGE_PROHIBITED"],[0,4,1,"","GENERATED_IMAGE_PROMINENT_PEOPLE_DETECTED_BY_REWRITER"],[0,4,1,"","GENERATED_IMAGE_SAFETY"],[0,4,1,"","GENERATED_OTHER"],[0,4,1,"","GENERATED_VIDEO_SAFETY"],[0,4,1,"","IMAGE_PROHIBITED_INPUT_CONTENT"],[0,4,1,"","INPUT_IMAGE_CELEBRITY"],[0,4,1,"","INPUT_IMAGE_PHOTO_REALISTIC_CHILD_PROHIBITED"],[0,4,1,"","INPUT_IP_PROHIBITED"],[0,4,1,"","INPUT_OTHER"],[0,4,1,"","INPUT_TEXT_CONTAIN_PROMINENT_PERSON_PROHIBITED"],[0,4,1,"","INPUT_TEXT_NCII_PROHIBITED"],[0,4,1,"","MALFORMED_FUNCTION_CALL"],[0,4,1,"","MAX_REGENERATION_REACHED"],[0,4,1,"","NEED_MORE_INPUT"],[0,4,1,"","OUTPUT_IMAGE_IP_PROHIBITED"],[0,4,1,"","PROHIBITED_INPUT_CONTENT"],[0,4,1,"","RESPONSE_REJECTED"],[0,4,1,"","TURN_COMPLETE_REASON_UNSPECIFIED"],[0,4,1,"","UNSAFE_PROMPT_FOR_IMAGE_GENERATION"]],"genai.types.TurnCoverage":[[0,4,1,"","TURN_COVERAGE_UNSPECIFIED"],[0,4,1,"","TURN_INCLUDES_ALL_INPUT"],[0,4,1,"","TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO"],[0,4,1,"","TURN_INCLUDES_ONLY_ACTIVITY"]],"genai.types.Type":[[0,4,1,"","ARRAY"],[0,4,1,"","BOOLEAN"],[0,4,1,"","INTEGER"],[0,4,1,"","NULL"],[0,4,1,"","NUMBER"],[0,4,1,"","OBJECT"],[0,4,1,"","STRING"],[0,4,1,"","TYPE_UNSPECIFIED"]],"genai.types.UnifiedMetric":[[0,6,1,"","bleu_spec"],[0,6,1,"","computation_based_metric_spec"],[0,6,1,"","custom_code_execution_spec"],[0,6,1,"","llm_based_metric_spec"],[0,6,1,"","pointwise_metric_spec"],[0,6,1,"","predefined_metric_spec"],[0,6,1,"","rouge_spec"]],"genai.types.UnifiedMetricDict":[[0,4,1,"","bleu_spec"],[0,4,1,"","computation_based_metric_spec"],[0,4,1,"","custom_code_execution_spec"],[0,4,1,"","llm_based_metric_spec"],[0,4,1,"","pointwise_metric_spec"],[0,4,1,"","predefined_metric_spec"],[0,4,1,"","rouge_spec"]],"genai.types.UpdateCachedContentConfig":[[0,6,1,"","expire_time"],[0,6,1,"","http_options"],[0,6,1,"","ttl"]],"genai.types.UpdateCachedContentConfigDict":[[0,4,1,"","expire_time"],[0,4,1,"","http_options"],[0,4,1,"","ttl"]],"genai.types.UpdateModelConfig":[[0,6,1,"","default_checkpoint_id"],[0,6,1,"","description"],[0,6,1,"","display_name"],[0,6,1,"","http_options"]],"genai.types.UpdateModelConfigDict":[[0,4,1,"","default_checkpoint_id"],[0,4,1,"","description"],[0,4,1,"","display_name"],[0,4,1,"","http_options"]],"genai.types.UploadFileConfig":[[0,6,1,"","display_name"],[0,6,1,"","http_options"],[0,6,1,"","mime_type"],[0,6,1,"","name"]],"genai.types.UploadFileConfigDict":[[0,4,1,"","display_name"],[0,4,1,"","http_options"],[0,4,1,"","mime_type"],[0,4,1,"","name"]],"genai.types.UploadToFileSearchStoreConfig":[[0,6,1,"","chunking_config"],[0,6,1,"","custom_metadata"],[0,6,1,"","display_name"],[0,6,1,"","http_options"],[0,6,1,"","mime_type"],[0,6,1,"","should_return_http_response"]],"genai.types.UploadToFileSearchStoreConfigDict":[[0,4,1,"","chunking_config"],[0,4,1,"","custom_metadata"],[0,4,1,"","display_name"],[0,4,1,"","http_options"],[0,4,1,"","mime_type"],[0,4,1,"","should_return_http_response"]],"genai.types.UploadToFileSearchStoreOperation":[[0,1,1,"","from_api_response"],[0,6,1,"","response"]],"genai.types.UploadToFileSearchStoreResponse":[[0,6,1,"","document_name"],[0,6,1,"","parent"],[0,6,1,"","sdk_http_response"]],"genai.types.UploadToFileSearchStoreResponseDict":[[0,4,1,"","document_name"],[0,4,1,"","parent"],[0,4,1,"","sdk_http_response"]],"genai.types.UploadToFileSearchStoreResumableResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.UploadToFileSearchStoreResumableResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.UpscaleImageConfig":[[0,6,1,"","enhance_input_image"],[0,6,1,"","http_options"],[0,6,1,"","image_preservation_factor"],[0,6,1,"","include_rai_reason"],[0,6,1,"","labels"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"]],"genai.types.UpscaleImageConfigDict":[[0,4,1,"","enhance_input_image"],[0,4,1,"","http_options"],[0,4,1,"","image_preservation_factor"],[0,4,1,"","include_rai_reason"],[0,4,1,"","labels"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"]],"genai.types.UpscaleImageParameters":[[0,6,1,"","config"],[0,6,1,"","image"],[0,6,1,"","model"],[0,6,1,"","upscale_factor"]],"genai.types.UpscaleImageParametersDict":[[0,4,1,"","config"],[0,4,1,"","image"],[0,4,1,"","model"],[0,4,1,"","upscale_factor"]],"genai.types.UpscaleImageResponse":[[0,6,1,"","generated_images"],[0,6,1,"","sdk_http_response"]],"genai.types.UpscaleImageResponseDict":[[0,4,1,"","generated_images"],[0,4,1,"","sdk_http_response"]],"genai.types.UrlContextMetadata":[[0,6,1,"","url_metadata"]],"genai.types.UrlContextMetadataDict":[[0,4,1,"","url_metadata"]],"genai.types.UrlMetadata":[[0,6,1,"","retrieved_url"],[0,6,1,"","url_retrieval_status"]],"genai.types.UrlMetadataDict":[[0,4,1,"","retrieved_url"],[0,4,1,"","url_retrieval_status"]],"genai.types.UrlRetrievalStatus":[[0,4,1,"","URL_RETRIEVAL_STATUS_ERROR"],[0,4,1,"","URL_RETRIEVAL_STATUS_PAYWALL"],[0,4,1,"","URL_RETRIEVAL_STATUS_SUCCESS"],[0,4,1,"","URL_RETRIEVAL_STATUS_UNSAFE"],[0,4,1,"","URL_RETRIEVAL_STATUS_UNSPECIFIED"]],"genai.types.UsageMetadata":[[0,6,1,"","cache_tokens_details"],[0,6,1,"","cached_content_token_count"],[0,6,1,"","prompt_token_count"],[0,6,1,"","prompt_tokens_details"],[0,6,1,"","response_token_count"],[0,6,1,"","response_tokens_details"],[0,6,1,"","service_tier"],[0,6,1,"","thoughts_token_count"],[0,6,1,"","tool_use_prompt_token_count"],[0,6,1,"","tool_use_prompt_tokens_details"],[0,6,1,"","total_token_count"],[0,6,1,"","traffic_type"]],"genai.types.UsageMetadataDict":[[0,4,1,"","cache_tokens_details"],[0,4,1,"","cached_content_token_count"],[0,4,1,"","prompt_token_count"],[0,4,1,"","prompt_tokens_details"],[0,4,1,"","response_token_count"],[0,4,1,"","response_tokens_details"],[0,4,1,"","service_tier"],[0,4,1,"","thoughts_token_count"],[0,4,1,"","tool_use_prompt_token_count"],[0,4,1,"","tool_use_prompt_tokens_details"],[0,4,1,"","total_token_count"],[0,4,1,"","traffic_type"]],"genai.types.UserContent":[[0,6,1,"","parts"],[0,6,1,"","role"]],"genai.types.VadSignalType":[[0,4,1,"","VAD_SIGNAL_TYPE_EOS"],[0,4,1,"","VAD_SIGNAL_TYPE_SOS"],[0,4,1,"","VAD_SIGNAL_TYPE_UNSPECIFIED"]],"genai.types.ValidateRewardConfig":[[0,6,1,"","http_options"]],"genai.types.ValidateRewardConfigDict":[[0,4,1,"","http_options"]],"genai.types.ValidateRewardResponse":[[0,6,1,"","error"],[0,6,1,"","overall_reward"],[0,6,1,"","reward_info_details"],[0,6,1,"","sdk_http_response"]],"genai.types.ValidateRewardResponseDict":[[0,4,1,"","error"],[0,4,1,"","overall_reward"],[0,4,1,"","reward_info_details"],[0,4,1,"","sdk_http_response"]],"genai.types.VeoHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","epoch_count"],[0,6,1,"","learning_rate_multiplier"],[0,6,1,"","tuning_speed"],[0,6,1,"","tuning_task"],[0,6,1,"","veo_data_mixture_ratio"]],"genai.types.VeoHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","epoch_count"],[0,4,1,"","learning_rate_multiplier"],[0,4,1,"","tuning_speed"],[0,4,1,"","tuning_task"],[0,4,1,"","veo_data_mixture_ratio"]],"genai.types.VeoLoraTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"],[0,6,1,"","video_orientation"]],"genai.types.VeoLoraTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"],[0,4,1,"","video_orientation"]],"genai.types.VeoTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.VeoTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.VertexAISearch":[[0,6,1,"","data_store_specs"],[0,6,1,"","datastore"],[0,6,1,"","engine"],[0,6,1,"","filter"],[0,6,1,"","max_results"]],"genai.types.VertexAISearchDataStoreSpec":[[0,6,1,"","data_store"],[0,6,1,"","filter"]],"genai.types.VertexAISearchDataStoreSpecDict":[[0,4,1,"","data_store"],[0,4,1,"","filter"]],"genai.types.VertexAISearchDict":[[0,4,1,"","data_store_specs"],[0,4,1,"","datastore"],[0,4,1,"","engine"],[0,4,1,"","filter"],[0,4,1,"","max_results"]],"genai.types.VertexMultimodalDatasetDestination":[[0,6,1,"","bigquery_destination"],[0,6,1,"","display_name"]],"genai.types.VertexMultimodalDatasetDestinationDict":[[0,4,1,"","bigquery_destination"],[0,4,1,"","display_name"]],"genai.types.VertexRagStore":[[0,6,1,"","rag_corpora"],[0,6,1,"","rag_resources"],[0,6,1,"","rag_retrieval_config"],[0,6,1,"","similarity_top_k"],[0,6,1,"","store_context"],[0,6,1,"","vector_distance_threshold"]],"genai.types.VertexRagStoreDict":[[0,4,1,"","rag_corpora"],[0,4,1,"","rag_resources"],[0,4,1,"","rag_retrieval_config"],[0,4,1,"","similarity_top_k"],[0,4,1,"","store_context"],[0,4,1,"","vector_distance_threshold"]],"genai.types.VertexRagStoreRagResource":[[0,6,1,"","rag_corpus"],[0,6,1,"","rag_file_ids"]],"genai.types.VertexRagStoreRagResourceDict":[[0,4,1,"","rag_corpus"],[0,4,1,"","rag_file_ids"]],"genai.types.Video":[[0,1,1,"","from_file"],[0,6,1,"","mime_type"],[0,1,1,"","save"],[0,1,1,"","show"],[0,6,1,"","uri"],[0,6,1,"","video_bytes"]],"genai.types.VideoCompressionQuality":[[0,4,1,"","LOSSLESS"],[0,4,1,"","OPTIMIZED"]],"genai.types.VideoDict":[[0,4,1,"","mime_type"],[0,4,1,"","uri"],[0,4,1,"","video_bytes"]],"genai.types.VideoGenerationMask":[[0,6,1,"","image"],[0,6,1,"","mask_mode"]],"genai.types.VideoGenerationMaskDict":[[0,4,1,"","image"],[0,4,1,"","mask_mode"]],"genai.types.VideoGenerationMaskMode":[[0,4,1,"","INSERT"],[0,4,1,"","OUTPAINT"],[0,4,1,"","REMOVE"],[0,4,1,"","REMOVE_STATIC"]],"genai.types.VideoGenerationReferenceImage":[[0,6,1,"","image"],[0,6,1,"","reference_type"]],"genai.types.VideoGenerationReferenceImageDict":[[0,4,1,"","image"],[0,4,1,"","reference_type"]],"genai.types.VideoGenerationReferenceType":[[0,4,1,"","ASSET"],[0,4,1,"","STYLE"]],"genai.types.VideoMetadata":[[0,6,1,"","end_offset"],[0,6,1,"","fps"],[0,6,1,"","start_offset"]],"genai.types.VideoMetadataDict":[[0,4,1,"","end_offset"],[0,4,1,"","fps"],[0,4,1,"","start_offset"]],"genai.types.VideoOrientation":[[0,4,1,"","LANDSCAPE"],[0,4,1,"","PORTRAIT"],[0,4,1,"","VIDEO_ORIENTATION_UNSPECIFIED"]],"genai.types.VideoResponseFormat":[[0,6,1,"","aspect_ratio"],[0,6,1,"","delivery"],[0,6,1,"","duration"],[0,6,1,"","gcs_uri"]],"genai.types.VideoResponseFormatDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","delivery"],[0,4,1,"","duration"],[0,4,1,"","gcs_uri"]],"genai.types.VoiceActivity":[[0,6,1,"","audio_offset"],[0,6,1,"","voice_activity_type"]],"genai.types.VoiceActivityDetectionSignal":[[0,6,1,"","vad_signal_type"]],"genai.types.VoiceActivityDetectionSignalDict":[[0,4,1,"","vad_signal_type"]],"genai.types.VoiceActivityDict":[[0,4,1,"","audio_offset"],[0,4,1,"","voice_activity_type"]],"genai.types.VoiceActivityType":[[0,4,1,"","ACTIVITY_END"],[0,4,1,"","ACTIVITY_START"],[0,4,1,"","TYPE_UNSPECIFIED"]],"genai.types.VoiceConfig":[[0,6,1,"","prebuilt_voice_config"],[0,6,1,"","replicated_voice_config"]],"genai.types.VoiceConfigDict":[[0,4,1,"","prebuilt_voice_config"],[0,4,1,"","replicated_voice_config"]],"genai.types.VoiceConsentSignature":[[0,6,1,"","signature"]],"genai.types.VoiceConsentSignatureDict":[[0,4,1,"","signature"]],"genai.types.WebhookConfig":[[0,6,1,"","uris"],[0,6,1,"","user_metadata"]],"genai.types.WebhookConfigDict":[[0,4,1,"","uris"],[0,4,1,"","user_metadata"]],"genai.types.WeightedPrompt":[[0,6,1,"","text"],[0,6,1,"","weight"]],"genai.types.WeightedPromptDict":[[0,4,1,"","text"],[0,4,1,"","weight"]],"genai.types.WhiteSpaceConfig":[[0,6,1,"","max_overlap_tokens"],[0,6,1,"","max_tokens_per_chunk"]],"genai.types.WhiteSpaceConfigDict":[[0,4,1,"","max_overlap_tokens"],[0,4,1,"","max_tokens_per_chunk"]],"genai.types.WordInfo":[[0,6,1,"","end_offset"],[0,6,1,"","start_offset"],[0,6,1,"","word"]],"genai.types.WordInfoDict":[[0,4,1,"","end_offset"],[0,4,1,"","start_offset"],[0,4,1,"","word"]]},"objnames":{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","property","Python property"],"3":["py","module","Python module"],"4":["py","attribute","Python attribute"],"5":["py","pydantic_model","Python model"],"6":["py","pydantic_field","Python field"],"7":["py","pydantic_validator","Python validator"]},"objtypes":{"0":"py:class","1":"py:method","2":"py:property","3":"py:module","4":"py:attribute","5":"py:pydantic_model","6":"py:pydantic_field","7":"py:pydantic_validator"},"terms":{"":[0,1],"0":[0,1],"00":0,"001":[0,1],"002":[0,1],"004":0,"00z":0,"01":0,"01t00":0,"02t15":0,"03":0,"04":0,"05":0,"05530":1,"06":0,"09":0,"1":[0,1],"10":[0,1],"100":1,"1000":0,"101":0,"1080p":0,"11805v3":1,"12":0,"122":0,"123":0,"12345":0,"123456789":0,"1234567890123456789":0,"123a456b789c":0,"128":0,"1280x720":0,"16":[0,1],"16000":0,"180":0,"1841":0,"1k":0,"1p":0,"2":[0,1],"20":[0,1],"200":0,"2000":0,"201":0,"2014":0,"2020":0,"2024":0,"2025":0,"21":0,"2312":1,"23z":0,"24":0,"2403":1,"24khz":0,"25":0,"255":0,"256":0,"2a":0,"2b":0,"2k":0,"3":[0,1],"30":[0,1],"300":1,"301":0,"31":0,"32":0,"32768":0,"3339":0,"3600":[0,1],"383":0,"4":0,"40":0,"404":1,"408":0,"42":0,"429":0,"443":0,"456":0,"47":0,"4k":0,"5":[0,1],"50":0,"512":0,"512px":0,"5th":0,"5xx":0,"6":0,"60":0,"639":0,"64":0,"704x1280":0,"720p":0,"720x1280":0,"8":0,"80":0,"9":[0,1],"90":0,"90th":0,"95":1,"9535":0,"95th":0,"9999":0,"99th":0,"A":[0,1],"And":[0,1],"As":0,"By":[0,1],"For":[0,1],"If":[0,1],"In":[0,1],"It":[0,1],"NOT":0,"No":0,"Not":0,"On":0,"One":0,"Or":0,"The":[0,1],"Then":[0,1],"There":0,"These":0,"To":[0,1],"With":[0,1],"_":0,"_check_field_type_mismatch":0,"_check_image_config_typ":0,"_convert_literal_to_enum":0,"_gao":0,"_interact":0,"_regist":0,"_rename_citation_sourc":0,"_requestopt":1,"_uniongenericalia":0,"_validate_gcs_path":0,"_validate_mask_image_config":0,"a11":1,"a_flat_major_f_minor":[0,1,2],"a_major_g_flat_minor":[0,1,2],"ab":0,"abc":0,"abl":0,"abort":0,"about":[0,1],"abov":[0,1],"abrupt":0,"absolut":0,"abstractmethod":0,"abus":0,"accept":[0,1],"access":[0,1],"access_token":[0,1,2],"accesstoken":0,"accord":0,"accordingli":0,"account":0,"account_cr":[0,1,2],"accumul":0,"achiev":0,"aclient":1,"aclos":[0,1,2],"acm":0,"across":0,"act":0,"acta":0,"action":0,"activ":[0,1,2],"active_documents_count":[0,1,2],"activedocumentscount":0,"activity_end":[0,1,2],"activity_handl":[0,1,2],"activity_handling_unspecifi":[0,1,2],"activity_start":[0,1,2],"activityend":[0,1,2],"activityenddict":[0,1,2],"activityhandl":[0,1,2],"activitystart":[0,1,2],"activitystartdict":[0,1,2],"ad":0,"adapt":0,"adaptation_phras":[0,1,2],"adaptationphras":0,"adapter_s":[0,1,2],"adapter_size_eight":[0,1,2],"adapter_size_four":[0,1,2],"adapter_size_on":[0,1,2],"adapter_size_sixteen":[0,1,2],"adapter_size_thirty_two":[0,1,2],"adapter_size_two":[0,1,2],"adapter_size_unspecifi":[0,1,2],"adapters":[0,1,2],"add":0,"add_watermark":[0,1,2],"addit":[0,1],"addition":0,"additional_config":[0,1,2],"additional_properti":[0,1,2],"additionalconfig":0,"additionalproperti":0,"address":0,"addwatermark":0,"adher":0,"adjac":0,"adjust":0,"adult":0,"aesthet":0,"affect":0,"after":[0,1],"ag":[0,1],"again":0,"against":0,"agent":[0,1,2],"agent_config":0,"aggreg":0,"aggregate_summary_fn":[0,1,2],"aggregatesummaryfn":0,"aggregation_metr":[0,1,2],"aggregation_metric_unspecifi":[0,1,2],"aggregation_output":[0,1,2],"aggregation_result":[0,1,2],"aggregationmetr":[0,1,2],"aggregationoutput":[0,1,2],"aggregationoutputdict":[0,1,2],"aggregationresult":[0,1,2],"aggregationresultdict":[0,1,2],"agreement":0,"ai":0,"aim":0,"aio":[0,1,2],"aiohttp":0,"aiohttp_client":[0,1,2],"aiohttpclient":0,"aip":0,"aiplatform":0,"algorithm":0,"alia":0,"align":0,"all":[0,1],"allow":0,"allow_adult":[0,1,2],"allow_al":[0,1,2],"allow_non":0,"allow_prominent_peopl":[0,1,2],"allowed_function_nam":[0,1,2],"allowedfunctionnam":0,"allowlist":[0,1],"along":0,"alongsid":0,"alpha":[0,1,2],"alphanumer":0,"alreadi":0,"also":[0,1],"altern":0,"alwai":[0,1],"amazon":0,"an":[0,1],"analog":1,"analyz":0,"anchor":0,"ani":[0,2],"anim":0,"anniversari":0,"annot":0,"anoth":0,"answer":0,"any_of":[0,1,2],"anyof":[0,1],"anyth":0,"apart":0,"api":0,"api_auth":[0,1,2],"api_cli":0,"api_client_":0,"api_kei":[0,1,2],"api_key_auth":[0,1,2],"api_key_config":[0,1,2],"api_key_secret":[0,1,2],"api_key_secret_vers":[0,1,2],"api_key_str":[0,1,2],"api_opt":0,"api_respons":0,"api_spec":[0,1,2],"api_spec_unspecifi":[0,1,2],"api_vers":[0,1,2],"apiauth":[0,1,2],"apiauthapikeyconfig":[0,1,2],"apiauthapikeyconfigdict":[0,1,2],"apiauthdict":[0,1,2],"apierror":[0,1],"apikei":0,"apikeyconfig":[0,1,2],"apikeyconfigdict":[0,1,2],"apikeysecret":0,"apikeysecretvers":0,"apikeystr":0,"apispec":[0,1,2],"apivers":0,"app":0,"appear":0,"append":0,"appli":[0,1],"applic":[0,1],"application_json":0,"appropri":0,"approxim":0,"ar":[0,1],"architectur":0,"area":0,"arg":[0,1,2],"arg1":0,"arg2":0,"argument":0,"arithmet":0,"armor":0,"arrai":[0,1,2],"arrang":0,"artifact":0,"as_imag":[0,1,2],"ask":1,"aspect":0,"aspect_ratio":[0,1,2],"aspect_ratio_eight_by_on":[0,1,2],"aspect_ratio_five_by_four":[0,1,2],"aspect_ratio_four_by_f":[0,1,2],"aspect_ratio_four_by_on":[0,1,2],"aspect_ratio_four_by_thre":[0,1,2],"aspect_ratio_nine_by_sixteen":[0,1,2],"aspect_ratio_one_by_eight":[0,1,2],"aspect_ratio_one_by_four":[0,1,2],"aspect_ratio_one_by_on":[0,1,2],"aspect_ratio_sixteen_by_nin":[0,1,2],"aspect_ratio_three_by_four":[0,1,2],"aspect_ratio_three_by_two":[0,1,2],"aspect_ratio_twenty_one_by_nin":[0,1,2],"aspect_ratio_two_by_thre":[0,1,2],"aspect_ratio_unspecifi":[0,1,2],"aspectratio":[0,1,2],"asr":0,"assess":0,"asset":[0,1,2],"assign":0,"assist":0,"associ":0,"assum":[0,1],"async":0,"async_cli":0,"async_client_arg":[0,1,2],"async_pag":1,"asyncag":0,"asyncbatch":0,"asynccach":0,"asyncchat":0,"asynccli":[0,1,2],"asyncclientarg":0,"asyncenviron":0,"asyncfil":0,"asyncfilesearchstor":0,"asyncgemininextgenag":[0,1,2],"asyncgemininextgenenviron":[0,1,2],"asyncgemininextgeninteract":[0,1,2],"asyncgemininextgentrigg":[0,1,2],"asyncgemininextgenwebhook":[0,1,2],"asynchron":0,"asyncinteract":0,"asyncio":1,"asynciter":0,"asyncl":[0,1,2],"asynclivemus":0,"asyncmodel":[0,1,2],"asyncoper":0,"asyncpag":0,"asyncsess":[0,1,2],"asyncstream":0,"asynctoken":[0,1,2],"asynctrigg":0,"asynctun":[0,1,2],"asyncwebhook":0,"attach":0,"attack":0,"attempt":[0,1,2],"attribut":0,"attrubit":0,"audienc":0,"audio":[0,1,2],"audio_bitrate_bp":[0,1,2],"audio_byt":0,"audio_chunk":[0,1,2],"audio_duration_second":[0,1,2],"audio_offset":[0,1,2],"audio_stream":0,"audio_stream_end":[0,1,2],"audio_timestamp":[0,1,2],"audio_track_extract":[0,1,2],"audio_transcript":[0,1,2],"audio_transcription_config":[0,1,2],"audiobitratebp":0,"audiochunk":[0,1,2],"audiochunkdict":[0,1,2],"audiodurationsecond":0,"audiooffset":0,"audioresponseformat":[0,1,2],"audioresponseformatdict":[0,1,2],"audiostreamend":0,"audiotimestamp":0,"audiotrackextract":0,"audiotranscript":0,"audiotranscriptionconfig":[0,1,2],"audiotranscriptionconfigdict":[0,1,2],"augment":0,"auth":0,"auth_config":[0,1,2],"auth_token":[0,1,2],"auth_typ":[0,1,2],"auth_type_unspecifi":[0,1,2],"authconfig":[0,1,2],"authconfigdict":[0,1,2],"authconfiggoogleserviceaccountconfig":[0,1,2],"authconfiggoogleserviceaccountconfigdict":[0,1,2],"authconfighttpbasicauthconfig":[0,1,2],"authconfighttpbasicauthconfigdict":[0,1,2],"authconfigoauthconfig":[0,1,2],"authconfigoauthconfigdict":[0,1,2],"authconfigoidcconfig":[0,1,2],"authconfigoidcconfigdict":[0,1,2],"authent":[0,1],"author":[0,1],"author_attribut":[0,1,2],"authorattribut":0,"authtoken":[0,1,2],"authtokendict":[0,1,2],"authtyp":[0,1,2],"auto":[0,1,2],"auto_mod":[0,1,2],"auto_trunc":[0,1,2],"autom":0,"automat":0,"automatic_activity_detect":[0,1,2],"automatic_function_cal":[0,1,2],"automatic_function_calling_histori":[0,1,2],"automaticactivitydetect":[0,1,2],"automaticactivitydetectiondict":[0,1,2],"automaticfunctioncal":0,"automaticfunctioncallingconfig":[0,1,2],"automaticfunctioncallingconfigdict":[0,1,2],"automaticfunctioncallinghistori":0,"automod":0,"autorat":0,"autorater_config":[0,1,2],"autorater_model":[0,1,2],"autorater_prompt":[0,1,2],"autorater_response_parse_config":[0,1,2],"autorater_scor":[0,1,2],"autoraterconfig":[0,1,2],"autoraterconfigdict":[0,1,2],"autoratermodel":0,"autoraterprompt":0,"autoraterresponseparseconfig":0,"autoraterscor":0,"autotrunc":0,"auxiliari":0,"avail":[0,1],"avatar":0,"avatar_config":[0,1,2],"avatar_nam":[0,1,2],"avatarconfig":[0,1,2],"avatarconfigdict":[0,1,2],"avatarnam":0,"averag":[0,1,2],"avg_logprob":[0,1,2],"avglogprob":0,"avoid":0,"await":[0,1],"awesom":0,"b":0,"b_flat_major_g_minor":[0,1,2],"b_major_a_flat_minor":[0,1,2],"back":[0,1],"backend":[0,1],"background":[0,1,2],"bad":1,"bagel":0,"bake":0,"balanc":[0,1,2],"bar":0,"barg":0,"base":0,"base64":0,"base64url":0,"base_ag":0,"base_environ":0,"base_model":[0,1,2],"base_step":[0,1,2],"base_teacher_model":[0,1,2],"base_url":[0,1,2],"base_url_resource_scop":[0,1,2],"baselin":[0,1,2],"baseline_response_field_nam":[0,1,2],"baselineresponsefieldnam":0,"basemodel":[0,1],"basemodul":0,"basestep":0,"baseteachermodel":0,"baseurl":0,"baseurlresourcescop":0,"basic":0,"bass":0,"batch":[0,2],"batch_job":[0,1,2],"batch_siz":[0,1,2],"batchjob":[0,1,2],"batchjobdestin":[0,1,2],"batchjobdestinationdict":[0,1,2],"batchjobdict":[0,1,2],"batchjoboutputinfo":[0,1,2],"batchjoboutputinfodict":[0,1,2],"batchjobsourc":[0,1,2],"batchjobsourcedict":[0,1,2],"batchsiz":0,"bb":0,"bcp":0,"bearer":1,"beat":0,"becaus":0,"becom":0,"been":0,"befor":[0,1],"begin":0,"begun":0,"behav":0,"behavior":[0,1,2],"behind":[0,1],"being":[0,1],"belong":0,"below":[0,1],"best":0,"beta":[0,1,2],"better":0,"between":[0,1],"beyond":0,"bia":0,"bias":0,"bidi":0,"bidigeneratecont":0,"bidigeneratecontentsetup":0,"biggest":0,"bigqueri":[0,1],"bigquery_destin":[0,1,2],"bigquery_output_t":[0,1,2],"bigquery_sourc":[0,1,2],"bigquery_uri":[0,1,2],"bigquerydestin":0,"bigqueryoutputt":0,"bigquerysourc":[0,1,2],"bigquerysourcedict":[0,1,2],"bigqueryuri":0,"bill":0,"billabl":0,"billable_character_count":[0,1,2],"billable_sum":[0,1,2],"billablecharactercount":0,"billablesum":0,"binari":0,"binary_color_threshold":[0,1,2],"binarycolorthreshold":0,"birthdai":0,"bit":0,"bit_rat":[0,1,2],"bitrat":0,"bleu":[0,1,2],"bleu_metric_valu":[0,1,2],"bleu_spec":[0,1,2],"bleumetricvalu":[0,1,2],"bleumetricvaluedict":[0,1,2],"bleuspec":[0,1,2],"bleuspecdict":[0,1,2],"blob":[0,1,2],"blob_id":0,"blobdict":[0,1,2],"block":[0,1,2],"block_high_and_abov":[0,1,2],"block_higher_and_abov":[0,1,2],"block_low_and_abov":[0,1,2],"block_medium_and_abov":[0,1,2],"block_non":[0,1,2],"block_only_extremely_high":[0,1,2],"block_only_high":[0,1,2],"block_prominent_peopl":[0,1,2],"block_reason":[0,1,2],"block_reason_messag":[0,1,2],"block_very_high_and_abov":[0,1,2],"blocked_reason_unspecifi":[0,1,2],"blockedreason":[0,1,2],"blocking_confid":[0,1,2],"blockingconfid":0,"blocklist":[0,1,2],"blockreason":0,"blockreasonmessag":0,"bloom":0,"blue":[0,1],"blueberri":0,"bodi":[0,2],"body_seg":[0,1,2],"bodyseg":0,"boldfac":0,"bool":0,"bool_valu":[0,1,2],"boolean":[0,1,2],"boolvalu":0,"boston":1,"both":[0,1],"bound":0,"bouquet":0,"bp":0,"bpm":[0,1,2],"bq":[0,1],"bqdatasetid":0,"bqtableid":0,"branch":0,"brass":1,"break":0,"breakdown":0,"bright":[0,1,2],"browser":0,"brush":0,"bucket":[0,1,2],"budget":0,"buffer":0,"build":0,"builder":0,"built":[0,1],"bulli":0,"bypass":[0,1],"byte":[0,1],"c":0,"c_major_a_minor":[0,1,2],"ca":1,"cach":[0,2],"cache_tokens_detail":[0,1,2],"cached_cont":[0,1,2],"cached_content_token_count":[0,1,2],"cachedcont":[0,1,2],"cachedcontentdict":[0,1,2],"cachedcontenttokencount":0,"cachedcontentusagemetadata":[0,1,2],"cachedcontentusagemetadatadict":[0,1,2],"cachetokensdetail":0,"calcul":0,"calendar":0,"call":0,"callabl":0,"camel":0,"can":[0,1],"cancel":[0,1,2],"cancelbatchjobconfig":[0,1,2],"cancelbatchjobconfigdict":[0,1,2],"canceltuningjobconfig":[0,1,2],"canceltuningjobconfigdict":[0,1,2],"canceltuningjobrespons":[0,1,2],"canceltuningjobresponsedict":[0,1,2],"candid":[0,1,2],"candidate_count":[0,1,2],"candidate_response_field_nam":[0,1,2],"candidatecount":0,"candidatedict":[0,1,2],"candidateresponsefieldnam":0,"candidates_token_count":[0,1,2],"candidates_tokens_detail":[0,1,2],"candidatestokencount":0,"candidatestokensdetail":0,"cannot":0,"canon":1,"capabl":[0,1],"capac":0,"capit":[0,1],"card":0,"carri":0,"cartoon":1,"case":[0,1],"caseinsensitiveenum":0,"cat":[0,1],"cat_driv":1,"categori":[0,1,2],"caus":0,"caution":0,"celebr":0,"central1":[0,1],"certain":0,"chang":0,"char":0,"charact":0,"charg":0,"chat":[0,2],"check":[0,1],"checker":0,"checkpoint":[0,1,2],"checkpoint_id":[0,1,2],"checkpoint_interv":[0,1,2],"checkpointdict":[0,1,2],"checkpointid":0,"checkpointinterv":0,"child":0,"children":0,"chines":0,"choic":0,"choos":0,"chosen":0,"chosen_candid":[0,1,2],"chosencandid":0,"chunk":[0,1],"chunk_id":[0,1,2],"chunkid":0,"chunking_config":[0,1,2],"chunkingconfig":[0,1,2],"chunkingconfigdict":[0,1,2],"citat":[0,1,2],"citation_metadata":[0,1,2],"citationdict":[0,1,2],"citationmetadata":[0,1,2],"citationmetadatadict":[0,1,2],"citi":1,"civic":0,"claim":0,"class":[0,1],"classic":0,"classmethod":0,"clean":1,"clear":[0,1],"client":2,"client_arg":[0,1,2],"client_cont":[0,1,2],"client_mod":[0,1,2],"clientarg":0,"clientcont":0,"clientsess":[0,1],"clip":0,"clone":0,"close":[0,2],"closest":0,"cloud":[0,1],"cloud_run_reward_scor":[0,1,2],"cloud_run_uri":[0,1,2],"cloudrunrewardscor":0,"cloudrunuri":0,"cmek":0,"code":[0,1,2],"code_execut":[0,1,2],"code_execution_result":[0,1,2],"code_execution_reward_scor":[0,1,2],"codeexecut":0,"codeexecutionresult":[0,1,2],"codeexecutionresultdict":[0,1,2],"codeexecutionrewardscor":0,"codepoint":0,"coher":0,"collect":[0,1,2],"colon":0,"color":0,"com":[0,1],"combin":0,"come":0,"command":1,"comment":[0,1,2],"commit":0,"common":[0,1],"commun":0,"communication_tool":[0,1,2],"compar":0,"compat":0,"complet":[0,1,2],"completed_epoch_count":[0,1,2],"completed_st":1,"completed_step_count":[0,1,2],"completedepochcount":0,"completedstepcount":0,"completion_stat":[0,1,2],"completionstat":[0,1,2],"completionstatsdict":[0,1,2],"compli":0,"complianc":0,"composit":[0,1],"composite_reward_config":[0,1,2],"compositereinforcementtuningrewardconfig":[0,1,2],"compositereinforcementtuningrewardconfigdict":[0,1,2],"compositereinforcementtuningrewardconfigweightedrewardconfig":[0,1,2],"compositereinforcementtuningrewardconfigweightedrewardconfigdict":[0,1,2],"compositerewardconfig":0,"compress":0,"compression_qu":[0,1,2],"compressionqu":0,"compromis":0,"comput":0,"computation_based_metric_spec":[0,1,2],"computation_based_metric_type_unspecifi":[0,1,2],"computationbasedmetricspec":[0,1,2],"computationbasedmetricspecdict":[0,1,2],"computationbasedmetrictyp":[0,1,2],"compute_token":[0,1,2],"computer_us":[0,1,2],"computerout":0,"computerus":[0,1,2],"computerusedict":[0,1,2],"computetokensconfig":[0,1,2],"computetokensconfigdict":[0,1,2],"computetokensrequest":0,"computetokensrespons":[0,1,2],"computetokensresponsedict":[0,1,2],"computetokensresult":[0,1,2],"computetokensresultdict":[0,1,2],"concaten":0,"concis":0,"concise_anss":0,"concise_answ":0,"conduct":0,"confid":0,"confidence_scor":[0,1,2],"confidence_threshold":[0,1,2],"confidencescor":0,"confidencethreshold":0,"config":[0,2],"configur":[0,1],"conflict":0,"conform":0,"connect":[0,1,2],"consecut":[0,1],"consent":0,"consent_audio":[0,1,2],"consentaudio":0,"consid":[0,1],"consist":0,"consol":1,"const":0,"constitut":0,"constrain":0,"construct":0,"consum":0,"consumpt":0,"contain":[0,1],"content":[0,2],"content_typ":[0,1,2],"contentdict":[0,1,2],"contentembed":[0,1,2],"contentembeddingdict":[0,1,2],"contentembeddingstatist":[0,1,2],"contentembeddingstatisticsdict":[0,1,2],"contentreferenceimag":[0,1,2],"contentreferenceimagedict":[0,1,2],"contents_per_example_distribut":[0,1,2],"contentsperexampledistribut":0,"contenttyp":0,"contentunion":1,"context":0,"context_window_compress":[0,1,2],"contextu":0,"contextwindowcompress":0,"contextwindowcompressionconfig":[0,1,2],"contextwindowcompressionconfigdict":[0,1,2],"contin":1,"continu":0,"contribut":0,"control":[0,1],"control_image_config":[0,1,2],"control_reference_config":0,"control_typ":[0,1,2],"control_type_canni":[0,1,2],"control_type_default":[0,1,2],"control_type_face_mesh":[0,1,2],"control_type_scribbl":[0,1,2],"controlimageconfig":0,"controlreferenceconfig":[0,1,2],"controlreferenceconfigdict":[0,1,2],"controlreferenceimag":[0,1,2],"controlreferenceimagedict":[0,1,2],"controlreferencetyp":[0,1,2],"controltyp":0,"convei":0,"conveni":0,"convers":[0,1],"convert":[0,1],"cooki":[0,1],"core":0,"corpora":0,"corpu":0,"correct":0,"correct_answer_reward":[0,1,2],"correctanswerreward":0,"correctli":0,"correl":0,"correspond":0,"cost":0,"could":[0,1],"count":[0,2],"count_token":[0,1,2],"counter":0,"countri":0,"countryinfo":1,"counttokensconfig":[0,1,2],"counttokensconfigdict":[0,1,2],"counttokensrespons":[0,1,2],"counttokensresponsedict":[0,1,2],"counttokensresult":[0,1,2],"counttokensresultdict":[0,1,2],"cover":0,"cp":1,"creat":[0,2],"create_environ":[0,1,2],"create_tim":[0,1,2],"createauthtokenconfig":[0,1,2],"createauthtokenconfigdict":[0,1,2],"createauthtokenparamet":[0,1,2],"createauthtokenparametersdict":[0,1,2],"createbatchjobconfig":[0,1,2],"createbatchjobconfigdict":[0,1,2],"createcachedcontentconfig":[0,1,2],"createcachedcontentconfigdict":[0,1,2],"createembeddingsbatchjobconfig":[0,1,2],"createembeddingsbatchjobconfigdict":[0,1,2],"createfileconfig":[0,1,2],"createfileconfigdict":[0,1,2],"createfilerespons":[0,1,2],"createfileresponsedict":[0,1,2],"createfilesearchstoreconfig":[0,1,2],"createfilesearchstoreconfigdict":[0,1,2],"createtim":0,"createtuningjobconfig":[0,1,2],"createtuningjobconfigdict":[0,1,2],"createtuningjobparamet":[0,1,2],"createtuningjobparametersdict":[0,1,2],"creation":0,"creativ":0,"credenti":[0,1,2],"credential_secret":[0,1,2],"credentialsecret":0,"credit":0,"critiqu":0,"cron":0,"crop":[0,1,2],"crypto":1,"crypto_kei":0,"cryptokei":0,"cumul":0,"current":[0,1],"custom":0,"custom_base_model":[0,1,2],"custom_code_execution_result":[0,1,2],"custom_code_execution_spec":[0,1,2],"custom_code_parser_config":[0,1,2],"custom_config":[0,1,2],"custom_funct":[0,1,2],"custom_metadata":[0,1,2],"custom_output":[0,1,2],"custom_output_format_config":[0,1,2],"custom_vocabulari":[0,1,2],"custombasemodel":0,"customcodeexecutionresult":[0,1,2],"customcodeexecutionresultdict":[0,1,2],"customcodeexecutionspec":[0,1,2],"customcodeexecutionspecdict":[0,1,2],"customcodeparserconfig":0,"customconfig":0,"customfunct":0,"customized_avatar":[0,1,2],"customizedavatar":[0,1,2],"customizedavatardict":[0,1,2],"custommetadata":[0,1,2],"custommetadatadict":[0,1,2],"customoutput":[0,1,2],"customoutputdict":[0,1,2],"customoutputformatconfig":[0,1,2],"customoutputformatconfigdict":[0,1,2],"customvocabulari":0,"cut":0,"cyclic":0,"d":[0,1],"d_flat_major_b_flat_minor":[0,1,2],"d_major_b_minor":[0,1,2],"dai":[0,1,2],"danger":0,"dash":0,"data":[0,1,2],"data_modif":[0,1,2],"data_stor":[0,1,2],"data_store_spec":[0,1,2],"dataitem":0,"dataset":[0,1,2],"datasetdistribut":[0,1,2],"datasetdistributiondict":[0,1,2],"datasetdistributiondistributionbucket":[0,1,2],"datasetdistributiondistributionbucketdict":[0,1,2],"datasetstat":[0,1,2],"datasetstatsdict":[0,1,2],"datasset":0,"datastor":[0,1,2],"datastorespec":0,"datatrack":0,"datatyp":0,"date":0,"datetim":[0,1],"db":0,"debug":0,"debug_config":[0,1,2],"debugconfig":[0,1,2],"decid":0,"decim":0,"declar":0,"decod":0,"dedic":0,"def":[0,1,2],"default":[0,1,2],"default_checkpoint_id":[0,1,2],"defaultcheckpointid":0,"defin":[0,1],"definit":0,"degre":0,"delai":0,"delet":[0,2],"delete_environ":[0,1,2],"delete_job":1,"deletebatchjobconfig":[0,1,2],"deletebatchjobconfigdict":[0,1,2],"deletecachedcontentconfig":[0,1,2],"deletecachedcontentconfigdict":[0,1,2],"deletecachedcontentrespons":[0,1,2],"deletecachedcontentresponsedict":[0,1,2],"deletedocumentconfig":[0,1,2],"deletedocumentconfigdict":[0,1,2],"deletefileconfig":[0,1,2],"deletefileconfigdict":[0,1,2],"deletefilerespons":[0,1,2],"deletefileresponsedict":[0,1,2],"deletefilesearchstoreconfig":[0,1,2],"deletefilesearchstoreconfigdict":[0,1,2],"deletemodelconfig":[0,1,2],"deletemodelconfigdict":[0,1,2],"deletemodelrespons":[0,1,2],"deletemodelresponsedict":[0,1,2],"deleteresourcejob":[0,1,2],"deleteresourcejobdict":[0,1,2],"deliv":0,"deliveri":[0,1,2],"delivery_unspecifi":[0,1,2],"dens":0,"densiti":[0,1,2],"depend":[0,1],"deploi":0,"deployed_model_id":[0,1,2],"deployedmodelid":0,"deprec":[0,1,2],"depth":0,"deriv":0,"descend":0,"describ":0,"descript":[0,1,2],"design":0,"desktop":0,"dest":[0,1,2],"destin":[0,1],"detail":[0,1,2],"detect":0,"determin":0,"determinist":[0,1],"dev":[0,1],"develop":0,"deviat":0,"diariz":[0,1,2],"dict":0,"dictionari":[0,1],"did":0,"differ":[0,1],"digit":0,"dilat":0,"dimens":0,"direct":0,"directli":[0,1],"directori":0,"disabl":[0,2],"disable_attribut":[0,1,2],"disableattribut":0,"disabled_safety_polici":[0,1,2],"disabledsafetypolici":0,"disallow":0,"disconnect":0,"discourag":0,"discoveryengin":0,"displai":[0,1],"display_nam":[0,1,2],"displaynam":0,"distanc":0,"distance_met":[0,1,2],"distancemet":0,"distil":[0,1,2],"distillation_data_stat":[0,1,2],"distillation_sampling_spec":[0,1,2],"distillation_spec":[0,1,2],"distillationdatastat":[0,1,2],"distillationdatastatsdict":[0,1,2],"distillationhyperparamet":[0,1,2],"distillationhyperparametersdict":[0,1,2],"distillationsamplingspec":[0,1,2],"distillationsamplingspecdict":[0,1,2],"distillationspec":[0,1,2],"distillationspecdict":[0,1,2],"distinguish":0,"distribut":0,"diverg":0,"divers":[0,1,2],"do":[0,1],"doc":[0,1],"docstr":0,"document":[0,1,2],"document_nam":[0,1,2],"document_ocr":[0,1,2],"documentdict":[0,1,2],"documentnam":0,"documentocr":0,"documentst":[0,1,2],"doe":0,"doesn":0,"dog":0,"domain":[0,1,2],"don":[0,1],"done":[0,1,2],"dont_allow":[0,1,2],"dot":0,"doubl":0,"down":0,"download":[0,1],"download_uri":[0,1,2],"downloadfileconfig":[0,1,2],"downloadfileconfigdict":[0,1,2],"downloadmediaconfig":[0,1,2],"downloadmediaconfigdict":[0,1,2],"downloaduri":0,"draft":0,"dri":0,"drive":[0,1],"drop":0,"dropped_example_indic":[0,1,2],"dropped_example_reason":[0,1,2],"droppedexampleindic":0,"droppedexamplereason":0,"drum":0,"due":0,"dump":0,"duplic":1,"durat":[0,1,2],"duration_second":[0,1,2],"durationsecond":0,"dure":0,"dynam":0,"dynamic_retrieval_config":[0,1,2],"dynamic_threshold":[0,1,2],"dynamicretrievalconfig":[0,1,2],"dynamicretrievalconfigdict":[0,1,2],"dynamicretrievalconfigmod":[0,1,2],"dynamicthreshold":0,"e":[0,1,2],"e_flat_major_c_minor":[0,1,2],"e_major_d_flat_minor":[0,1,2],"each":[0,1],"earlier":0,"east":0,"eb":0,"echo":0,"echo_target_languag":[0,1,2],"echotargetlanguag":0,"edit":0,"edit_imag":[0,1,2],"edit_mod":[0,1,2],"edit_mode_bgswap":[0,1,2],"edit_mode_controlled_edit":[0,1,2],"edit_mode_default":[0,1,2],"edit_mode_inpaint_insert":[0,1,2],"edit_mode_inpaint_remov":[0,1,2],"edit_mode_outpaint":[0,1,2],"edit_mode_product_imag":[0,1,2],"edit_mode_styl":[0,1,2],"editimageconfig":[0,1,2],"editimageconfigdict":[0,1,2],"editimagerespons":[0,1,2],"editimageresponsedict":[0,1,2],"editmod":[0,1,2],"effect":0,"effici":0,"effort":0,"either":[0,1],"elast":0,"elastic_search":[0,1,2],"elastic_search_param":[0,1,2],"elasticsearch":0,"elasticsearchparam":0,"elect":0,"eleg":0,"element":0,"elif":0,"els":[0,1],"elsewher":0,"email":0,"emb":0,"embed":[0,1,2],"embed_cont":[0,1,2],"embedcont":0,"embedcontentbatch":[0,1,2],"embedcontentbatchdict":[0,1,2],"embedcontentconfig":[0,1,2],"embedcontentconfigdict":[0,1,2],"embedcontentmetadata":[0,1,2],"embedcontentmetadatadict":[0,1,2],"embedcontentparamet":[0,1,2],"embedcontentparametersdict":[0,1,2],"embedcontentrespons":[0,1,2],"embedcontentresponsedict":[0,1,2],"embedding_model":[0,1,2],"embeddingapityp":[0,1,2],"embeddingmodel":0,"embeddingsbatchjobsourc":[0,1,2],"embeddingsbatchjobsourcedict":[0,1,2],"emot":0,"empathet":0,"empti":0,"en":[0,1,2],"enabl":0,"enable_affective_dialog":[0,1,2],"enable_control_image_comput":[0,1,2],"enable_enhanced_civic_answ":[0,1,2],"enable_prompt_injection_detect":[0,1,2],"enable_widget":[0,1,2],"enableaffectivedialog":0,"enablecontrolimagecomput":0,"enableenhancedcivicansw":0,"enablepromptinjectiondetect":0,"enablewidget":0,"encapsul":0,"encod":0,"encoded_polylin":[0,1,2],"encodedpolylin":0,"encount":0,"encourag":0,"encrypt":0,"encryption_spec":[0,1,2],"encryptionspec":[0,1,2],"encryptionspecdict":[0,1,2],"end":[0,1],"end_index":[0,1,2],"end_of_speech_sensit":[0,1,2],"end_of_turn":0,"end_offset":[0,1,2],"end_sensitivity_high":[0,1,2],"end_sensitivity_low":[0,1,2],"end_sensitivity_unspecifi":[0,1,2],"end_tim":[0,1,2],"endian":0,"endindex":0,"endoffset":0,"endofspeechsensit":0,"endpoint":[0,1,2],"endpointdict":[0,1,2],"endsensit":[0,1,2],"endtim":0,"enforc":0,"engag":1,"engin":[0,1,2],"english":0,"enhanc":0,"enhance_input_imag":[0,1,2],"enhance_prompt":[0,1,2],"enhanced_prompt":[0,1,2],"enhancedprompt":0,"enhanceinputimag":0,"enhanceprompt":0,"enough":0,"ensur":[0,1],"enter":0,"enterpris":[0,1,2],"enterprise_web_search":[0,1,2],"enterprisewebsearch":[0,1,2],"enterprisewebsearchdict":[0,1,2],"entir":0,"entiti":0,"entitylabel":[0,1,2],"entitylabeldict":[0,1,2],"entri":0,"enum":[0,2],"enumer":0,"env":1,"environ":[0,1,2],"environment_brows":[0,1,2],"environment_desktop":[0,1,2],"environment_id":0,"environment_mobil":[0,1,2],"environment_unspecifi":[0,1,2],"ephemer":0,"epoch":[0,1,2],"epoch_count":[0,1,2],"epochcount":0,"equal":0,"equival":0,"error":[0,2],"errorev":0,"essenti":[0,1],"etc":0,"evalu":0,"evaluate_dataset_respons":[0,1,2],"evaluate_dataset_run":[0,1,2],"evaluate_interv":[0,1,2],"evaluatedatasetrespons":[0,1,2],"evaluatedatasetresponsedict":[0,1,2],"evaluatedatasetrun":[0,1,2],"evaluatedatasetrundict":[0,1,2],"evaluateinterv":0,"evaluation_config":[0,1,2],"evaluation_funct":[0,1,2],"evaluation_run":[0,1,2],"evaluation_run_id":0,"evaluationconfig":[0,1,2],"evaluationconfigdict":[0,1,2],"evaluationdataset":[0,1,2],"evaluationdatasetdict":[0,1,2],"evaluationfunct":0,"evaluationinst":0,"evaluationparserconfig":[0,1,2],"evaluationparserconfigcustomcodeparserconfig":[0,1,2],"evaluationparserconfigcustomcodeparserconfigdict":[0,1,2],"evaluationparserconfigdict":[0,1,2],"evaluationrun":0,"evaluationservic":0,"evel":0,"even":0,"event":[0,1],"event_id":0,"everi":0,"everlast":0,"evid":0,"ex":0,"exa":0,"exa_ai_search":[0,1,2],"exaaisearch":0,"exact":0,"exact_match":[0,1,2],"exact_match_metric_valu":[0,1,2],"exact_match_scor":[0,1,2],"exactli":0,"exactmatchmetricvalu":[0,1,2],"exactmatchmetricvaluedict":[0,1,2],"exactmatchscor":0,"exampl":[0,1,2],"exce":[0,1],"except":[0,1],"exception_if_mldev":[0,1,2],"exception_if_vertex":[0,1,2],"exceptionifmldev":0,"exceptionifvertex":0,"excerpt":0,"excess":0,"exchang":0,"exclud":0,"exclude_domain":[0,1,2],"excluded_predefined_funct":[0,1,2],"excludedomain":0,"excludedpredefinedfunct":0,"exclus":0,"execut":[0,1],"executable_cod":[0,1,2],"executablecod":[0,1,2],"executablecodedict":[0,1,2],"executeextensionrequest":0,"execution_timeout_second":0,"exist":0,"exit":1,"exp":0,"exp_bas":[0,1,2],"expbas":0,"expect":[0,1],"expens":0,"experi":[0,1,2],"experiment":[0,2],"expir":0,"expiration_tim":[0,1,2],"expirationtim":0,"expire_tim":[0,1,2],"expiretim":0,"explain":[0,1],"explan":[0,1,2],"explicit":0,"explicit_vad_sign":[0,1,2],"explicitli":[0,1],"explicitvadsign":0,"explor":0,"export":[0,1],"export_last_checkpoint_onli":[0,1,2],"exportlastcheckpointonli":0,"expos":[0,1],"express":[0,1,2],"extend":0,"extens":[0,1],"extern":0,"external_api":[0,1,2],"externalapi":[0,1,2],"externalapidict":[0,1,2],"externalapielasticsearchparam":[0,1,2],"externalapielasticsearchparamsdict":[0,1,2],"externalapisimplesearchparam":[0,1,2],"externalapisimplesearchparamsdict":[0,1,2],"extra":0,"extra_bodi":[0,1,2],"extra_head":0,"extra_queri":0,"extrabodi":0,"extract":0,"extrem":0,"f":[0,1],"f_major_d_minor":[0,1,2],"face":0,"facebook":0,"facilit":0,"factor":0,"factual":0,"fail":[0,1,2],"failed_count":[0,1,2],"failed_documents_count":[0,1,2],"failed_precondit":0,"failedcount":0,"faileddocumentscount":0,"failur":0,"fallback":0,"fals":[0,1],"fashion":0,"fast":[0,1,2],"favorit":0,"featur":[0,1],"feature_selection_prefer":[0,1,2],"feature_selection_preference_unspecifi":[0,1,2],"featureselectionprefer":[0,1,2],"fetch":0,"fetch_polici":0,"fetchpredictoperationconfig":[0,1,2],"fetchpredictoperationconfigdict":[0,1,2],"few":[0,1],"fewer":0,"field":[0,1],"field_nam":0,"fieldinfo":0,"file":[0,2],"file1":1,"file2":1,"file3":1,"file_data":[0,1,2],"file_id":[0,1,2],"file_info":1,"file_nam":[0,1,2],"file_path":0,"file_search":[0,1,2],"file_search_stor":[0,1,2],"file_search_store_id":0,"file_search_store_nam":[0,1,2],"file_uri":[0,1,2],"filedata":[0,1,2],"filedatadict":[0,1,2],"filedict":[0,1,2],"fileid":0,"filenam":0,"filesearch":[0,1,2],"filesearchdict":[0,1,2],"filesearchstor":[0,1,2],"filesearchstoredict":[0,1,2],"filesearchstorenam":0,"filesourc":[0,1,2],"filest":[0,1,2],"filestatu":[0,1,2],"filestatusdict":[0,1,2],"fileuri":0,"fill":0,"filter":[0,1,2],"filtered_prompt":[0,1,2],"filtered_reason":[0,1,2],"filteredprompt":0,"filteredreason":0,"final":0,"financi":0,"financial_transact":[0,1,2],"find":0,"fine":[0,1],"finer":0,"finish":[0,1,2],"finish_messag":[0,1,2],"finish_reason":[0,1,2],"finish_reason_unspecifi":[0,1,2],"finishmessag":0,"finishreason":[0,1,2],"first":0,"first_pag":[0,1,2],"firstpag":0,"fit":0,"fix":[0,1],"flag":0,"flag_content_uri":[0,1,2],"flagcontenturi":0,"flash":[0,1],"flat":0,"flex":[0,1,2],"flip":0,"flip_en":[0,1,2],"flipen":0,"float":0,"floral":0,"flow":0,"flower":0,"fluenci":0,"fluent":0,"fly":1,"focus":0,"follow":[0,1],"foo":0,"forbidden":0,"forc":[0,1,2],"forecast":0,"foreground":[0,1,2],"form":0,"formal":1,"format":[0,1,2],"four":0,"fp":[0,1,2],"fr":0,"fraction":0,"frame":[0,1],"franc":0,"francisco":1,"french":0,"frequenc":0,"frequency_penalti":[0,1,2],"frequencypenalti":0,"freshli":0,"from":[0,1],"from_api_respons":[0,1,2],"from_byt":[0,1,2],"from_cal":[0,1,2],"from_callable_with_api_opt":[0,1,2],"from_code_execution_result":[0,1,2],"from_executable_cod":[0,1,2],"from_fil":[0,1,2],"from_function_cal":[0,1,2],"from_function_respons":[0,1,2],"from_json_schema":[0,1,2],"from_mcp_respons":[0,1,2],"from_text":[0,1,2],"from_uri":[0,1,2],"frustrat":0,"full":0,"full_fine_tuning_spec":[0,1,2],"fullfinetuningspec":[0,1,2],"fullfinetuningspecdict":[0,1,2],"fulli":0,"function":0,"function_cal":[0,1,2],"function_call_cont":1,"function_call_part":1,"function_calling_config":[0,1,2],"function_declar":[0,1,2],"function_respons":[0,1,2],"function_response_cont":1,"function_response_part":1,"function_result":1,"functioncal":[0,1,2],"functioncalldict":[0,1,2],"functioncallingconfig":[0,1,2],"functioncallingconfigdict":[0,1,2],"functioncallingconfigmod":[0,1,2],"functiondeclar":[0,1,2],"functiondeclarationdict":[0,1,2],"functionrespons":[0,1,2],"functionresponseblob":[0,1,2],"functionresponseblobdict":[0,1,2],"functionresponsedict":[0,1,2],"functionresponsefiledata":[0,1,2],"functionresponsefiledatadict":[0,1,2],"functionresponsepart":[0,1,2],"functionresponsepartdict":[0,1,2],"functionresponseschedul":[0,1,2],"further":0,"futur":0,"g":[0,1],"g_flat_major_e_flat_minor":[0,1,2],"g_major_e_minor":[0,1,2],"gao":[1,2],"gap":0,"gatewai":1,"gb":0,"gc":[0,1],"gcloud":1,"gcp":0,"gcs_destin":[0,1,2],"gcs_output_directori":[0,1,2],"gcs_sourc":[0,1,2],"gcs_uri":[0,1,2],"gcsdestin":[0,1,2],"gcsdestinationdict":[0,1,2],"gcsoutputdirectori":0,"gcssourc":[0,1,2],"gcssourcedict":[0,1,2],"gcsuri":0,"gdp":1,"gemini":0,"gemini_api":0,"gemini_api_kei":1,"geminiapi":[0,1],"gemininextgenag":[0,1,2],"gemininextgenenviron":[0,1,2],"gemininextgeninteract":[0,1,2],"gemininextgentrigg":[0,1,2],"gemininextgenwebhook":[0,1,2],"geminipreferenceexampl":[0,1,2],"geminipreferenceexamplecomplet":[0,1,2],"geminipreferenceexamplecompletiondict":[0,1,2],"geminipreferenceexampledict":[0,1,2],"gemma":0,"genai":[1,2],"genaierror":0,"genaituningservic":0,"gener":[0,2],"generate_audio":[0,1,2],"generate_cont":[0,2],"generate_content_stream":[0,1,2],"generate_imag":[0,1,2],"generate_video":[0,1,2],"generateaudio":0,"generatecont":0,"generatecontentconfig":[0,1,2],"generatecontentconfigdict":[0,1,2],"generatecontentrequest":0,"generatecontentrespons":[0,1,2],"generatecontentresponsedict":[0,1,2],"generatecontentresponsepromptfeedback":[0,1,2],"generatecontentresponsepromptfeedbackdict":[0,1,2],"generatecontentresponseusagemetadata":[0,1,2],"generatecontentresponseusagemetadatadict":[0,1,2],"generated_audio_safeti":[0,1,2],"generated_content_blocklist":[0,1,2],"generated_content_prohibit":[0,1,2],"generated_content_safeti":[0,1,2],"generated_imag":[0,1,2],"generated_image_celebr":[0,1,2],"generated_image_identifiable_peopl":[0,1,2],"generated_image_minor":[0,1,2],"generated_image_prohibit":[0,1,2],"generated_image_prominent_people_detected_by_rewrit":[0,1,2],"generated_image_safeti":[0,1,2],"generated_mask":[0,1,2],"generated_oth":[0,1,2],"generated_video":[0,1,2],"generated_video_safeti":[0,1,2],"generatedcont":0,"generatedimag":[0,1,2],"generatedimagedict":[0,1,2],"generatedimagemask":[0,1,2],"generatedimagemaskdict":[0,1,2],"generatedmask":0,"generatedvideo":[0,1,2],"generatedvideodict":[0,1,2],"generateimagesconfig":[0,1,2],"generateimagesconfigdict":[0,1,2],"generateimagesrespons":[0,1,2],"generateimagesresponsedict":[0,1,2],"generatevideosconfig":[0,1,2],"generatevideosconfigdict":[0,1,2],"generatevideosoper":[0,1,2],"generatevideosrespons":[0,1,2],"generatevideosresponsedict":[0,1,2],"generatevideossourc":[0,1,2],"generatevideossourcedict":[0,1,2],"generation_complet":[0,1,2],"generation_config":[0,1,2],"generationcomplet":0,"generationconfig":[0,1,2],"generationconfigdict":[0,1,2],"generationconfigroutingconfig":[0,1,2],"generationconfigroutingconfigautoroutingmod":[0,1,2],"generationconfigroutingconfigautoroutingmodedict":[0,1,2],"generationconfigroutingconfigdict":[0,1,2],"generationconfigroutingconfigmanualroutingmod":[0,1,2],"generationconfigroutingconfigmanualroutingmodedict":[0,1,2],"generationconfigthinkingconfig":[0,1,2],"generationconfigthinkingconfigdict":[0,1,2],"generativeai":[0,1],"genericalia":0,"geospati":0,"get":[0,2],"get_current_weath":1,"get_environ":[0,1,2],"get_environment_fil":[0,1,2],"get_weather_by_loc":1,"getaccesstoken":0,"getbatchjobconfig":[0,1,2],"getbatchjobconfigdict":[0,1,2],"getcachedcontentconfig":[0,1,2],"getcachedcontentconfigdict":[0,1,2],"getdocumentconfig":[0,1,2],"getdocumentconfigdict":[0,1,2],"getfileconfig":[0,1,2],"getfileconfigdict":[0,1,2],"getfilesearchstoreconfig":[0,1,2],"getfilesearchstoreconfigdict":[0,1,2],"getmodelconfig":[0,1,2],"getmodelconfigdict":[0,1,2],"getopenidtoken":0,"getoperationconfig":[0,1,2],"getoperationconfigdict":[0,1,2],"getproxi":1,"getter":1,"gettuningjobconfig":[0,1,2],"gettuningjobconfigdict":[0,1,2],"github":[0,1],"give":1,"given":[0,1],"gl":0,"gmail":0,"go":0,"go_awai":[0,1,2],"goawai":0,"goe":0,"goo":0,"good":0,"googl":0,"google_api_kei":[0,1],"google_cloud_loc":[0,1],"google_cloud_project":[0,1],"google_genai":0,"google_genai_use_enterpris":[0,1],"google_map":[0,1,2],"google_maps_uri":[0,1,2],"google_maps_widget_context_token":[0,1,2],"google_search":[0,1,2],"google_search_dynamic_retrieval_scor":[0,1,2],"google_search_imag":[0,1,2],"google_search_retriev":[0,1,2],"google_search_web":[0,1,2],"google_service_account_auth":[0,1,2],"google_service_account_config":[0,1,2],"googleapi":[0,1],"googlemap":[0,1,2],"googlemapsdict":[0,1,2],"googlemapsgroundingtyp":[0,1,2],"googlemapsgroundingtypesdict":[0,1,2],"googlemapsplac":[0,1,2],"googlemapsplacesdict":[0,1,2],"googlemapsrout":[0,1,2],"googlemapsroutingdict":[0,1,2],"googlemapsuri":0,"googlemapswidgetcontexttoken":0,"googlerpcstatu":[0,1,2],"googlerpcstatusdict":[0,1,2],"googlesearch":[0,1,2],"googlesearchdict":[0,1,2],"googlesearchdynamicretrievalscor":0,"googlesearchretriev":[0,1,2],"googlesearchretrievaldict":[0,1,2],"googleserviceaccountconfig":0,"googlesql":0,"googletyped":[0,1,2],"googletypedatedict":[0,1,2],"grant":0,"greater":0,"green":0,"gregorian":0,"ground":0,"grounding_chunk":[0,1,2],"grounding_chunk_indic":[0,1,2],"grounding_metadata":[0,1,2],"grounding_support":[0,1,2],"grounding_typ":[0,1,2],"groundingchunk":[0,1,2],"groundingchunkcustommetadata":[0,1,2],"groundingchunkcustommetadatadict":[0,1,2],"groundingchunkdict":[0,1,2],"groundingchunkimag":[0,1,2],"groundingchunkimagedict":[0,1,2],"groundingchunkindic":0,"groundingchunkmap":[0,1,2],"groundingchunkmapsdict":[0,1,2],"groundingchunkmapsplaceanswersourc":[0,1,2],"groundingchunkmapsplaceanswersourcesauthorattribut":[0,1,2],"groundingchunkmapsplaceanswersourcesauthorattributiondict":[0,1,2],"groundingchunkmapsplaceanswersourcesdict":[0,1,2],"groundingchunkmapsplaceanswersourcesreviewsnippet":[0,1,2],"groundingchunkmapsplaceanswersourcesreviewsnippetdict":[0,1,2],"groundingchunkmapsrout":[0,1,2],"groundingchunkmapsroutedict":[0,1,2],"groundingchunkretrievedcontext":[0,1,2],"groundingchunkretrievedcontextdict":[0,1,2],"groundingchunkstringlist":[0,1,2],"groundingchunkstringlistdict":[0,1,2],"groundingchunkweb":[0,1,2],"groundingchunkwebdict":[0,1,2],"groundingfact":0,"groundingmetadata":[0,1,2],"groundingmetadatadict":[0,1,2],"groundingmetadatasourceflagginguri":[0,1,2],"groundingmetadatasourceflagginguridict":[0,1,2],"groundingsupport":[0,1,2],"groundingsupportdict":[0,1,2],"groundingtyp":0,"group":[0,1],"grpc":0,"gserviceaccount":0,"guarante":0,"guess_typ":1,"guid":0,"guidanc":[0,1,2],"guidance_scal":[0,1,2],"guidancescal":0,"ha":0,"had":0,"half":0,"hallucin":0,"handl":[0,2],"happen":0,"harass":0,"hardwar":0,"harm":0,"harm_block_method_unspecifi":[0,1,2],"harm_block_threshold_unspecifi":[0,1,2],"harm_category_civic_integr":[0,1,2],"harm_category_dangerous_cont":[0,1,2],"harm_category_harass":[0,1,2],"harm_category_hate_speech":[0,1,2],"harm_category_image_dangerous_cont":[0,1,2],"harm_category_image_h":[0,1,2],"harm_category_image_harass":[0,1,2],"harm_category_image_sexually_explicit":[0,1,2],"harm_category_jailbreak":[0,1,2],"harm_category_sexually_explicit":[0,1,2],"harm_category_unspecifi":[0,1,2],"harm_probability_unspecifi":[0,1,2],"harm_severity_high":[0,1,2],"harm_severity_low":[0,1,2],"harm_severity_medium":[0,1,2],"harm_severity_neglig":[0,1,2],"harm_severity_unspecifi":[0,1,2],"harmblockmethod":[0,1,2],"harmblockthreshold":[0,1,2],"harmcategori":[0,1,2],"harmprob":[0,1,2],"harmsever":[0,1,2],"has_end":[0,1,2],"has_succeed":[0,1,2],"has_union":[0,1,2],"hash":0,"hasunion":0,"hate":0,"hatr":0,"have":[0,1],"header":[0,1,2],"hello":[0,1],"help":0,"here":0,"hertz":0,"hi":[0,1,2],"hierarchi":0,"high":[0,1,2],"higher":0,"highest":0,"hindi":0,"hint":0,"histogram":0,"histori":0,"history_config":[0,1,2],"historyconfig":[0,1,2],"historyconfigdict":[0,1,2],"hit":0,"hold":0,"hologram":[0,1],"host":1,"hour":0,"how":0,"howev":[0,1],"html":0,"http":[0,1],"http_basic_auth":[0,1,2],"http_basic_auth_config":[0,1,2],"http_element_loc":[0,1,2],"http_in_bodi":[0,1,2],"http_in_cooki":[0,1,2],"http_in_head":[0,1,2],"http_in_path":[0,1,2],"http_in_queri":[0,1,2],"http_in_unspecifi":[0,1,2],"http_option":[0,1,2],"http_status_cod":[0,1,2],"httpbasicauthconfig":0,"httpelementloc":[0,1,2],"httpoption":[0,1,2],"httpoptionsdict":[0,1,2],"httprespons":[0,1,2],"httpresponsedict":[0,1,2],"httpretryopt":[0,1,2],"httpretryoptionsdict":[0,1,2],"https_proxi":1,"httpstatuscod":0,"httpx":[0,1],"httpx_async_cli":[0,1,2],"httpx_client":[0,1,2],"httpxasynccli":0,"httpxclient":0,"human":0,"hybrid":0,"hybrid_search":[0,1,2],"hybridsearch":0,"hyper":0,"hyper_paramet":[0,1,2],"hyperparamet":[0,1,2],"i":[0,1],"iam":0,"iana":0,"id":[0,1,2],"id_token":[0,1,2],"ident":[0,1,2],"identifi":0,"idtoken":0,"ietf":0,"ignor":0,"ignore_call_histori":[0,1,2],"ignore_kei":[0,1,2],"ignorecallhistori":0,"ignorekei":0,"imag":[0,2],"image1_file_path":0,"image2_file_path":0,"image_byt":[0,1,2],"image_config":[0,1,2],"image_count":[0,1,2],"image_data":[0,1,2],"image_file_path":0,"image_mime_typ":[0,1,2],"image_oth":[0,1,2],"image_output_opt":[0,1,2],"image_preservation_factor":[0,1,2],"image_prohibited_cont":[0,1,2],"image_prohibited_input_cont":[0,1,2],"image_recit":[0,1,2],"image_s":[0,1,2],"image_safeti":[0,1,2],"image_search":[0,1,2],"image_search_queri":[0,1,2],"image_size_five_twelv":[0,1,2],"image_size_four_k":[0,1,2],"image_size_one_k":[0,1,2],"image_size_two_k":[0,1,2],"image_size_unspecifi":[0,1,2],"image_uri":[0,1,2],"imagebyt":0,"imageconfig":[0,1,2],"imageconfigdict":[0,1,2],"imageconfigimageoutputopt":[0,1,2],"imageconfigimageoutputoptionsdict":[0,1,2],"imagecount":0,"imagedata":0,"imagedict":[0,1,2],"imagemimetyp":0,"imagen":0,"imageoutputopt":0,"imagepreservationfactor":0,"imagepromptlanguag":[0,1,2],"imageresizemod":[0,1,2],"imageresponseformat":[0,1,2],"imageresponseformatdict":[0,1,2],"images":[0,1,2],"imagesearch":[0,1,2],"imagesearchdict":[0,1,2],"imagesearchqueri":0,"imageuri":0,"immedi":0,"immut":0,"implement":[0,1],"impli":0,"import":0,"importerror":0,"importfil":0,"importfileconfig":[0,1,2],"importfileconfigdict":[0,1,2],"importfileoper":[0,1,2],"importfilerespons":[0,1,2],"importfileresponsedict":[0,1,2],"improv":0,"inact":0,"inappropri":0,"incit":0,"includ":[0,1],"include_domain":0,"include_input":0,"include_rai_reason":[0,1,2],"include_rubric_typ":0,"include_safety_attribut":[0,1,2],"include_server_side_tool_invoc":[0,1,2],"include_thought":[0,1,2],"includeraireason":0,"includesafetyattribut":0,"includeserversidetoolinvoc":0,"includethought":0,"inclus":0,"incomplete_count":[0,1,2],"incompletecount":0,"incorrect":0,"increas":[0,1],"increment":0,"independ":0,"index":[0,1,2],"indic":0,"indirect":0,"individu":0,"infer":[0,1],"inferenc":1,"inference_generation_config":[0,1,2],"inferencegenerationconfig":0,"influenc":[0,1],"info":0,"infograph":1,"inform":[0,1],"ingest":0,"inherit":0,"initi":[0,1],"initial_delai":[0,1,2],"initial_history_in_client_cont":[0,1,2],"initialdelai":0,"initialhistoryinclientcont":0,"inject":0,"inlin":[0,1,2],"inline_data":[0,1,2],"inlined_embed_content_respons":[0,1,2],"inlined_embedding_respons":0,"inlined_request":[0,1,2],"inlined_respons":[0,1,2],"inlinedata":0,"inlinedembedcontentrespons":[0,1,2],"inlinedembedcontentresponsedict":[0,1,2],"inlinedrequest":[0,1,2],"inlinedrequestdict":[0,1,2],"inlinedrespons":[0,1,2],"inlinedresponsedict":[0,1,2],"inner":1,"inpaint":0,"input":0,"input_audio_transcript":[0,1,2],"input_image_celebr":[0,1,2],"input_image_photo_realistic_child_prohibit":[0,1,2],"input_ip_prohibit":[0,1,2],"input_oth":[0,1,2],"input_text_contain_prominent_person_prohibit":[0,1,2],"input_text_ncii_prohibit":[0,1,2],"input_token_limit":[0,1,2],"input_transcript":[0,1,2],"input_uri":[0,1,2],"inputaudiotranscript":0,"inputtokenlimit":0,"inputtranscript":0,"inputuri":0,"insert":[0,1,2],"insid":0,"insignific":0,"instal":0,"instanc":0,"instanti":0,"instead":[0,1],"instruct":0,"instruction_following_v1":0,"instrument":1,"instrumentenum":1,"int":[0,1],"int32":0,"int64":0,"integ":[0,1,2],"integr":[0,1],"intend":0,"interact":[0,1,2],"interactioncompletedev":0,"interactioncreatedev":0,"interactionstatusupd":0,"interfac":1,"interim_input_transcript":[0,1,2],"interiminputtranscript":0,"interleav":0,"intermedi":0,"intern":0,"internet":0,"interpol":[0,1],"interpret":0,"interrupt":[0,1,2],"interv":[0,1,2],"intervaldict":[0,1,2],"invalid":[0,1],"invalid_argu":0,"invoc":[0,1],"invok":0,"io":[0,1],"ip":0,"irrelev":0,"is_vertex_ai":0,"isn":0,"iso":0,"issu":0,"item":[0,1,2],"iter":0,"its":[0,1],"itself":0,"j":0,"ja":[0,1,2],"jailbreak":[0,1,2],"japanes":0,"jitter":[0,1,2],"job":0,"job_state_cancel":[0,1,2],"job_state_expir":[0,1,2],"job_state_fail":[0,1,2],"job_state_partially_succeed":[0,1,2],"job_state_paus":[0,1,2],"job_state_pend":[0,1,2],"job_state_queu":[0,1,2],"job_state_run":[0,1,2],"job_state_succeed":[0,1,2],"job_state_unspecifi":[0,1,2],"job_state_upd":[0,1,2],"joberror":[0,1,2],"joberrordict":[0,1,2],"jobstat":[0,1,2],"jpeg":[0,1],"jpg":[0,1],"json":0,"json_match_express":[0,1,2],"json_path":[0,1,2],"json_schema":[0,1,2],"jsonl":[0,1],"jsonmatchexpress":0,"jsonpath":0,"jsonschema":[0,1,2],"jsonschematyp":[0,1,2],"judg":0,"judge_autorater_config":[0,1,2],"judge_model_system_instruct":[0,1,2],"judgeautoraterconfig":0,"judgemodelsysteminstruct":0,"just":0,"jwt":0,"k":0,"keep":0,"kei":[0,1,2],"key_nam":[0,1,2],"key_r":0,"keyboard":1,"keynam":0,"keyr":0,"keyword":0,"kind":0,"kl":0,"km":0,"kms_key_nam":[0,1,2],"kmskeynam":0,"know":0,"knowledg":0,"known":0,"ko":[0,1,2],"korean":0,"kwarg":0,"label":[0,1,2],"lai":0,"landscap":[0,1,2],"languag":[0,1,2],"language_auto":[0,1,2],"language_cod":[0,1,2],"language_hint":[0,1,2],"language_unspecifi":[0,1,2],"languageauto":[0,1,2],"languageautodict":[0,1,2],"languagecod":0,"languagehint":[0,1,2],"languagehintsdict":[0,1,2],"larg":0,"larger":0,"largest":0,"last":0,"last_consumed_client_message_index":[0,1,2],"last_event_id":0,"last_fram":[0,1,2],"last_pag":[0,1,2],"last_version_id":0,"lastconsumedclientmessageindex":0,"lastfram":0,"lastpag":0,"lat_lng":[0,1,2],"latenc":0,"latent":0,"later":0,"latest":0,"latitud":[0,1,2],"latlng":[0,1,2],"latlngdict":[0,1,2],"latter":0,"lazi":0,"le":0,"lead":0,"leakag":0,"learn":0,"learning_r":[0,1,2],"learning_rate_multipli":[0,1,2],"learningr":0,"learningratemultipli":0,"least":0,"leav":1,"left":[0,1,2],"legaci":[0,1,2],"legal":0,"legal_terms_and_agr":[0,1,2],"len":0,"length":0,"less":0,"let":[0,1],"letter":0,"level":[0,1,2],"leverag":0,"librari":[0,1],"licens":[0,1,2],"lifecycl":0,"light":0,"like":[0,1],"likelihood":0,"limit":0,"line":0,"linear":0,"link":0,"list":[0,2],"list_environ":[0,1,2],"list_execut":[0,1,2],"listbatchjobsconfig":[0,1,2],"listbatchjobsconfigdict":[0,1,2],"listbatchjobsrespons":[0,1,2],"listbatchjobsresponsedict":[0,1,2],"listcachedcontentsconfig":[0,1,2],"listcachedcontentsconfigdict":[0,1,2],"listcachedcontentsrespons":[0,1,2],"listcachedcontentsresponsedict":[0,1,2],"listdocumentsconfig":[0,1,2],"listdocumentsconfigdict":[0,1,2],"listdocumentsrespons":[0,1,2],"listdocumentsresponsedict":[0,1,2],"listfil":0,"listfilesconfig":[0,1,2],"listfilesconfigdict":[0,1,2],"listfilesearchstoresconfig":[0,1,2],"listfilesearchstoresconfigdict":[0,1,2],"listfilesearchstoresrespons":[0,1,2],"listfilesearchstoresresponsedict":[0,1,2],"listfilesrespons":[0,1,2],"listfilesresponsedict":[0,1,2],"listmodelsconfig":[0,1,2],"listmodelsconfigdict":[0,1,2],"listmodelsconfigordict":0,"listmodelsrespons":[0,1,2],"listmodelsresponsedict":[0,1,2],"listtrigg":0,"listtriggerexecut":0,"listtuningjob":0,"listtuningjobsconfig":[0,1,2],"listtuningjobsconfigdict":[0,1,2],"listtuningjobsrespons":[0,1,2],"listtuningjobsresponsedict":[0,1,2],"listwebhook":0,"liter":0,"littl":0,"live":[1,2],"live_connect_constraint":[0,1,2],"live_constrained_paramet":0,"liveclientcont":[0,1,2],"liveclientcontentdict":[0,1,2],"liveclientmessag":[0,1,2],"liveclientmessagedict":[0,1,2],"liveclientrealtimeinput":[0,1,2],"liveclientrealtimeinputdict":[0,1,2],"liveclientsetup":[0,1,2],"liveclientsetupdict":[0,1,2],"liveclienttoolrespons":[0,1,2],"liveclienttoolresponsedict":[0,1,2],"liveconnectconfig":[0,1,2],"liveconnectconfigdict":[0,1,2],"liveconnectconstraint":[0,1,2],"liveconnectconstraintsdict":[0,1,2],"liveconnectparamet":[0,1,2],"liveconnectparametersdict":[0,1,2],"liveephemeralparamet":0,"livegeneratecontentsetup":0,"livemusicclientcont":[0,1,2],"livemusicclientcontentdict":[0,1,2],"livemusicclientmessag":[0,1,2],"livemusicclientmessagedict":[0,1,2],"livemusicclientsetup":[0,1,2],"livemusicclientsetupdict":[0,1,2],"livemusicconnectparamet":[0,1,2],"livemusicconnectparametersdict":[0,1,2],"livemusicfilteredprompt":[0,1,2],"livemusicfilteredpromptdict":[0,1,2],"livemusicgenerationconfig":[0,1,2],"livemusicgenerationconfigdict":[0,1,2],"livemusicplaybackcontrol":[0,1,2],"livemusicservercont":[0,1,2],"livemusicservercontentdict":[0,1,2],"livemusicservermessag":[0,1,2],"livemusicservermessagedict":[0,1,2],"livemusicserversetupcomplet":[0,1,2],"livemusicserversetupcompletedict":[0,1,2],"livemusicsetconfigparamet":[0,1,2],"livemusicsetconfigparametersdict":[0,1,2],"livemusicsetupcomplet":0,"livemusicsetweightedpromptsparamet":[0,1,2],"livemusicsetweightedpromptsparametersdict":[0,1,2],"livemusicsourcemetadata":[0,1,2],"livemusicsourcemetadatadict":[0,1,2],"livesendrealtimeinputparamet":[0,1,2],"livesendrealtimeinputparametersdict":[0,1,2],"liveservercont":[0,1,2],"liveservercontentdict":[0,1,2],"liveservergoawai":[0,1,2],"liveservergoawaydict":[0,1,2],"liveservermessag":[0,1,2],"liveservermessagedict":[0,1,2],"liveserversessionresumptionupd":[0,1,2],"liveserversessionresumptionupdatedict":[0,1,2],"liveserversetupcomplet":[0,1,2],"liveserversetupcompletedict":[0,1,2],"liveservertoolcal":[0,1,2],"liveservertoolcallcancel":[0,1,2],"liveservertoolcallcancellationdict":[0,1,2],"liveservertoolcalldict":[0,1,2],"llm":0,"llm_based_metric_spec":[0,1,2],"llm_ranker":[0,1,2],"llmbasedmetricspec":[0,1,2],"llmbasedmetricspecdict":[0,1,2],"llmranker":0,"load":0,"local":0,"locat":[0,1,2],"lock":0,"lock_additional_field":[0,1,2],"lockadditionalfield":0,"log":0,"log_prob":[0,1,2],"log_probability_sum":[0,1,2],"logarithm":0,"logic":0,"logprob":[0,1,2],"logprobabilitysum":0,"logprobs_result":[0,1,2],"logprobsresult":[0,1,2],"logprobsresultcandid":[0,1,2],"logprobsresultcandidatedict":[0,1,2],"logprobsresultdict":[0,1,2],"logprobsresulttopcandid":[0,1,2],"logprobsresulttopcandidatesdict":[0,1,2],"london":[0,1],"long":0,"longer":[0,1],"longitud":[0,1,2],"look":0,"lookup":0,"loop":1,"lora":0,"lose":0,"loss":0,"lossless":[0,1,2],"lot":0,"low":[0,1,2],"lower":[0,1],"lowercas":0,"m":1,"machin":0,"made":0,"mai":[0,1],"main":[0,1],"maintain":0,"major":0,"make":[0,1],"malformed_function_cal":[0,1,2],"man":0,"manag":0,"mani":0,"manual":0,"manual_mod":[0,1,2],"manualmod":0,"map":[0,1,2],"mark":0,"markdown":0,"marker":0,"marketplac":0,"mask":[0,1,2],"mask_dil":[0,1,2],"mask_imag":0,"mask_image_config":[0,1,2],"mask_mod":[0,1,2],"mask_mode_background":[0,1,2],"mask_mode_default":[0,1,2],"mask_mode_foreground":[0,1,2],"mask_mode_semant":[0,1,2],"mask_mode_user_provid":[0,1,2],"mask_ref_imag":[0,1],"mask_reference_config":0,"maskdil":0,"maskimageconfig":0,"maskmod":0,"maskreferenceconfig":[0,1,2],"maskreferenceconfigdict":[0,1,2],"maskreferenceimag":[0,1,2],"maskreferenceimagedict":[0,1,2],"maskreferencemod":[0,1,2],"master":0,"match":[0,1],"match_oper":[0,1,2],"match_operation_unspecifi":[0,1,2],"matchoper":[0,1,2],"materi":0,"math":0,"matter":0,"matur":0,"max":[0,1,2],"max_age_second":0,"max_consecutive_failur":0,"max_delai":[0,1,2],"max_item":[0,1,2],"max_length":[0,1,2],"max_output_token":[0,1,2],"max_overlap_token":[0,1,2],"max_predict":[0,1,2],"max_properti":[0,1,2],"max_regeneration_reach":[0,1,2],"max_result":[0,1,2],"max_temperatur":[0,1,2],"max_token":[0,1,2],"max_tokens_per_chunk":[0,1,2],"maxdelai":0,"maximum":[0,1,2],"maximum_remote_cal":[0,1,2],"maximumm":0,"maximumremotecal":0,"maxitem":0,"maxlength":0,"maxoutputtoken":0,"maxoverlaptoken":0,"maxpredict":0,"maxproperti":0,"maxresult":0,"maxtemperatur":0,"maxtokensperchunk":0,"mcp":0,"mcp_server":[0,1,2],"mcpserver":[0,1,2],"mcpserverdict":[0,1,2],"me":1,"mean":[0,1,2],"meaning":0,"meant":0,"measur":0,"mechan":0,"media":[0,1,2],"media_chunk":[0,1,2],"media_id":[0,1,2],"media_resolut":[0,1,2],"media_resolution_high":[0,1,2],"media_resolution_low":[0,1,2],"media_resolution_medium":[0,1,2],"media_resolution_ultra_high":[0,1,2],"media_resolution_unspecifi":[0,1,2],"mediachunk":0,"mediaid":0,"mediamod":[0,1,2],"median":[0,1,2],"mediaresolut":[0,1,2],"medium":[0,1,2],"meet":0,"member":0,"memor":0,"mention":0,"merg":0,"messag":[0,2],"metadata":[0,1,2],"metadata_filt":[0,1,2],"metadatafilt":0,"meter":0,"method":[0,1,2],"metric":[0,1,2],"metric_prompt_templ":[0,1,2],"metric_spec_nam":[0,1,2],"metric_spec_paramet":[0,1,2],"metricdict":[0,1,2],"metricprompttempl":0,"metricresult":0,"metricspecnam":0,"metricspecparamet":0,"microphon":0,"might":[0,1],"millisecond":0,"mime":[0,1],"mime_typ":[0,1,2],"mimetyp":[0,1],"min":[0,1,2],"min_item":[0,1,2],"min_length":[0,1,2],"min_properti":[0,1,2],"minim":[0,1,2],"minimum":[0,1,2],"minitem":0,"minlength":0,"minor":0,"minproperti":0,"minut":0,"miss":0,"mission":0,"mix":0,"mixtur":0,"mldev":0,"mobil":0,"modal":[0,1,2],"modality_unspecifi":[0,1,2],"modalitytokencount":[0,1,2],"modalitytokencountdict":[0,1,2],"mode":[0,2],"mode_dynam":[0,1,2],"mode_unspecifi":[0,1,2],"model":2,"model_armor":[0,1,2],"model_armor_config":[0,1,2],"model_cont":0,"model_id":1,"model_nam":[0,1,2],"model_post_init":[0,1,2],"model_routing_prefer":[0,1,2],"model_selection_config":[0,1,2],"model_stag":[0,1,2],"model_stage_unspecifi":[0,1,2],"model_statu":[0,1,2],"model_turn":[0,1,2],"model_vers":[0,1,2],"modelarmorconfig":[0,1,2],"modelarmorconfigdict":[0,1,2],"modelcont":[0,1,2],"modeldict":[0,1,2],"modelnam":0,"modelroutingprefer":0,"modelselectionconfig":[0,1,2],"modelselectionconfigdict":[0,1,2],"modelstag":[0,1,2],"modelstatu":[0,1,2],"modelstatusdict":[0,1,2],"modelturn":0,"modelvers":0,"modif":0,"modul":[1,2],"moment":0,"month":[0,1,2],"more":[0,1],"most":0,"mostli":0,"mount":0,"mp3":0,"mp4":[0,1],"msg":0,"much":0,"multi":[0,1],"multi_speaker_voice_config":[0,1,2],"multimod":[0,1],"multimodal_embed":0,"multipl":[0,1],"multiplex":0,"multipli":0,"multispeakervoiceconfig":[0,1,2],"multispeakervoiceconfigdict":[0,1,2],"music":[0,1,2],"music_generation_config":[0,1,2],"music_generation_mod":[0,1,2],"music_generation_mode_unspecifi":[0,1,2],"musicgenerationconfig":0,"musicgenerationmod":[0,1,2],"must":[0,1],"mute_bass":[0,1,2],"mute_drum":[0,1,2],"mutebass":0,"mutedrum":0,"mutual":0,"my":[0,1],"my_enterprise_multimodal_dataset":1,"my_model":0,"myrequest":1,"n":0,"n1":0,"n3":0,"na":0,"naccess":0,"naddit":0,"naddition":0,"nall":0,"name":[0,1,2],"nand":0,"nani":0,"nanswer":0,"napi":0,"nassist":0,"nativ":0,"nattribut":0,"natur":0,"naudio":0,"nautomat":0,"nbe":0,"nbegin":0,"nby":0,"ncall":0,"ncase":0,"ncii":0,"nclient":0,"ncode":0,"ncompar":0,"ncompat":0,"nconfigur":0,"ncontain":0,"ncontent":0,"ncontext":0,"ncontrol":0,"ncorpu":0,"ncorrespond":0,"ncurrent":0,"ndai":0,"ndata":0,"ndatastor":0,"ndefault":0,"ndegre":0,"ndeprec":0,"ndesign":0,"ndimens":0,"ndisabl":0,"necessari":[0,1],"need":[0,1],"need_more_input":[0,1,2],"negative_prompt":[0,1,2],"negativeprompt":0,"neglig":[0,1,2],"nenable_control_image_comput":0,"nend":0,"nenum":0,"nenumer":0,"neon":[0,1],"network":0,"new":[0,1],"new_handl":[0,1,2],"new_session_expire_tim":[0,1,2],"newer":0,"newhandl":0,"newli":0,"newsessionexpiretim":0,"nexactli":0,"nexampl":0,"next":0,"next_pag":1,"next_page_token":[0,1,2],"nextgen":0,"nextpagetoken":0,"nfield":0,"nfile":0,"nfilter":0,"nfind":0,"nfor":0,"nfrom":0,"ngener":0,"ngeneratecont":0,"ngeneratecontentrespons":0,"ngoogl":0,"nhistori":0,"nhttp":0,"ni":0,"nif":0,"night":1,"nimag":0,"nin":0,"ninclud":0,"nindic":0,"nindividu":0,"nine":0,"ninform":0,"ninject":0,"ninsignific":0,"ninstanc":0,"ninstead":0,"ninstruct":0,"nit":0,"nl":0,"nl_question_answ":[0,1,2],"nmai":0,"nmake":0,"nmatch":0,"nmax":0,"nmessag":0,"nmethod":0,"nmetric":0,"nmime":0,"nmodel":0,"nnext":0,"nnot":0,"nnote":0,"nnsee":0,"no_auth":[0,1,2],"no_imag":[0,1,2],"no_interrupt":[0,1,2],"nobject":0,"node":0,"nof":0,"nois":0,"non":0,"non_block":[0,1,2],"none":[0,1,2],"nonetyp":0,"nonli":0,"nor":0,"normal":0,"north":0,"note":[0,1],"notebook":0,"notif":0,"now":[0,1],"npairwis":0,"npars":0,"npredict":0,"npresenc":0,"npretrain":0,"nproduct":0,"nprotojson":0,"nprovid":0,"npx":1,"nqueryplac":0,"nreinforcementtuningexampl":0,"nrepres":0,"nrespons":0,"nreturn":0,"nreward":0,"nsame":0,"nsandbox":0,"nsee":0,"nserver":0,"nstorag":0,"nsubject":0,"nsupport":0,"nsystem":0,"ntext":0,"nthat":0,"nthe":0,"nthese":0,"nthi":0,"nthree":0,"ntime":0,"nto":0,"ntoken":0,"ntool":0,"ntrain":0,"nturn":0,"ntype":0,"nuanc":0,"nucleu":0,"null":[0,1,2],"null_valu":[0,1,2],"nullabl":[0,1,2],"nullvalu":0,"num_hit":[0,1,2],"num_token":[0,1,2],"number":[0,1,2],"number_of_imag":[0,1,2],"number_of_video":[0,1,2],"number_valu":[0,1,2],"numberofimag":0,"numberofvideo":0,"numbervalu":0,"numer":0,"numeric_valu":[0,1,2],"numericvalu":0,"numhit":0,"numpi":0,"numtoken":0,"nunspecifi":0,"nuse":0,"nuser":0,"nwere":0,"nwgs84":0,"nwhen":0,"nwill":0,"nwith":0,"nwithin":0,"o":[0,1],"oa":0,"oauth":[0,1,2],"oauth_config":[0,1,2],"oauthconfig":0,"object":[0,1,2],"objection":0,"observ":0,"obtain":0,"occur":0,"ocr":0,"off":[0,1,2],"official_languag":1,"offset":0,"often":0,"oidc":0,"oidc_auth":[0,1,2],"oidc_config":[0,1,2],"oidcconfig":0,"ok":0,"old":0,"omit":0,"on_demand":[0,1,2],"on_demand_flex":[0,1,2],"on_demand_prior":[0,1,2],"onc":[0,1],"one":[0,1],"one_of":[0,1,2],"oneof":0,"ongo":[0,1],"onli":0,"onlin":0,"only_bass_and_drum":[0,1,2],"onlybassanddrum":0,"ontologi":0,"opaqu":0,"open":[0,1],"openapi":0,"openid":0,"oper":[0,1,2],"operation_nam":[0,1,2],"operationnam":0,"optim":[0,1,2],"option":0,"opu":0,"order":[0,1],"org":0,"organ":0,"orient":0,"origami":0,"origin":0,"oss":0,"other":[0,2],"otherwis":0,"out":0,"outcom":[0,1,2],"outcome_deadline_exceed":[0,1,2],"outcome_fail":[0,1,2],"outcome_ok":[0,1,2],"outcome_unspecifi":[0,1,2],"outpaint":[0,1,2],"output":[0,2],"output_audio_transcript":[0,1,2],"output_compression_qu":[0,1,2],"output_config":[0,1,2],"output_dimension":[0,1,2],"output_gcs_uri":[0,1,2],"output_image_ip_prohibit":[0,1,2],"output_info":[0,1,2],"output_mime_typ":[0,1,2],"output_token_limit":[0,1,2],"output_transcript":[0,1,2],"output_uri":[0,1,2],"output_uri_prefix":[0,1,2],"outputaudiotranscript":0,"outputcompressionqu":0,"outputconfig":[0,1,2],"outputconfigdict":[0,1,2],"outputdimension":0,"outputgcsuri":0,"outputinfo":[0,1,2],"outputinfodict":[0,1,2],"outputmimetyp":0,"outputtokenlimit":0,"outputtranscript":0,"outputuri":0,"outputuriprefix":0,"outsid":0,"over":0,"overal":0,"overall_reward":[0,1,2],"overallreward":0,"overlap":0,"overli":0,"overload":0,"overrid":0,"overridden":0,"override_replay_id":[0,1,2],"overridereplayid":0,"overs":0,"overwritten":0,"overwritten_threshold":[0,1,2],"overwrittenthreshold":0,"own":0,"ownership":0,"p5":[0,1,2],"p95":[0,1,2],"pad":[0,1,2],"page":0,"page_numb":[0,1,2],"page_s":[0,1,2],"page_span":[0,1,2],"page_token":[0,1,2],"pagenumb":0,"pager":0,"pages":0,"pagespan":0,"pagetoken":0,"pagin":0,"pai":0,"pair":0,"pairwis":0,"pairwise_choic":[0,1,2],"pairwise_choice_unspecifi":[0,1,2],"pairwise_metric_result":[0,1,2],"pairwisechoic":[0,1,2],"pairwisemetricresult":[0,1,2],"pairwisemetricresultdict":[0,1,2],"pairwisemetricspec":[0,1,2],"pairwisemetricspecdict":[0,1,2],"paragraph":0,"parallel":0,"parallel_ai_search":[0,1,2],"parallelaisearch":0,"param":0,"param1":0,"param2":0,"paramet":[0,1,2],"parameter_nam":[0,1,2],"parameternam":0,"parameters_json_schema":[0,1,2],"parametersjsonschema":0,"parent":[0,1,2],"pari":0,"parrot":0,"pars":[0,1,2],"parse_and_reduce_fn":[0,1,2],"parse_response_config":[0,1,2],"parse_typ":[0,1,2],"parseandreducefn":0,"parsed_response_conversion_scor":[0,1,2],"parsedresponseconversionscor":0,"parser":0,"parseresponseconfig":0,"parsetyp":0,"parsing_funct":[0,1,2],"parsingfunct":0,"part":[0,2],"part_index":[0,1,2],"part_metadata":[0,1,2],"partdict":[0,1,2],"parti":0,"partial":0,"partial_arg":[0,1,2],"partial_match":[0,1,2],"partialarg":[0,1,2],"partialargdict":[0,1,2],"particular":0,"particularli":0,"partindex":0,"partmediaresolut":[0,1,2],"partmediaresolutiondict":[0,1,2],"partmediaresolutionlevel":[0,1,2],"partmetadata":0,"partner":0,"partner_model_tuning_spec":[0,1,2],"partnermodeltuningspec":[0,1,2],"partnermodeltuningspecdict":[0,1,2],"partunion":1,"pass":[0,1],"password":[0,1],"path":[0,1],"pathlib":0,"pattern":[0,1,2],"paus":[0,1,2],"paywal":0,"pcm":0,"pdf":[0,1],"peft":0,"pem":1,"penal":0,"pending_documents_count":[0,1,2],"pendingdocumentscount":0,"peopl":0,"per":0,"perceiv":0,"percentag":0,"percentil":0,"percentile_p90":[0,1,2],"percentile_p95":[0,1,2],"percentile_p99":[0,1,2],"percuss":1,"perform":[0,1],"permiss":0,"person":0,"person_gener":[0,1,2],"person_imag":[0,1,2],"persongener":[0,1,2],"personimag":0,"pet":0,"petal":0,"philschmid":1,"phish_block_threshold_unspecifi":[0,1,2],"phishblockthreshold":[0,1,2],"photo":0,"photo_uri":[0,1,2],"photographi":0,"photouri":0,"phrase":0,"pick":1,"piec":0,"pil":0,"ping":[0,1,2],"pip":1,"pipelin":0,"pipeline_job":[0,1,2],"pipeline_root_directori":[0,1,2],"pipelinejob":0,"pipelinerootdirectori":0,"pixel":0,"place":[0,1,2],"place_answer_sourc":[0,1,2],"place_id":[0,1,2],"placeanswersourc":0,"placehold":0,"placeid":0,"plai":[0,1,2],"plain":0,"plan":0,"plane":1,"platform":[0,1],"play_audio_chunk":0,"playback":0,"playback_control":[0,1,2],"playback_control_unspecifi":[0,1,2],"playbackcontrol":0,"pleas":[0,1],"png":[0,1],"point":0,"pointwis":0,"pointwise_metric_result":[0,1,2],"pointwise_metric_spec":[0,1,2],"pointwisemetricresult":[0,1,2],"pointwisemetricresultdict":[0,1,2],"pointwisemetricspec":[0,1,2],"pointwisemetricspecdict":[0,1,2],"polici":0,"poll":1,"polylin":0,"polylinealgorithm":0,"popul":[0,1],"port":1,"portrait":[0,1,2],"portugues":0,"posit":0,"positive_prompt_safety_attribut":[0,1,2],"positivepromptsafetyattribut":0,"possibl":0,"post":0,"potenti":0,"power":0,"practic":0,"pre":0,"pre_tuned_model":[0,1,2],"pre_tuned_model_checkpoint_id":[0,1,2],"prebuilt":0,"prebuilt_voice_config":[0,1,2],"prebuiltvoiceconfig":[0,1,2],"prebuiltvoiceconfigdict":[0,1,2],"preced":[0,1],"predefin":0,"predefined_metric_spec":[0,1,2],"predefined_rubric_generation_spec":[0,1,2],"predefinedmetricspec":[0,1,2],"predefinedmetricspecdict":[0,1,2],"predefinedrubricgenerationspec":0,"predict":[0,2],"predictions_timestamp":0,"predictionservic":0,"predictor":0,"preemptiv":0,"prefer":[0,1],"preference_optimization_data_stat":[0,1,2],"preference_optimization_spec":[0,1,2],"preference_tun":[0,1,2],"preferenceoptimizationdatastat":[0,1,2],"preferenceoptimizationdatastatsdict":[0,1,2],"preferenceoptimizationhyperparamet":[0,1,2],"preferenceoptimizationhyperparametersdict":[0,1,2],"preferenceoptimizationspec":[0,1,2],"preferenceoptimizationspecdict":[0,1,2],"prefil":0,"prefix":0,"prefix_padding_m":[0,1,2],"prefix_turn":0,"prefixitem":0,"prefixpaddingm":0,"prepar":0,"preprocess":0,"presenc":0,"presence_penalti":[0,1,2],"presencepenalti":0,"present":0,"preserv":0,"pretrain":0,"pretunedmodel":[0,1,2],"pretunedmodelcheckpointid":0,"pretunedmodeldict":[0,1,2],"prevent":0,"preview":[0,1,2],"previou":[0,1],"previous":0,"previous_interaction_id":0,"price":0,"primit":0,"print":[0,1],"prioriti":[0,1,2],"prioritize_cost":[0,1,2],"prioritize_qu":[0,1,2],"privat":0,"pro":[0,1],"proactiv":[0,1,2],"proactive_audio":[0,1,2],"proactiveaudio":0,"proactivityconfig":[0,1,2],"proactivityconfigdict":[0,1,2],"probability_scor":[0,1,2],"probabilityscor":0,"probabl":[0,1,2],"problem":0,"proce":0,"process":[0,1,2],"produc":0,"product":0,"product_imag":[0,1,2],"productimag":[0,1,2],"productimagedict":[0,1,2],"profil":[0,1],"program":0,"progress":0,"prohibit":0,"prohibited_cont":[0,1,2],"prohibited_input_cont":[0,1,2],"project":[0,1,2],"projectid":0,"projectoper":[0,1,2],"projectoperationdict":[0,1,2],"promin":0,"prominent_peopl":[0,1,2],"prominent_people_unspecifi":[0,1,2],"prominentpeopl":[0,1,2],"promot":0,"prompt":[0,1,2],"prompt_dataset_uri":[0,1,2],"prompt_feedback":[0,1,2],"prompt_templ":[0,1,2],"prompt_template_nam":[0,1,2],"prompt_token_count":[0,1,2],"prompt_tokens_detail":[0,1,2],"promptdataseturi":0,"promptfeedback":0,"promptmessag":0,"prompttempl":0,"prompttemplatenam":0,"prompttokencount":0,"prompttokensdetail":0,"propag":0,"properli":1,"properti":[0,1,2],"property_ord":[0,1,2],"propertyord":0,"protect":0,"proto":0,"protobuf":0,"protocol":0,"protojson":0,"provid":0,"provis":0,"provisioned_throughput":[0,1,2],"proxy_uri":1,"pt":[0,1,2],"public":[0,1],"publication_d":[0,1,2],"publicationd":0,"publish":0,"pubsub":0,"pubsub_top":[0,1,2],"pubsubtop":0,"purpos":0,"put":1,"pydant":0,"pydantic_cor":0,"pyguid":0,"python":[0,2],"python_code_assert":[0,1,2],"python_code_snippet":[0,1,2],"pythoncodesnippet":0,"pyyaml":0,"q":1,"q2":0,"q3":0,"qualifi":0,"qualiti":[0,1,2],"queri":0,"query_bas":[0,1,2],"querybas":0,"queryplac":0,"question":[0,1],"queue":0,"quickli":0,"quickstart":0,"quot":[0,1],"quota":0,"rag":0,"rag_chunk":[0,1,2],"rag_corpora":[0,1,2],"rag_corpu":[0,1,2],"rag_file_id":[0,1,2],"rag_resourc":[0,1,2],"rag_retrieval_config":[0,1,2],"ragchunk":[0,1,2],"ragchunkdict":[0,1,2],"ragchunkpagespan":[0,1,2],"ragchunkpagespandict":[0,1,2],"ragcorpora":0,"ragcorpu":0,"ragfil":0,"ragfileid":0,"ragresourc":0,"ragretrievalconfig":[0,1,2],"ragretrievalconfigdict":[0,1,2],"ragretrievalconfigfilt":[0,1,2],"ragretrievalconfigfilterdict":[0,1,2],"ragretrievalconfighybridsearch":[0,1,2],"ragretrievalconfighybridsearchdict":[0,1,2],"ragretrievalconfigrank":[0,1,2],"ragretrievalconfigrankingdict":[0,1,2],"ragretrievalconfigrankingllmrank":[0,1,2],"ragretrievalconfigrankingllmrankerdict":[0,1,2],"ragretrievalconfigrankingrankservic":[0,1,2],"ragretrievalconfigrankingrankservicedict":[0,1,2],"rai":0,"rai_filtered_reason":[0,1,2],"rai_media_filtered_count":[0,1,2],"rai_media_filtered_reason":[0,1,2],"raifilteredreason":0,"raimediafilteredcount":0,"raimediafilteredreason":0,"raini":1,"rais":[0,1],"raise_error_on_unsupported_field":0,"ram":0,"ran":0,"random":[0,1],"randomli":0,"rang":0,"rank":[0,1,2],"rank_servic":[0,1,2],"ranker":0,"rankservic":0,"rate":0,"rather":[0,1],"ratio":0,"raw":0,"raw_output":[0,1,2],"raw_ref_imag":[0,1],"rawoutput":[0,1,2],"rawoutputdict":[0,1,2],"rawreferenceimag":[0,1,2],"rawreferenceimagedict":[0,1,2],"rb":1,"re":[0,1],"reach":0,"read":[0,1],"read_audio":0,"read_byt":0,"readabl":0,"readi":0,"real":0,"realist":0,"realtim":0,"realtime_input":[0,1,2],"realtime_input_config":[0,1,2],"realtimeinput":0,"realtimeinputconfig":[0,1,2],"realtimeinputconfigdict":[0,1,2],"reason":0,"receiv":[0,1,2],"recent":0,"recit":[0,1,2],"recogn":0,"recognit":0,"recommend":[0,1],"reconnect":0,"recontext":0,"recontext_imag":[0,1,2],"recontextimageconfig":[0,1,2],"recontextimageconfigdict":[0,1,2],"recontextimagerespons":[0,1,2],"recontextimageresponsedict":[0,1,2],"recontextimagesourc":[0,1,2],"recontextimagesourcedict":[0,1,2],"recontextu":0,"record":0,"rectangular":0,"red":0,"reduc":[0,1],"reduct":0,"ref":[0,1,2],"refer":[0,2],"referenc":0,"reference_id":[0,1,2],"reference_imag":[0,1,2],"reference_typ":[0,1,2],"referenceid":0,"referenceimag":0,"referencetyp":0,"refin":0,"reflect":[0,1],"refram":0,"regardless":0,"regener":0,"regex":0,"regex_contain":[0,1,2],"regex_extract":[0,1,2],"regex_extract_express":[0,1,2],"regexextractexpress":0,"regexp_contain":0,"regexp_extract":0,"region":0,"regist":[0,1,2],"registerfilesconfig":[0,1,2],"registerfilesconfigdict":[0,1,2],"registerfilesrespons":[0,1,2],"registerfilesresponsedict":[0,1,2],"regular":[0,1,2],"reinforc":0,"reinforcement_tun":[0,1,2],"reinforcement_tuning_data_stat":[0,1,2],"reinforcement_tuning_spec":[0,1,2],"reinforcement_tuning_thinking_level_unspecifi":[0,1,2],"reinforcement_tuning_user_dataset_exampl":[0,1,2],"reinforcementtuningautoraterscor":[0,1,2],"reinforcementtuningautoraterscorerdict":[0,1,2],"reinforcementtuningautoraterscorerexactmatchscor":[0,1,2],"reinforcementtuningautoraterscorerexactmatchscorerdict":[0,1,2],"reinforcementtuningautoraterscorerparsedresponseconversionscor":[0,1,2],"reinforcementtuningautoraterscorerparsedresponseconversionscorerdict":[0,1,2],"reinforcementtuningcloudrunrewardscor":[0,1,2],"reinforcementtuningcloudrunrewardscorerdict":[0,1,2],"reinforcementtuningcodeexecutionrewardscor":[0,1,2],"reinforcementtuningcodeexecutionrewardscorerdict":[0,1,2],"reinforcementtuningdatastat":0,"reinforcementtuningexampl":[0,1,2],"reinforcementtuningexampledict":[0,1,2],"reinforcementtuninghyperparamet":[0,1,2],"reinforcementtuninghyperparametersdict":[0,1,2],"reinforcementtuningparseresponseconfig":[0,1,2],"reinforcementtuningparseresponseconfigdict":[0,1,2],"reinforcementtuningrewardinfo":[0,1,2],"reinforcementtuningrewardinfodict":[0,1,2],"reinforcementtuningspec":[0,1,2],"reinforcementtuningspecdict":[0,1,2],"reinforcementtuningstringmatchrewardscor":[0,1,2],"reinforcementtuningstringmatchrewardscorerdict":[0,1,2],"reinforcementtuningstringmatchrewardscorerjsonmatchexpress":[0,1,2],"reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict":[0,1,2],"reinforcementtuningstringmatchrewardscorerstringmatchexpress":[0,1,2],"reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict":[0,1,2],"reinforcementtuningthinkinglevel":[0,1,2],"reinforcementtuninguserdatasetexampl":[0,1,2],"reinforcementtuninguserdatasetexamplesdict":[0,1,2],"reject":0,"rel":0,"relat":0,"relative_publish_time_descript":[0,1,2],"relativepublishtimedescript":0,"releas":[0,1],"relev":0,"reli":0,"remain":0,"remot":[0,1],"remov":[0,1,2],"remove_stat":[0,1,2],"render":0,"rendered_cont":[0,1,2],"rendered_part":[0,1,2],"renderedcont":0,"renderedpart":0,"reopen":0,"repeat":0,"repeatedli":0,"repetit":0,"replac":0,"replai":0,"replay_id":[0,1,2],"replayfil":[0,1,2],"replayfiledict":[0,1,2],"replayid":0,"replayinteract":[0,1,2],"replayinteractiondict":[0,1,2],"replayrequest":[0,1,2],"replayrequestdict":[0,1,2],"replayrespons":[0,1,2],"replayresponsedict":[0,1,2],"replays_directori":[0,1,2],"repli":0,"replic":0,"replicated_voice_config":[0,1,2],"replicatedvoiceconfig":[0,1,2],"replicatedvoiceconfigdict":[0,1,2],"repo":0,"report":0,"repositori":0,"repres":0,"represent":0,"reproduc":0,"request":[0,2],"request_1":1,"request_2":1,"requir":[0,1,2],"requires_act":0,"rerank":0,"reset":0,"reset_context":[0,1,2],"resiz":0,"resize_mod":[0,1,2],"resizemod":0,"resolut":[0,1,2],"resourc":[1,2],"resourcescop":[0,1,2],"respect":[0,1],"respond":[0,1],"respons":[0,2],"response1":1,"response2":1,"response3":1,"response_1":[0,1],"response_2":[0,1],"response_format":[0,1,2],"response_id":[0,1,2],"response_json_schema":[0,1,2],"response_logprob":[0,1,2],"response_mime_typ":[0,1,2],"response_mod":[0,1,2],"response_parse_type_unspecifi":[0,1,2],"response_reject":[0,1,2],"response_schema":[0,1,2],"response_str":0,"response_template_nam":[0,1,2],"response_token_count":[0,1,2],"response_tokens_detail":[0,1,2],"responseformat":[0,1,2],"responseformatdict":[0,1,2],"responseid":0,"responsejsonschema":0,"responselogprob":0,"responsemimetyp":0,"responsemod":0,"responseparsetyp":[0,1,2],"responseschema":0,"responsetemplatenam":0,"responsetokencount":0,"responsetokensdetail":0,"responsiv":0,"rest":[0,1],"restart":0,"restor":0,"restrict":0,"result":[0,1,2],"result_parser_config":[0,1,2],"resultparserconfig":0,"resum":[0,1,2],"resumpt":0,"retain":0,"retir":[0,1,2],"retirement_tim":[0,1,2],"retirementtim":0,"retri":0,"retriev":[0,1,2],"retrieval_config":[0,1,2],"retrieval_docu":0,"retrieval_metadata":[0,1,2],"retrieval_queri":[0,1,2],"retrievalconfig":[0,1,2],"retrievalconfigdict":[0,1,2],"retrievaldict":[0,1,2],"retrievalmetadata":[0,1,2],"retrievalmetadatadict":[0,1,2],"retrievalqueri":0,"retrieved_context":[0,1,2],"retrieved_url":[0,1,2],"retrievedcontext":0,"retrievedurl":0,"retry_opt":[0,1,2],"retryabl":0,"retryopt":0,"return":[0,1],"return_raw_output":[0,1,2],"returnrawoutput":0,"reus":0,"reusabl":0,"review":[0,1,2],"review_id":[0,1,2],"review_snippet":[0,1,2],"reviewid":0,"reviewsnippet":0,"revoc":0,"revocation_behavior":0,"reward":[0,1,2],"reward_a":0,"reward_b":0,"reward_config":[0,1,2],"reward_info_detail":[0,1,2],"reward_nam":[0,1,2],"rewardconfig":0,"rewardinfodetail":0,"rewardnam":0,"rewawrd":0,"rewrit":0,"rewritten":0,"rfc":0,"rfc9535":0,"rich":0,"ridicul":0,"right":[0,1,2],"risk":0,"riski":0,"rl":0,"rng":0,"role":[0,1,2],"root":0,"rotate_signing_secret":[0,1,2],"roug":[0,1,2],"rouge_metric_valu":[0,1,2],"rouge_spec":[0,1,2],"rouge_typ":[0,1,2],"rougel":0,"rougelsum":0,"rougemetricvalu":[0,1,2],"rougemetricvaluedict":[0,1,2],"rougen":0,"rougespec":[0,1,2],"rougespecdict":[0,1,2],"rougetyp":0,"roughli":0,"rout":[0,1,2],"router":0,"routing_config":[0,1,2],"routingconfig":0,"row":0,"rpc":0,"rubric":0,"rubric_content_typ":[0,1,2],"rubric_content_type_unspecifi":[0,1,2],"rubric_generation_spec":[0,1,2],"rubric_group":0,"rubric_group_kei":[0,1,2],"rubric_type_ontologi":[0,1,2],"rubric_verdict":0,"rubriccontenttyp":[0,1,2],"rubricgenerationspec":[0,1,2],"rubricgenerationspecdict":[0,1,2],"rubricgroupkei":0,"rubrictypeontologi":0,"run":[0,1,2],"runtim":0,"runtime_auth_config":0,"sa":0,"safetensor":0,"safeti":[0,2],"safety_attribut":[0,1,2],"safety_filter_level":[0,1,2],"safety_policy_unspecifi":[0,1,2],"safety_r":[0,1,2],"safety_set":[0,1,2],"safetyattribut":[0,1,2],"safetyattributesdict":[0,1,2],"safetyfilterlevel":[0,1,2],"safetypolici":[0,1,2],"safetyr":[0,1,2],"safetyratingdict":[0,1,2],"safetyset":[0,1,2],"safetysettingdict":[0,1,2],"sai":1,"same":[0,1],"sampl":[0,1],"sample_r":[0,1,2],"sample_respons":0,"sampler":0,"samples_per_prompt":[0,1,2],"samplesperprompt":0,"sampling_count":[0,1,2],"samplingcount":0,"san":1,"sandbox":0,"sanit":0,"save":[0,1,2],"scale":[0,1,2],"scale_unspecifi":[0,1,2],"scene":0,"schedul":[0,1,2],"scheduling_unspecifi":[0,1,2],"schema":[0,2],"schemadict":[0,1,2],"scheme":0,"scone":[0,1],"scope":0,"score":[0,1,2],"score_variance_per_example_distribut":[0,1,2],"scorer":0,"scores_distribut":[0,1,2],"scoresdistribut":0,"scorevarianceperexampledistribut":0,"screen":0,"scribbl":0,"scribble_imag":[0,1,2],"scribbleimag":[0,1,2],"scribbleimagedict":[0,1,2],"sdk":0,"sdk_blob":[0,1,2],"sdk_http_respons":[0,1,2],"sdk_response_seg":[0,1,2],"sdkblob":0,"sdkhttprespons":0,"sdkresponseseg":0,"search":0,"search_entry_point":[0,1,2],"search_templ":[0,1,2],"search_typ":[0,1,2],"searchalongrout":0,"searchentrypoint":[0,1,2],"searchentrypointdict":[0,1,2],"searchtempl":0,"searchtyp":[0,1,2],"searchtypesdict":[0,1,2],"sec4":0,"second":0,"secret":0,"secretmanag":0,"section":1,"secur":0,"see":[0,1],"seed":[0,1,2],"segment":[0,1,2],"segment_imag":[0,1,2],"segmentation_class":[0,1,2],"segmentationclass":0,"segmentdict":[0,1,2],"segmentimageconfig":[0,1,2],"segmentimageconfigdict":[0,1,2],"segmentimagerespons":[0,1,2],"segmentimageresponsedict":[0,1,2],"segmentimagesourc":[0,1,2],"segmentimagesourcedict":[0,1,2],"segmentmod":[0,1,2],"select":0,"self":0,"sell":0,"semant":[0,1,2],"send":[0,2],"send_client_cont":[0,1,2],"send_messag":1,"send_message_stream":[0,1],"send_realtime_input":[0,1,2],"send_tool_respons":[0,1,2],"sensit":0,"sensitive_data_modif":[0,1,2],"sent":0,"sentenc":[0,1],"separ":[0,1],"sequenc":0,"serv":0,"server":[0,1],"server_cont":[0,1,2],"server_param":1,"servercont":0,"servic":[0,1],"service_account":[0,1,2],"service_ti":[0,1,2],"serviceaccount":0,"serviceti":[0,1,2],"session":[0,1],"session_id":[0,1,2],"session_resumpt":[0,1,2],"session_resumption_upd":[0,1,2],"sessionid":0,"sessionresumpt":0,"sessionresumptionconfig":[0,1,2],"sessionresumptionconfigdict":[0,1,2],"sessionresumptiontoken":0,"sessionresumptiontokenupd":0,"sessionresumptionupd":0,"set":0,"setup":[0,1,2],"setup_complet":[0,1,2],"setupcomplet":0,"sever":[0,1,2],"severity_scor":[0,1,2],"severityscor":0,"sexual":0,"sft":0,"sft_loss_weight_multipli":[0,1,2],"sftlossweightmultipli":0,"sha":0,"sha256_hash":[0,1,2],"sha256hash":0,"shall":0,"share":0,"shop":0,"short":0,"shorten":0,"shorter":0,"should":0,"should_return_http_respons":[0,1,2],"shouldreturnhttprespons":0,"show":[0,1,2],"shown":[0,1],"side":0,"sign":0,"signal":0,"signatur":[0,1,2],"signific":0,"silenc":0,"silence_duration_m":[0,1,2],"silencedurationm":0,"silent":[0,1,2],"similar":0,"similarity_top_k":[0,1,2],"similaritytopk":0,"simpi":0,"simpl":[0,1],"simple_search":[0,1,2],"simple_search_param":[0,1,2],"simplesearchparam":0,"sinc":0,"singl":[0,1],"single_reward_config":[0,1,2],"singleembedcontentrespons":[0,1,2],"singleembedcontentresponsedict":[0,1,2],"singlereinforcementtuningrewardconfig":[0,1,2],"singlereinforcementtuningrewardconfigdict":[0,1,2],"singlerewardconfig":0,"sit":0,"site":0,"size":0,"size_byt":[0,1,2],"sizebyt":0,"sketch":0,"skip":0,"skip_in_api_mod":[0,1,2],"skipinapimod":0,"sky":[0,1],"sleep":[0,1],"slide":0,"sliding_window":[0,1,2],"slidingwindow":[0,1,2],"slidingwindowdict":[0,1,2],"slot":0,"small":0,"smaller":0,"smallest":0,"snake":0,"sneaker":1,"snippet":0,"so":[0,1],"sock":1,"socks5":1,"some":[0,1],"someth":1,"soon":0,"sort":0,"sound":0,"sourc":[0,1,2],"source_flagging_uri":[0,1,2],"source_id":[0,1,2],"source_metadata":[0,1,2],"source_polici":0,"source_unspecifi":[0,1,2],"source_uri":[0,1,2],"sourceflagginguri":0,"sourceid":0,"sourcemetadata":0,"sourceuri":0,"south":0,"space":0,"spanish":0,"spars":0,"speak":0,"speaker":[0,1,2],"speaker_label":[0,1,2],"speaker_voice_config":[0,1,2],"speakerlabel":0,"speakervoiceconfig":[0,1,2],"speakervoiceconfigdict":[0,1,2],"spec":0,"special":0,"specif":0,"specifi":[0,1],"speech":0,"speech_config":[0,1,2],"speechconfig":[0,1,2],"speechconfigdict":[0,1,2],"speed":[0,1],"spii":[0,1,2],"spk_1":0,"spk_2":0,"split":0,"split_summari":[0,1,2],"splitsummari":0,"spoken":0,"sql":0,"src":[0,1,2],"sse":0,"sse_read_timeout":[0,1,2],"ssereadtimeout":0,"ssl":1,"ssl_cert_fil":1,"stabl":[0,1,2],"stage":0,"stai":0,"standard":[0,1,2],"standard_devi":[0,1,2],"start":[0,1],"start_index":[0,1,2],"start_of_activity_interrupt":[0,1,2],"start_of_speech_sensit":[0,1,2],"start_offset":[0,1,2],"start_sensitivity_high":[0,1,2],"start_sensitivity_low":[0,1,2],"start_sensitivity_unspecifi":[0,1,2],"start_stream":[0,1,2],"start_tim":[0,1,2],"startindex":0,"startoffset":0,"startofspeechsensit":0,"startsensit":[0,1,2],"starttim":0,"stat":0,"state":[0,1,2],"state_act":[0,1,2],"state_fail":[0,1,2],"state_pend":[0,1,2],"state_unspecifi":[0,1,2],"static":0,"statist":[0,1,2],"statu":0,"status_cod":[0,1,2],"statuscod":0,"stderr":0,"stdio":1,"stdio_client":1,"stdioserverparamet":1,"stdout":0,"steer":0,"stemmer":0,"step":[0,1,2],"stepdelta":0,"stepstart":0,"stepstop":0,"still":0,"stop":[0,1,2],"stop_sequ":[0,1,2],"stopsequ":0,"storag":[0,1],"store":[0,1],"store_context":[0,1,2],"storecontext":0,"stori":1,"str":[0,1],"stream":0,"stream_function_call_argu":[0,1,2],"streamable_http_transport":[0,1,2],"streamablehttptransport":[0,1,2],"streamablehttptransportdict":[0,1,2],"streamfunctioncallargu":0,"strftime":1,"string":[0,2],"string_funct":0,"string_list_valu":[0,1,2],"string_match_express":[0,1,2],"string_match_reward_scor":[0,1,2],"string_valu":[0,1,2],"stringlist":[0,1,2],"stringlistdict":[0,1,2],"stringlistvalu":0,"stringmatchexpress":0,"stringmatchrewardscor":0,"stringvalu":0,"structur":0,"stub":0,"student":0,"student_model":[0,1,2],"studentmodel":0,"style":[0,1,2],"style_descript":[0,1,2],"style_image_config":[0,1,2],"style_reference_config":0,"styledescript":0,"styleguid":0,"styleimageconfig":0,"stylereferenceconfig":[0,1,2],"stylereferenceconfigdict":[0,1,2],"stylereferenceimag":[0,1,2],"stylereferenceimagedict":[0,1,2],"sub":0,"subclass":[0,1],"subject":0,"subject_descript":[0,1,2],"subject_image_config":[0,1,2],"subject_reference_config":0,"subject_typ":[0,1,2],"subject_type_anim":[0,1,2],"subject_type_default":[0,1,2],"subject_type_person":[0,1,2],"subject_type_product":[0,1,2],"subjectdescript":0,"subjectimageconfig":0,"subjectreferenceconfig":[0,1,2],"subjectreferenceconfigdict":[0,1,2],"subjectreferenceimag":[0,1,2],"subjectreferenceimagedict":[0,1,2],"subjectreferencetyp":[0,1,2],"subjecttyp":0,"submodul":[1,2],"subschema":0,"subscrib":0,"subscribed_ev":0,"subscript":0,"subsequ":0,"subset":0,"substitut":0,"substr":0,"subtyp":0,"succe":0,"succeed":0,"success":0,"successful_count":[0,1,2],"successful_forecast_point_count":[0,1,2],"successfulcount":0,"successfulforecastpointcount":0,"successfulli":0,"suffici":0,"suffix":0,"suggest":0,"suitabl":0,"sum":[0,1,2],"summar":1,"summari":0,"sunlight":1,"sunni":1,"sunnyval":1,"supervis":[0,1],"supervised_fine_tun":[0,1,2],"supervised_tuning_data_stat":[0,1,2],"supervised_tuning_spec":[0,1,2],"supervisedhyperparamet":[0,1,2],"supervisedhyperparametersdict":[0,1,2],"supervisedtuningdatasetdistribut":[0,1,2],"supervisedtuningdatasetdistributiondatasetbucket":[0,1,2],"supervisedtuningdatasetdistributiondatasetbucketdict":[0,1,2],"supervisedtuningdatasetdistributiondict":[0,1,2],"supervisedtuningdatastat":[0,1,2],"supervisedtuningdatastatsdict":[0,1,2],"supervisedtuningspec":[0,1,2],"supervisedtuningspecdict":[0,1,2],"suppli":0,"support":0,"supported_act":[0,1,2],"supported_model":0,"supportedact":0,"suppress":0,"surfac":0,"sync":[0,1],"synchron":0,"synthesi":0,"synthid":0,"system":0,"system_instruct":[0,1,2],"systeminstruct":0,"t":[0,1],"tabl":[0,1],"tag":0,"take":[0,1],"talk":0,"target":0,"target_language_cod":[0,1,2],"target_token":[0,1,2],"targetlanguagecod":0,"targettoken":0,"task":0,"task_typ":[0,1,2],"tasktyp":0,"teacher":0,"technic":0,"tell":[0,1],"temperatur":[0,1,2],"templat":0,"temporarili":0,"term":0,"termin":0,"terminate_on_clos":[0,1,2],"terminateonclos":0,"terminologi":0,"test":[0,1],"test_dataset_exampl":1,"test_method":[0,1,2],"test_tabl":[0,1,2],"test_token":1,"testmethod":0,"testtabl":0,"testtablefil":[0,1,2],"testtablefiledict":[0,1,2],"testtableitem":[0,1,2],"testtableitemdict":[0,1,2],"text":[0,2],"text_count":[0,1,2],"text_input":[0,1,2],"text_quality_v1":0,"textcount":0,"textinput":0,"textresponseformat":[0,1,2],"textresponseformatdict":[0,1,2],"textur":0,"than":[0,1],"thei":0,"them":0,"thi":[0,1],"think":[0,1,2],"thinking_budget":[0,1,2],"thinking_config":[0,1,2],"thinking_level":[0,1,2],"thinking_level_unspecifi":[0,1,2],"thinkingbudget":0,"thinkingconfig":[0,1,2],"thinkingconfigdict":[0,1,2],"thinkinglevel":[0,1,2],"third":0,"those":[0,1],"thought":[0,1,2],"thought_signatur":[0,1,2],"thoughts_token_count":[0,1,2],"thoughtsignatur":0,"thoughtstokencount":0,"threaten":0,"three":0,"threshold":[0,1,2],"through":[0,1],"throughput":0,"tie":[0,1,2],"tier":0,"time":[0,1],"time_left":[0,1,2],"time_range_filt":[0,1,2],"time_zon":0,"timeleft":0,"timeless":0,"timeofdai":0,"timeout":[0,1,2],"timerangefilt":0,"timestamp":0,"titl":[0,1,2],"to_yaml_fil":[0,1,2],"togeth":0,"token":2,"token_count":[0,1,2],"token_id":[0,1,2],"tokencount":0,"tokenid":0,"tokens_detail":[0,1,2],"tokens_info":[0,1,2],"tokensdetail":0,"tokensinfo":[0,1,2],"tokensinfodict":[0,1,2],"told":1,"too":0,"tool":[0,2],"tool_cal":[0,1,2],"tool_call_cancel":[0,1,2],"tool_config":[0,1,2],"tool_respons":[0,1,2],"tool_typ":[0,1,2],"tool_type_unspecifi":[0,1,2],"tool_use_prompt_token_count":[0,1,2],"tool_use_prompt_tokens_detail":[0,1,2],"toolcal":[0,1,2],"toolcallcancel":0,"toolcalldict":[0,1,2],"toolcallmessag":0,"toolcodeexecut":[0,1,2],"toolcodeexecutiondict":[0,1,2],"toolconfig":[0,1,2],"toolconfigdict":[0,1,2],"tooldict":[0,1,2],"toolexaaisearch":[0,1,2],"toolexaaisearchdict":[0,1,2],"toolparallelaisearch":[0,1,2],"toolparallelaisearchdict":[0,1,2],"toolrespons":[0,1,2],"toolresponsedict":[0,1,2],"tooltyp":[0,1,2],"tooluseprompttokencount":0,"tooluseprompttokensdetail":0,"top":[0,1],"top_candid":[0,1,2],"top_k":[0,1,2],"top_p":[0,1,2],"topcandid":0,"topic":0,"topk":0,"topp":0,"torment":0,"total":0,"total_area_sq_mi":1,"total_billable_character_count":[0,1,2],"total_billable_token_count":[0,1,2],"total_prompts_in_dataset":0,"total_reward":0,"total_step":0,"total_token":[0,1,2],"total_token_count":[0,1,2],"total_truncated_example_count":[0,1,2],"total_tuning_character_count":[0,1,2],"totalbillablecharactercount":0,"totalbillabletokencount":0,"totaltoken":0,"totaltokencount":0,"totaltruncatedexamplecount":0,"totaltuningcharactercount":0,"toward":0,"track":0,"trade":0,"tradit":0,"traffic":0,"traffic_typ":[0,1,2],"traffic_type_unspecifi":[0,1,2],"traffictyp":[0,1,2],"train":0,"training_dataset":[0,1,2],"training_dataset_stat":[0,1,2],"training_dataset_uri":[0,1,2],"trainingdataset":0,"trainingdatasetstat":0,"trainingdataseturi":0,"transact":0,"transcript":[0,1,2],"transcriptiondict":[0,1,2],"transit":0,"translat":0,"translation_config":[0,1,2],"translationconfig":[0,1,2],"translationconfigdict":[0,1,2],"transpar":[0,1,2],"transport":0,"treat":0,"trigger":[0,1,2],"trigger_id":0,"trigger_token":[0,1,2],"triggertoken":0,"true":[0,1],"truncat":[0,1,2],"truncated_example_indic":[0,1,2],"truncatedexampleindic":0,"trust_env":1,"try":[0,1],"ttl":[0,1,2],"tune":2,"tuned_model":[0,1,2],"tuned_model_display_nam":[0,1,2],"tuned_model_info":[0,1,2],"tuned_model_nam":[0,1,2],"tuned_teacher_model_sourc":[0,1,2],"tunedmodel":[0,1,2],"tunedmodelcheckpoint":[0,1,2],"tunedmodelcheckpointdict":[0,1,2],"tunedmodeldict":[0,1,2],"tunedmodeldisplaynam":0,"tunedmodelinfo":[0,1,2],"tunedmodelinfodict":[0,1,2],"tunedmodelnam":0,"tunedteachermodelsourc":0,"tuning_data_stat":[0,1,2],"tuning_dataset_example_count":[0,1,2],"tuning_job":[0,1,2],"tuning_job_id":0,"tuning_job_metadata":[0,1,2],"tuning_job_st":[0,1,2],"tuning_job_state_post_process":[0,1,2],"tuning_job_state_processing_dataset":[0,1,2],"tuning_job_state_tun":[0,1,2],"tuning_job_state_unspecifi":[0,1,2],"tuning_job_state_waiting_for_capac":[0,1,2],"tuning_job_state_waiting_for_quota":[0,1,2],"tuning_mod":[0,1,2],"tuning_mode_ful":[0,1,2],"tuning_mode_peft_adapt":[0,1,2],"tuning_mode_unspecifi":[0,1,2],"tuning_spe":[0,1,2],"tuning_speed_unspecifi":[0,1,2],"tuning_step_count":[0,1,2],"tuning_task":[0,1,2],"tuning_task_i2v":[0,1,2],"tuning_task_r2v":[0,1,2],"tuning_task_t2v":[0,1,2],"tuning_task_unspecifi":[0,1,2],"tuningdataset":[0,1,2],"tuningdatasetdict":[0,1,2],"tuningdatasetexamplecount":0,"tuningdatastat":[0,1,2],"tuningdatastatsdict":[0,1,2],"tuningexampl":[0,1,2],"tuningexampledict":[0,1,2],"tuningjob":[0,1,2],"tuningjobdict":[0,1,2],"tuningjobmetadata":[0,1,2],"tuningjobmetadatadict":[0,1,2],"tuningjobst":[0,1,2],"tuningmethod":[0,1,2],"tuningmod":[0,1,2],"tuningoper":[0,1,2],"tuningoperationdict":[0,1,2],"tuningspe":[0,1,2],"tuningstepcount":0,"tuningtask":[0,1,2],"tuningvalidationdataset":[0,1,2],"tuningvalidationdatasetdict":[0,1,2],"tupl":0,"turn":[0,1,2],"turn_complet":[0,1,2],"turn_complete_reason":[0,1,2],"turn_complete_reason_unspecifi":[0,1,2],"turn_coverag":[0,1,2],"turn_coverage_unspecifi":[0,1,2],"turn_includes_all_input":[0,1,2],"turn_includes_audio_activity_and_all_video":[0,1,2],"turn_includes_only_act":[0,1,2],"turn_on_the_light":0,"turncomplet":0,"turncompletereason":[0,1,2],"turncoverag":[0,1,2],"two":[0,1],"txt":[0,1],"type":2,"type_check":0,"type_unspecifi":[0,1,2],"typeddict":[0,1],"typic":0,"u":[0,1],"u2019":0,"u2019t":0,"ui":0,"ultra":0,"umbrella":1,"unari":0,"uncertain":0,"uncertainti":0,"unchang":0,"uncondition":0,"undefin":0,"under":0,"underli":[0,1],"underscor":0,"understand":0,"undo":0,"unexpect":0,"unexpected_tool_cal":[0,1,2],"unicod":0,"unifi":0,"unifiedmetr":[0,1,2],"unifiedmetricdict":[0,1,2],"union":0,"uniontyp":0,"uniqu":[0,1],"unique_id":0,"unique_item":[0,1,2],"uniqueitem":0,"unit":[0,1],"unknown":0,"unknowninteractionsseev":0,"unless":0,"unlock":0,"unrol":0,"unsaf":0,"unsafe_prompt_for_image_gener":[0,1,2],"unset":0,"unspecifi":[0,1,2],"unstable_experiment":[0,1,2],"unsupport":0,"until":[0,1],"unus":0,"up":[0,1],"updat":[0,2],"update_mask":0,"update_tim":[0,1,2],"updatecachedcontentconfig":[0,1,2],"updatecachedcontentconfigdict":[0,1,2],"updatemodelconfig":[0,1,2],"updatemodelconfigdict":[0,1,2],"updatetim":0,"upload":[0,2],"uploadfileconfig":[0,1,2],"uploadfileconfigdict":[0,1,2],"uploadtofilesearchstor":0,"uploadtofilesearchstoreconfig":[0,1,2],"uploadtofilesearchstoreconfigdict":[0,1,2],"uploadtofilesearchstoreoper":[0,1,2],"uploadtofilesearchstorerespons":[0,1,2],"uploadtofilesearchstoreresponsedict":[0,1,2],"uploadtofilesearchstoreresumablerespons":[0,1,2],"uploadtofilesearchstoreresumableresponsedict":[0,1,2],"upper":0,"upscal":0,"upscale_factor":[0,1,2],"upscale_imag":[0,1,2],"upscalefactor":0,"upscaleimageconfig":[0,1,2],"upscaleimageconfigdict":[0,1,2],"upscaleimageparamet":[0,1,2],"upscaleimageparametersdict":[0,1,2],"upscaleimagerespons":[0,1,2],"upscaleimageresponsedict":[0,1,2],"uri":[0,1,2],"url":[0,2],"url_context":[0,1,2],"url_context_metadata":[0,1,2],"url_metadata":[0,1,2],"url_retrieval_statu":[0,1,2],"url_retrieval_status_error":[0,1,2],"url_retrieval_status_paywal":[0,1,2],"url_retrieval_status_success":[0,1,2],"url_retrieval_status_unsaf":[0,1,2],"url_retrieval_status_unspecifi":[0,1,2],"urlcontext":[0,1,2],"urlcontextdict":[0,1,2],"urlcontextmetadata":[0,1,2],"urlcontextmetadatadict":[0,1,2],"urllib":1,"urlmetadata":[0,1,2],"urlmetadatadict":[0,1,2],"urlretrievalstatu":[0,1,2],"us":[0,2],"usag":0,"usage_metadata":[0,1,2],"usagemetadata":[0,1,2],"usagemetadatadict":[0,1,2],"use_effective_ord":[0,1,2],"use_stemm":[0,1,2],"useeffectiveord":0,"user":[0,1],"user_consent_manag":[0,1,2],"user_cont":0,"user_dataset_exampl":[0,1,2],"user_input_token_distribut":[0,1,2],"user_message_per_example_distribut":[0,1,2],"user_metadata":[0,1,2],"user_output_token_distribut":[0,1,2],"user_profil":1,"user_prompt_cont":1,"user_requested_aux_info":[0,1,2],"usercont":[0,1,2],"userdatasetexampl":0,"userinputtokendistribut":0,"usermessageperexampledistribut":0,"usermetadata":0,"usernam":1,"useroutputtokendistribut":0,"userrequestedauxinfo":0,"usestemm":0,"utc":0,"utf":0,"util":0,"uv":1,"v1":[0,1],"v1alpha":[0,1],"v3":0,"vad":0,"vad_sign":0,"vad_signal_typ":[0,1,2],"vad_signal_type_eo":[0,1,2],"vad_signal_type_so":[0,1,2],"vad_signal_type_unspecifi":[0,1,2],"vadsignaltyp":[0,1,2],"valid":[0,1,2],"validate_nam":[0,1,2],"validate_reward":[0,1,2],"validatereinforcementtuningreward":0,"validaterewardconfig":[0,1,2],"validaterewardconfigdict":[0,1,2],"validaterewardrespons":[0,1,2],"validaterewardresponsedict":[0,1,2],"validation_dataset":[0,1,2],"validation_dataset_uri":[0,1,2],"validationdataset":0,"validationdataseturi":0,"validationerror":0,"valu":[0,1,2],"value1":0,"value2":0,"value_string_match_express":[0,1,2],"valueerror":0,"valuestringmatchexpress":0,"vari":0,"variabl":[0,1],"varianc":[0,1,2],"variat":0,"varieti":0,"variou":0,"vector":0,"vector_distance_threshold":[0,1,2],"vector_similarity_threshold":[0,1,2],"vectordistancethreshold":0,"vectorsimilaritythreshold":0,"veo":0,"veo_data_mixture_ratio":[0,1,2],"veo_lora_tuning_spec":[0,1,2],"veo_tuning_spec":[0,1,2],"veodatamixtureratio":0,"veohyperparamet":[0,1,2],"veohyperparametersdict":[0,1,2],"veoloratuningspec":[0,1,2],"veoloratuningspecdict":[0,1,2],"veotuningspec":[0,1,2],"veotuningspecdict":[0,1,2],"verbose_answ":0,"veri":0,"verif":0,"verifi":0,"versa":0,"version":[0,1,2],"version_id":0,"vertex":[0,1],"vertex_ai":0,"vertex_ai_search":[0,1,2],"vertex_dataset":[0,1,2],"vertex_dataset_nam":[0,1,2],"vertex_dataset_resourc":[0,1,2],"vertex_multimodal_dataset_nam":[0,1,2],"vertex_rag_stor":[0,1,2],"vertexai":[0,1,2],"vertexaisearch":[0,1,2],"vertexaisearchdatastorespec":[0,1,2],"vertexaisearchdatastorespecdict":[0,1,2],"vertexaisearchdict":[0,1,2],"vertexdataset":0,"vertexdatasetnam":0,"vertexdatasetresourc":0,"vertexmultimodaldatasetdestin":[0,1,2],"vertexmultimodaldatasetdestinationdict":[0,1,2],"vertexmultimodaldatasetnam":0,"vertexragdataservic":0,"vertexragstor":[0,1,2],"vertexragstoredict":[0,1,2],"vertexragstoreragresourc":[0,1,2],"vertexragstoreragresourcedict":[0,1,2],"via":[0,1],"vice":0,"video":[0,2],"video_bitrate_bp":[0,1,2],"video_byt":[0,1,2],"video_duration_second":[0,1,2],"video_metadata":[0,1,2],"video_orient":[0,1,2],"video_orientation_unspecifi":[0,1,2],"videobitratebp":0,"videobyt":0,"videocompressionqu":[0,1,2],"videodict":[0,1,2],"videodurationsecond":0,"videogenerationmask":[0,1,2],"videogenerationmaskdict":[0,1,2],"videogenerationmaskmod":[0,1,2],"videogenerationreferenceimag":[0,1,2],"videogenerationreferenceimagedict":[0,1,2],"videogenerationreferencetyp":[0,1,2],"videometadata":[0,1,2],"videometadatadict":[0,1,2],"videoorient":[0,1,2],"videoresponseformat":[0,1,2],"videoresponseformatdict":[0,1,2],"view":0,"violat":0,"violenc":0,"virtual":0,"virtual_try_on_respons":0,"vocabulari":0,"vocal":[0,1,2],"voic":0,"voice_act":[0,1,2],"voice_activity_detection_sign":[0,1,2],"voice_activity_typ":[0,1,2],"voice_activity_type_unspecifi":0,"voice_config":[0,1,2],"voice_consent_signatur":[0,1,2],"voice_nam":[0,1,2],"voice_sample_audio":[0,1,2],"voiceact":[0,1,2],"voiceactivitydetectionsign":[0,1,2],"voiceactivitydetectionsignaldict":[0,1,2],"voiceactivitydict":[0,1,2],"voiceactivitytyp":[0,1,2],"voiceconfig":[0,1,2],"voiceconfigdict":[0,1,2],"voiceconsentsignatur":[0,1,2],"voiceconsentsignaturedict":[0,1,2],"voicenam":0,"voicesampleaudio":0,"vscode":0,"wa":0,"wai":[0,1],"wait":0,"waiting_for_input":[0,1,2],"waitingforinput":0,"want":[0,1],"warn":0,"watermark":0,"wav":0,"we":[0,1],"wear":0,"weather":1,"web":[0,1,2],"web_search":[0,1,2],"web_search_queri":[0,1,2],"webhook":[0,1,2],"webhook_config":[0,1,2],"webhook_id":0,"webhookconfig":[0,1,2],"webhookconfigdict":[0,1,2],"websearch":[0,1,2],"websearchdict":[0,1,2],"websearchqueri":0,"websit":0,"websocket":0,"webview":0,"weight":[0,1,2],"weight_a":0,"weight_b":0,"weighted_prompt":[0,1,2],"weighted_reward_config":[0,1,2],"weightedprompt":[0,1,2],"weightedpromptdict":[0,1,2],"weightedrewardconfig":0,"welcom":0,"well":[0,1],"were":0,"west":0,"wget":1,"wgs84":0,"what":[0,1],"when":[0,1],"when_idl":[0,1,2],"where":[0,1],"whether":[0,1],"which":0,"whichev":0,"while":[0,1],"white":[0,1],"white_space_config":[0,1,2],"whitespaceconfig":[0,1,2],"whitespaceconfigdict":[0,1,2],"who":0,"whole":0,"whose":0,"why":[0,1],"widget":0,"wikipedia":0,"wildcard":0,"will_continu":[0,1,2],"willcontinu":0,"win":0,"window":0,"winner":0,"wish":0,"with_raw_respons":[0,1,2],"with_streaming_respons":[0,1,2],"within":[0,1],"without":0,"woodwind":1,"word":[0,1,2],"word_timestamp":[0,1,2],"wordinfo":[0,1,2],"wordinfodict":[0,1,2],"wordtimestamp":0,"work":[0,1],"workload":0,"world":0,"would":0,"wrap":0,"wrap_sdk_cal":0,"wrapper":0,"write":1,"written":0,"wrong":0,"wrong_answer_reward":[0,1,2],"wronganswerreward":0,"x":1,"x2":[0,1],"x4":0,"xmqnxf":0,"y":1,"yaml":0,"ye":0,"year":[0,1,2],"yet":[0,1],"yield":0,"york":1,"you":[0,1],"your":[0,1],"your_image_mime_typ":1,"your_image_path":1,"z":0,"zero":0,"zh":[0,1,2],"zone":0,"zoom":0},"titles":["Submodules","Google Gen AI SDK","google"],"titleterms":{"ai":1,"aiohttp":1,"ani":1,"api":1,"argument":1,"async":1,"asynchron":1,"automat":1,"base":1,"batch":1,"bodi":1,"cach":1,"call":1,"chat":1,"client":[0,1],"close":1,"comput":1,"config":1,"content":1,"context":1,"count":1,"creat":1,"custom":1,"declar":1,"delet":1,"develop":1,"disabl":1,"edit":1,"emb":1,"enum":1,"error":1,"experiment":1,"extra":1,"faster":1,"file":1,"function":1,"gao":0,"gemini":1,"gen":1,"genai":0,"gener":1,"generate_cont":1,"get":1,"googl":[1,2],"handl":1,"how":1,"imag":1,"imagen":1,"import":1,"input":1,"instal":1,"instanc":1,"instruct":1,"invok":1,"job":1,"json":1,"list":1,"live":0,"local":1,"manag":1,"manual":1,"mcp":1,"messag":1,"mix":1,"mode":1,"model":[0,1],"modul":0,"non":1,"onli":1,"option":1,"other":1,"output":1,"pager":1,"part":1,"predict":1,"protocol":1,"provid":1,"proxi":1,"pydant":1,"python":1,"refer":1,"request":1,"resourc":0,"respons":1,"safeti":1,"schema":1,"sdk":1,"select":1,"send":1,"set":1,"stream":1,"string":1,"structur":1,"submodul":0,"support":1,"synchron":1,"system":1,"text":1,"token":[0,1],"tool":1,"tune":[0,1],"type":[0,1],"updat":1,"upload":1,"upscal":1,"url":1,"us":1,"veo":1,"video":1}}) \ No newline at end of file +Search.setIndex({"alltitles":{"API Selection":[[1,"api-selection"]],"Automatic Python function Support:":[[1,"automatic-python-function-support"]],"Batch Prediction":[[1,"batch-prediction"]],"Caches":[[1,"caches"]],"Chats":[[1,"chats"]],"Client context managers":[[1,"client-context-managers"]],"Close a client":[[1,"close-a-client"]],"Compute Tokens":[[1,"compute-tokens"]],"Count Tokens (Asynchronous)":[[1,"count-tokens-asynchronous"]],"Count Tokens and Compute Tokens":[[1,"count-tokens-and-compute-tokens"]],"Create":[[1,"create"],[1,"id6"]],"Create a client":[[1,"create-a-client"]],"Custom base url":[[1,"custom-base-url"]],"Delete":[[1,"delete"],[1,"id8"]],"Disabling automatic function calling":[[1,"disabling-automatic-function-calling"]],"Edit Image":[[1,"edit-image"]],"Embed Content":[[1,"embed-content"]],"Enum Response Schema":[[1,"enum-response-schema"]],"Error Handling":[[1,"error-handling"]],"Extra Request Body":[[1,"extra-request-body"]],"Faster async client option: Aiohttp":[[1,"faster-async-client-option-aiohttp"]],"Files":[[1,"files"]],"Function Calling":[[1,"function-calling"]],"Function calling with ANY tools config mode":[[1,"function-calling-with-any-tools-config-mode"]],"GAOS Client Resources":[[0,"gaos-client-resources"]],"Gemini Developer API":[[1,"id7"]],"Generate Content":[[1,"generate-content"]],"Generate Content (Asynchronous Non Streaming)":[[1,"generate-content-asynchronous-non-streaming"]],"Generate Content (Asynchronous Streaming)":[[1,"generate-content-asynchronous-streaming"]],"Generate Content (Synchronous Streaming)":[[1,"generate-content-synchronous-streaming"]],"Generate Content with Caches":[[1,"generate-content-with-caches"]],"Generate Images":[[1,"generate-images"]],"Generate Videos (Image to Video)":[[1,"generate-videos-image-to-video"]],"Generate Videos (Text to Video)":[[1,"generate-videos-text-to-video"]],"Generate Videos (Video to Video)":[[1,"generate-videos-video-to-video"]],"Get":[[1,"get"],[1,"id3"]],"Get Tuned Model":[[1,"get-tuned-model"]],"Get Tuning Job":[[1,"get-tuning-job"]],"Google Gen AI SDK":[[1,null]],"How to structure contents argument for generate_content":[[1,"how-to-structure-contents-argument-for-generate-content"]],"Imagen":[[1,"imagen"]],"Imports":[[1,"imports"]],"Installation":[[1,"installation"]],"JSON Response":[[1,"json-response"]],"JSON Response Schema":[[1,"json-response-schema"]],"JSON Schema support":[[1,"json-schema-support"]],"List":[[1,"list"]],"List Base Models":[[1,"list-base-models"]],"List Base Models (Asynchronous)":[[1,"list-base-models-asynchronous"]],"List Batch Jobs (Asynchronous)":[[1,"list-batch-jobs-asynchronous"]],"List Batch Jobs with Pager":[[1,"list-batch-jobs-with-pager"]],"List Batch Jobs with Pager (Asynchronous)":[[1,"list-batch-jobs-with-pager-asynchronous"]],"List Tuned Models":[[1,"list-tuned-models"]],"List Tuned Models (Asynchronous)":[[1,"list-tuned-models-asynchronous"]],"List Tuning Jobs":[[1,"list-tuning-jobs"]],"Local Compute Tokens":[[1,"local-compute-tokens"]],"Local Count Tokens":[[1,"local-count-tokens"]],"Manually declare and invoke a function for function calling":[[1,"manually-declare-and-invoke-a-function-for-function-calling"]],"Mix types in contents":[[1,"mix-types-in-contents"]],"Model Context Protocol (MCP) support (experimental)":[[1,"model-context-protocol-mcp-support-experimental"]],"Models":[[1,"models"]],"Provide a function call part":[[1,"provide-a-function-call-part"]],"Provide a list of function call parts":[[1,"provide-a-list-of-function-call-parts"]],"Provide a list of non function call parts":[[1,"provide-a-list-of-non-function-call-parts"]],"Provide a list of string":[[1,"provide-a-list-of-string"]],"Provide a list[types.Content]":[[1,"provide-a-list-types-content"]],"Provide a non function call part":[[1,"provide-a-non-function-call-part"]],"Provide a string":[[1,"provide-a-string"]],"Provide a types.Content instance":[[1,"provide-a-types-content-instance"]],"Proxy":[[1,"proxy"]],"Pydantic Model Schema support":[[1,"pydantic-model-schema-support"]],"Reference":[[1,"reference"]],"Safety Settings":[[1,"safety-settings"]],"Send Message (Asynchronous Non-Streaming)":[[1,"send-message-asynchronous-non-streaming"]],"Send Message (Asynchronous Streaming)":[[1,"send-message-asynchronous-streaming"]],"Send Message (Synchronous Non-Streaming)":[[1,"send-message-synchronous-non-streaming"]],"Send Message (Synchronous Streaming)":[[1,"send-message-synchronous-streaming"]],"Streaming for image content":[[1,"streaming-for-image-content"]],"Streaming for text content":[[1,"streaming-for-text-content"]],"Submodules":[[0,null]],"System Instructions and Other Configs":[[1,"system-instructions-and-other-configs"]],"Text Response":[[1,"text-response"]],"Tune":[[1,"tune"]],"Tunings":[[1,"tunings"]],"Typed Config":[[1,"typed-config"]],"Types":[[1,"types"]],"Update Tuned Model":[[1,"update-tuned-model"],[1,"id5"]],"Upload":[[1,"upload"]],"Upscale Image":[[1,"upscale-image"]],"Use Tuned Model":[[1,"use-tuned-model"]],"Veo":[[1,"veo"]],"genai.client module":[[0,"module-genai.client"]],"genai.live module":[[0,"module-genai.live"]],"genai.models module":[[0,"module-genai.models"]],"genai.tokens module":[[0,"module-genai.tokens"]],"genai.tunings module":[[0,"module-genai.tunings"]],"genai.types module":[[0,"module-genai.types"]],"google":[[2,null]],"with text content input (image output)":[[1,"with-text-content-input-image-output"]],"with text content input (text output)":[[1,"with-text-content-input-text-output"]],"with uploaded file (Gemini Developer API only)":[[1,"with-uploaded-file-gemini-developer-api-only"]]},"docnames":["genai","index","modules"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["genai.rst","index.rst","modules.rst"],"indexentries":{"a_flat_major_f_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.A_FLAT_MAJOR_F_MINOR",false]],"a_major_g_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.A_MAJOR_G_FLAT_MINOR",false]],"access_token (genai.types.authconfigoauthconfig attribute)":[[0,"genai.types.AuthConfigOauthConfig.access_token",false]],"access_token (genai.types.authconfigoauthconfigdict attribute)":[[0,"genai.types.AuthConfigOauthConfigDict.access_token",false]],"account_creation (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.ACCOUNT_CREATION",false]],"aclose() (genai.client.asyncclient method)":[[0,"genai.client.AsyncClient.aclose",false]],"active (genai.types.filestate attribute)":[[0,"genai.types.FileState.ACTIVE",false]],"active_documents_count (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.active_documents_count",false]],"active_documents_count (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.active_documents_count",false]],"activity_end (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.activity_end",false]],"activity_end (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.activity_end",false]],"activity_end (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.activity_end",false]],"activity_end (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.activity_end",false]],"activity_end (genai.types.voiceactivitytype attribute)":[[0,"genai.types.VoiceActivityType.ACTIVITY_END",false]],"activity_handling (genai.types.realtimeinputconfig attribute)":[[0,"genai.types.RealtimeInputConfig.activity_handling",false]],"activity_handling (genai.types.realtimeinputconfigdict attribute)":[[0,"genai.types.RealtimeInputConfigDict.activity_handling",false]],"activity_handling_unspecified (genai.types.activityhandling attribute)":[[0,"genai.types.ActivityHandling.ACTIVITY_HANDLING_UNSPECIFIED",false]],"activity_start (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.activity_start",false]],"activity_start (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.activity_start",false]],"activity_start (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.activity_start",false]],"activity_start (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.activity_start",false]],"activity_start (genai.types.voiceactivitytype attribute)":[[0,"genai.types.VoiceActivityType.ACTIVITY_START",false]],"activityenddict (class in genai.types)":[[0,"genai.types.ActivityEndDict",false]],"activityhandling (class in genai.types)":[[0,"genai.types.ActivityHandling",false]],"activitystartdict (class in genai.types)":[[0,"genai.types.ActivityStartDict",false]],"adaptation_phrases (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.adaptation_phrases",false]],"adaptation_phrases (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.adaptation_phrases",false]],"adapter_size (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.adapter_size",false]],"adapter_size (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.adapter_size",false]],"adapter_size (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.adapter_size",false]],"adapter_size (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.adapter_size",false]],"adapter_size (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.adapter_size",false]],"adapter_size (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.adapter_size",false]],"adapter_size (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.adapter_size",false]],"adapter_size (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.adapter_size",false]],"adapter_size (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.adapter_size",false]],"adapter_size_eight (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_EIGHT",false]],"adapter_size_four (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_FOUR",false]],"adapter_size_one (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_ONE",false]],"adapter_size_sixteen (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_SIXTEEN",false]],"adapter_size_thirty_two (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_THIRTY_TWO",false]],"adapter_size_two (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_TWO",false]],"adapter_size_unspecified (genai.types.adaptersize attribute)":[[0,"genai.types.AdapterSize.ADAPTER_SIZE_UNSPECIFIED",false]],"adaptersize (class in genai.types)":[[0,"genai.types.AdapterSize",false]],"add_watermark (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.add_watermark",false]],"add_watermark (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.add_watermark",false]],"add_watermark (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.add_watermark",false]],"add_watermark (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.add_watermark",false]],"add_watermark (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.add_watermark",false]],"add_watermark (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.add_watermark",false]],"additional_config (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.additional_config",false]],"additional_config (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.additional_config",false]],"additional_properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.additional_properties",false]],"additional_properties (genai.types.schema attribute)":[[0,"genai.types.Schema.additional_properties",false]],"additional_properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.additional_properties",false]],"agents (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.agents",false]],"agents (genai.client.client property)":[[0,"genai.client.Client.agents",false]],"aggregate_summary_fn (genai.types.metric attribute)":[[0,"genai.types.Metric.aggregate_summary_fn",false]],"aggregate_summary_fn (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.aggregate_summary_fn",false]],"aggregation_metric (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.aggregation_metric",false]],"aggregation_metric (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.aggregation_metric",false]],"aggregation_metric_unspecified (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.AGGREGATION_METRIC_UNSPECIFIED",false]],"aggregation_output (genai.types.evaluatedatasetresponse attribute)":[[0,"genai.types.EvaluateDatasetResponse.aggregation_output",false]],"aggregation_output (genai.types.evaluatedatasetresponsedict attribute)":[[0,"genai.types.EvaluateDatasetResponseDict.aggregation_output",false]],"aggregation_results (genai.types.aggregationoutput attribute)":[[0,"genai.types.AggregationOutput.aggregation_results",false]],"aggregation_results (genai.types.aggregationoutputdict attribute)":[[0,"genai.types.AggregationOutputDict.aggregation_results",false]],"aggregationmetric (class in genai.types)":[[0,"genai.types.AggregationMetric",false]],"aggregationoutputdict (class in genai.types)":[[0,"genai.types.AggregationOutputDict",false]],"aggregationresultdict (class in genai.types)":[[0,"genai.types.AggregationResultDict",false]],"aio (genai.client.client property)":[[0,"genai.client.Client.aio",false]],"aiohttp_client (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.aiohttp_client",false]],"allow_adult (genai.types.persongeneration attribute)":[[0,"genai.types.PersonGeneration.ALLOW_ADULT",false]],"allow_all (genai.types.persongeneration attribute)":[[0,"genai.types.PersonGeneration.ALLOW_ALL",false]],"allow_prominent_people (genai.types.prominentpeople attribute)":[[0,"genai.types.ProminentPeople.ALLOW_PROMINENT_PEOPLE",false]],"allowed_function_names (genai.types.functioncallingconfig attribute)":[[0,"genai.types.FunctionCallingConfig.allowed_function_names",false]],"allowed_function_names (genai.types.functioncallingconfigdict attribute)":[[0,"genai.types.FunctionCallingConfigDict.allowed_function_names",false]],"alpha (genai.types.ragretrievalconfighybridsearch attribute)":[[0,"genai.types.RagRetrievalConfigHybridSearch.alpha",false]],"alpha (genai.types.ragretrievalconfighybridsearchdict attribute)":[[0,"genai.types.RagRetrievalConfigHybridSearchDict.alpha",false]],"any (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.ANY",false]],"any_of (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.any_of",false]],"any_of (genai.types.schema attribute)":[[0,"genai.types.Schema.any_of",false]],"any_of (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.any_of",false]],"api_auth (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.api_auth",false]],"api_auth (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.api_auth",false]],"api_key (genai.client.client attribute)":[[0,"genai.client.Client.api_key",false]],"api_key (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.api_key",false]],"api_key (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.api_key",false]],"api_key (genai.types.toolexaaisearch attribute)":[[0,"genai.types.ToolExaAiSearch.api_key",false]],"api_key (genai.types.toolexaaisearchdict attribute)":[[0,"genai.types.ToolExaAiSearchDict.api_key",false]],"api_key (genai.types.toolparallelaisearch attribute)":[[0,"genai.types.ToolParallelAiSearch.api_key",false]],"api_key (genai.types.toolparallelaisearchdict attribute)":[[0,"genai.types.ToolParallelAiSearchDict.api_key",false]],"api_key_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.API_KEY_AUTH",false]],"api_key_config (genai.types.apiauth attribute)":[[0,"genai.types.ApiAuth.api_key_config",false]],"api_key_config (genai.types.apiauthdict attribute)":[[0,"genai.types.ApiAuthDict.api_key_config",false]],"api_key_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.api_key_config",false]],"api_key_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.api_key_config",false]],"api_key_secret (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.api_key_secret",false]],"api_key_secret (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.api_key_secret",false]],"api_key_secret_version (genai.types.apiauthapikeyconfig attribute)":[[0,"genai.types.ApiAuthApiKeyConfig.api_key_secret_version",false]],"api_key_secret_version (genai.types.apiauthapikeyconfigdict attribute)":[[0,"genai.types.ApiAuthApiKeyConfigDict.api_key_secret_version",false]],"api_key_string (genai.types.apiauthapikeyconfig attribute)":[[0,"genai.types.ApiAuthApiKeyConfig.api_key_string",false]],"api_key_string (genai.types.apiauthapikeyconfigdict attribute)":[[0,"genai.types.ApiAuthApiKeyConfigDict.api_key_string",false]],"api_key_string (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.api_key_string",false]],"api_key_string (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.api_key_string",false]],"api_spec (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.api_spec",false]],"api_spec (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.api_spec",false]],"api_spec_unspecified (genai.types.apispec attribute)":[[0,"genai.types.ApiSpec.API_SPEC_UNSPECIFIED",false]],"api_version (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.api_version",false]],"api_version (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.api_version",false]],"apiauthapikeyconfigdict (class in genai.types)":[[0,"genai.types.ApiAuthApiKeyConfigDict",false]],"apiauthdict (class in genai.types)":[[0,"genai.types.ApiAuthDict",false]],"apikeyconfigdict (class in genai.types)":[[0,"genai.types.ApiKeyConfigDict",false]],"apispec (class in genai.types)":[[0,"genai.types.ApiSpec",false]],"args (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.args",false]],"args (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.args",false]],"args (genai.types.toolcall attribute)":[[0,"genai.types.ToolCall.args",false]],"args (genai.types.toolcalldict attribute)":[[0,"genai.types.ToolCallDict.args",false]],"array (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.ARRAY",false]],"array (genai.types.type attribute)":[[0,"genai.types.Type.ARRAY",false]],"as_image() (genai.types.blob method)":[[0,"genai.types.Blob.as_image",false]],"as_image() (genai.types.part method)":[[0,"genai.types.Part.as_image",false]],"aspect_ratio (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.aspect_ratio",false]],"aspect_ratio (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.aspect_ratio",false]],"aspect_ratio (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.aspect_ratio",false]],"aspect_ratio (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.aspect_ratio",false]],"aspect_ratio (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.aspect_ratio",false]],"aspect_ratio (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.aspect_ratio",false]],"aspect_ratio (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.aspect_ratio",false]],"aspect_ratio (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.aspect_ratio",false]],"aspect_ratio (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.aspect_ratio",false]],"aspect_ratio_eight_by_one (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_EIGHT_BY_ONE",false]],"aspect_ratio_five_by_four (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FIVE_BY_FOUR",false]],"aspect_ratio_four_by_five (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FOUR_BY_FIVE",false]],"aspect_ratio_four_by_one (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FOUR_BY_ONE",false]],"aspect_ratio_four_by_three (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_FOUR_BY_THREE",false]],"aspect_ratio_nine_by_sixteen (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_NINE_BY_SIXTEEN",false]],"aspect_ratio_one_by_eight (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_ONE_BY_EIGHT",false]],"aspect_ratio_one_by_four (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_ONE_BY_FOUR",false]],"aspect_ratio_one_by_one (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_ONE_BY_ONE",false]],"aspect_ratio_sixteen_by_nine (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_SIXTEEN_BY_NINE",false]],"aspect_ratio_three_by_four (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_THREE_BY_FOUR",false]],"aspect_ratio_three_by_two (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_THREE_BY_TWO",false]],"aspect_ratio_twenty_one_by_nine (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_TWENTY_ONE_BY_NINE",false]],"aspect_ratio_two_by_three (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_TWO_BY_THREE",false]],"aspect_ratio_unspecified (genai.types.aspectratio attribute)":[[0,"genai.types.AspectRatio.ASPECT_RATIO_UNSPECIFIED",false]],"aspectratio (class in genai.types)":[[0,"genai.types.AspectRatio",false]],"asset (genai.types.videogenerationreferencetype attribute)":[[0,"genai.types.VideoGenerationReferenceType.ASSET",false]],"async_client_args (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.async_client_args",false]],"async_client_args (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.async_client_args",false]],"asyncclient (class in genai.client)":[[0,"genai.client.AsyncClient",false]],"asyncgemininextgenagents (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents",false]],"asyncgemininextgenenvironments (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments",false]],"asyncgemininextgeninteractions (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions",false]],"asyncgemininextgentriggers (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers",false]],"asyncgemininextgenwebhooks (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks",false]],"asynclive (class in genai.live)":[[0,"genai.live.AsyncLive",false]],"asyncmodels (class in genai.models)":[[0,"genai.models.AsyncModels",false]],"asyncsession (class in genai.live)":[[0,"genai.live.AsyncSession",false]],"asynctokens (class in genai.tokens)":[[0,"genai.tokens.AsyncTokens",false]],"asynctunings (class in genai.tunings)":[[0,"genai.tunings.AsyncTunings",false]],"attempts (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.attempts",false]],"attempts (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.attempts",false]],"audio (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.audio",false]],"audio (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.audio",false]],"audio (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.audio",false]],"audio (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.audio",false]],"audio (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.AUDIO",false]],"audio (genai.types.modality attribute)":[[0,"genai.types.Modality.AUDIO",false]],"audio (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.audio",false]],"audio (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.audio",false]],"audio_bitrate_bps (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.audio_bitrate_bps",false]],"audio_bitrate_bps (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.audio_bitrate_bps",false]],"audio_chunks (genai.types.livemusicservercontent attribute)":[[0,"genai.types.LiveMusicServerContent.audio_chunks",false]],"audio_chunks (genai.types.livemusicservercontentdict attribute)":[[0,"genai.types.LiveMusicServerContentDict.audio_chunks",false]],"audio_duration_seconds (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.audio_duration_seconds",false]],"audio_duration_seconds (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.audio_duration_seconds",false]],"audio_offset (genai.types.voiceactivity attribute)":[[0,"genai.types.VoiceActivity.audio_offset",false]],"audio_offset (genai.types.voiceactivitydict attribute)":[[0,"genai.types.VoiceActivityDict.audio_offset",false]],"audio_stream_end (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.audio_stream_end",false]],"audio_stream_end (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.audio_stream_end",false]],"audio_stream_end (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.audio_stream_end",false]],"audio_stream_end (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.audio_stream_end",false]],"audio_timestamp (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.audio_timestamp",false]],"audio_timestamp (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.audio_timestamp",false]],"audio_timestamp (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.audio_timestamp",false]],"audio_timestamp (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.audio_timestamp",false]],"audio_track_extraction (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.audio_track_extraction",false]],"audio_track_extraction (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.audio_track_extraction",false]],"audio_transcription (genai.types.part attribute)":[[0,"genai.types.Part.audio_transcription",false]],"audio_transcription (genai.types.partdict attribute)":[[0,"genai.types.PartDict.audio_transcription",false]],"audio_transcription_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.audio_transcription_config",false]],"audio_transcription_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.audio_transcription_config",false]],"audio_transcription_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.audio_transcription_config",false]],"audio_transcription_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.audio_transcription_config",false]],"audiochunkdict (class in genai.types)":[[0,"genai.types.AudioChunkDict",false]],"audioresponseformatdict (class in genai.types)":[[0,"genai.types.AudioResponseFormatDict",false]],"audiotranscriptionconfigdict (class in genai.types)":[[0,"genai.types.AudioTranscriptionConfigDict",false]],"auth_config (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.auth_config",false]],"auth_config (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.auth_config",false]],"auth_config (genai.types.googlemaps attribute)":[[0,"genai.types.GoogleMaps.auth_config",false]],"auth_config (genai.types.googlemapsdict attribute)":[[0,"genai.types.GoogleMapsDict.auth_config",false]],"auth_tokens (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.auth_tokens",false]],"auth_tokens (genai.client.client property)":[[0,"genai.client.Client.auth_tokens",false]],"auth_type (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.auth_type",false]],"auth_type (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.auth_type",false]],"auth_type_unspecified (genai.types.authtype attribute)":[[0,"genai.types.AuthType.AUTH_TYPE_UNSPECIFIED",false]],"authconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigDict",false]],"authconfiggoogleserviceaccountconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigGoogleServiceAccountConfigDict",false]],"authconfighttpbasicauthconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigHttpBasicAuthConfigDict",false]],"authconfigoauthconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigOauthConfigDict",false]],"authconfigoidcconfigdict (class in genai.types)":[[0,"genai.types.AuthConfigOidcConfigDict",false]],"author_attribution (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.author_attribution",false]],"author_attribution (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.author_attribution",false]],"authtokendict (class in genai.types)":[[0,"genai.types.AuthTokenDict",false]],"authtype (class in genai.types)":[[0,"genai.types.AuthType",false]],"auto (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.AUTO",false]],"auto (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.auto",false]],"auto_mode (genai.types.generationconfigroutingconfig attribute)":[[0,"genai.types.GenerationConfigRoutingConfig.auto_mode",false]],"auto_mode (genai.types.generationconfigroutingconfigdict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigDict.auto_mode",false]],"auto_truncate (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.auto_truncate",false]],"auto_truncate (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.auto_truncate",false]],"automatic_activity_detection (genai.types.realtimeinputconfig attribute)":[[0,"genai.types.RealtimeInputConfig.automatic_activity_detection",false]],"automatic_activity_detection (genai.types.realtimeinputconfigdict attribute)":[[0,"genai.types.RealtimeInputConfigDict.automatic_activity_detection",false]],"automatic_function_calling (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.automatic_function_calling",false]],"automatic_function_calling (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.automatic_function_calling",false]],"automatic_function_calling_history (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.automatic_function_calling_history",false]],"automaticactivitydetectiondict (class in genai.types)":[[0,"genai.types.AutomaticActivityDetectionDict",false]],"automaticfunctioncallingconfigdict (class in genai.types)":[[0,"genai.types.AutomaticFunctionCallingConfigDict",false]],"autorater_config (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.autorater_config",false]],"autorater_config (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.autorater_config",false]],"autorater_config (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.autorater_config",false]],"autorater_config (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.autorater_config",false]],"autorater_model (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.autorater_model",false]],"autorater_model (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.autorater_model",false]],"autorater_prompt (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.autorater_prompt",false]],"autorater_prompt (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.autorater_prompt",false]],"autorater_response_parse_config (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.autorater_response_parse_config",false]],"autorater_response_parse_config (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.autorater_response_parse_config",false]],"autorater_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.autorater_scorer",false]],"autorater_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.autorater_scorer",false]],"autoraterconfigdict (class in genai.types)":[[0,"genai.types.AutoraterConfigDict",false]],"avatar_config (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.avatar_config",false]],"avatar_config (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.avatar_config",false]],"avatar_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.avatar_config",false]],"avatar_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.avatar_config",false]],"avatar_name (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.avatar_name",false]],"avatar_name (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.avatar_name",false]],"avatarconfigdict (class in genai.types)":[[0,"genai.types.AvatarConfigDict",false]],"average (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.AVERAGE",false]],"avg_logprobs (genai.types.candidate attribute)":[[0,"genai.types.Candidate.avg_logprobs",false]],"avg_logprobs (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.avg_logprobs",false]],"b_flat_major_g_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.B_FLAT_MAJOR_G_MINOR",false]],"b_major_a_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.B_MAJOR_A_FLAT_MINOR",false]],"background (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.BACKGROUND",false]],"balanced (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.BALANCED",false]],"base_model (genai.types.createtuningjobparameters attribute)":[[0,"genai.types.CreateTuningJobParameters.base_model",false]],"base_model (genai.types.createtuningjobparametersdict attribute)":[[0,"genai.types.CreateTuningJobParametersDict.base_model",false]],"base_model (genai.types.pretunedmodel attribute)":[[0,"genai.types.PreTunedModel.base_model",false]],"base_model (genai.types.pretunedmodeldict attribute)":[[0,"genai.types.PreTunedModelDict.base_model",false]],"base_model (genai.types.tunedmodelinfo attribute)":[[0,"genai.types.TunedModelInfo.base_model",false]],"base_model (genai.types.tunedmodelinfodict attribute)":[[0,"genai.types.TunedModelInfoDict.base_model",false]],"base_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.base_model",false]],"base_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.base_model",false]],"base_steps (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.base_steps",false]],"base_steps (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.base_steps",false]],"base_steps (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.base_steps",false]],"base_steps (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.base_steps",false]],"base_teacher_model (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.base_teacher_model",false]],"base_teacher_model (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.base_teacher_model",false]],"base_teacher_model (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.base_teacher_model",false]],"base_teacher_model (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.base_teacher_model",false]],"base_teacher_model (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.base_teacher_model",false]],"base_teacher_model (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.base_teacher_model",false]],"base_url (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.base_url",false]],"base_url (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.base_url",false]],"base_url_resource_scope (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.base_url_resource_scope",false]],"base_url_resource_scope (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.base_url_resource_scope",false]],"baseline (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.BASELINE",false]],"baseline_response_field_name (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.baseline_response_field_name",false]],"baseline_response_field_name (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.baseline_response_field_name",false]],"batch_jobs (genai.types.listbatchjobsresponse attribute)":[[0,"genai.types.ListBatchJobsResponse.batch_jobs",false]],"batch_jobs (genai.types.listbatchjobsresponsedict attribute)":[[0,"genai.types.ListBatchJobsResponseDict.batch_jobs",false]],"batch_size (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.batch_size",false]],"batch_size (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.batch_size",false]],"batch_size (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.batch_size",false]],"batch_size (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.batch_size",false]],"batch_size (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.batch_size",false]],"batch_size (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.batch_size",false]],"batch_size (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.batch_size",false]],"batch_size (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.batch_size",false]],"batches (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.batches",false]],"batches (genai.client.client property)":[[0,"genai.client.Client.batches",false]],"batchjobdestinationdict (class in genai.types)":[[0,"genai.types.BatchJobDestinationDict",false]],"batchjobdict (class in genai.types)":[[0,"genai.types.BatchJobDict",false]],"batchjoboutputinfodict (class in genai.types)":[[0,"genai.types.BatchJobOutputInfoDict",false]],"batchjobsourcedict (class in genai.types)":[[0,"genai.types.BatchJobSourceDict",false]],"behavior (class in genai.types)":[[0,"genai.types.Behavior",false]],"behavior (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.behavior",false]],"behavior (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.behavior",false]],"beta (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.beta",false]],"beta (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.beta",false]],"beta (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.beta",false]],"beta (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.beta",false]],"bigquery_destination (genai.types.vertexmultimodaldatasetdestination attribute)":[[0,"genai.types.VertexMultimodalDatasetDestination.bigquery_destination",false]],"bigquery_destination (genai.types.vertexmultimodaldatasetdestinationdict attribute)":[[0,"genai.types.VertexMultimodalDatasetDestinationDict.bigquery_destination",false]],"bigquery_output_table (genai.types.batchjoboutputinfo attribute)":[[0,"genai.types.BatchJobOutputInfo.bigquery_output_table",false]],"bigquery_output_table (genai.types.batchjoboutputinfodict attribute)":[[0,"genai.types.BatchJobOutputInfoDict.bigquery_output_table",false]],"bigquery_source (genai.types.evaluationdataset attribute)":[[0,"genai.types.EvaluationDataset.bigquery_source",false]],"bigquery_source (genai.types.evaluationdatasetdict attribute)":[[0,"genai.types.EvaluationDatasetDict.bigquery_source",false]],"bigquery_uri (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.bigquery_uri",false]],"bigquery_uri (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.bigquery_uri",false]],"bigquery_uri (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.bigquery_uri",false]],"bigquery_uri (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.bigquery_uri",false]],"bigquerysourcedict (class in genai.types)":[[0,"genai.types.BigQuerySourceDict",false]],"billable_character_count (genai.types.embedcontentmetadata attribute)":[[0,"genai.types.EmbedContentMetadata.billable_character_count",false]],"billable_character_count (genai.types.embedcontentmetadatadict attribute)":[[0,"genai.types.EmbedContentMetadataDict.billable_character_count",false]],"billable_sum (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.billable_sum",false]],"billable_sum (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.billable_sum",false]],"binary_color_threshold (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.binary_color_threshold",false]],"binary_color_threshold (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.binary_color_threshold",false]],"bit_rate (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.bit_rate",false]],"bit_rate (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.bit_rate",false]],"bleu (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.BLEU",false]],"bleu_metric_value (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.bleu_metric_value",false]],"bleu_metric_value (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.bleu_metric_value",false]],"bleu_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.bleu_spec",false]],"bleu_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.bleu_spec",false]],"bleumetricvaluedict (class in genai.types)":[[0,"genai.types.BleuMetricValueDict",false]],"bleuspecdict (class in genai.types)":[[0,"genai.types.BleuSpecDict",false]],"blobdict (class in genai.types)":[[0,"genai.types.BlobDict",false]],"block_high_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_HIGH_AND_ABOVE",false]],"block_higher_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_HIGHER_AND_ABOVE",false]],"block_low_and_above (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_LOW_AND_ABOVE",false]],"block_low_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_LOW_AND_ABOVE",false]],"block_low_and_above (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_LOW_AND_ABOVE",false]],"block_medium_and_above (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE",false]],"block_medium_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_MEDIUM_AND_ABOVE",false]],"block_medium_and_above (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_MEDIUM_AND_ABOVE",false]],"block_none (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_NONE",false]],"block_none (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_NONE",false]],"block_only_extremely_high (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_ONLY_EXTREMELY_HIGH",false]],"block_only_high (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.BLOCK_ONLY_HIGH",false]],"block_only_high (genai.types.safetyfilterlevel attribute)":[[0,"genai.types.SafetyFilterLevel.BLOCK_ONLY_HIGH",false]],"block_prominent_people (genai.types.prominentpeople attribute)":[[0,"genai.types.ProminentPeople.BLOCK_PROMINENT_PEOPLE",false]],"block_reason (genai.types.generatecontentresponsepromptfeedback attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedback.block_reason",false]],"block_reason (genai.types.generatecontentresponsepromptfeedbackdict attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict.block_reason",false]],"block_reason_message (genai.types.generatecontentresponsepromptfeedback attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedback.block_reason_message",false]],"block_reason_message (genai.types.generatecontentresponsepromptfeedbackdict attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict.block_reason_message",false]],"block_very_high_and_above (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.BLOCK_VERY_HIGH_AND_ABOVE",false]],"blocked (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.blocked",false]],"blocked (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.blocked",false]],"blocked_reason_unspecified (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.BLOCKED_REASON_UNSPECIFIED",false]],"blockedreason (class in genai.types)":[[0,"genai.types.BlockedReason",false]],"blocking (genai.types.behavior attribute)":[[0,"genai.types.Behavior.BLOCKING",false]],"blocking_confidence (genai.types.enterprisewebsearch attribute)":[[0,"genai.types.EnterpriseWebSearch.blocking_confidence",false]],"blocking_confidence (genai.types.enterprisewebsearchdict attribute)":[[0,"genai.types.EnterpriseWebSearchDict.blocking_confidence",false]],"blocking_confidence (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.blocking_confidence",false]],"blocking_confidence (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.blocking_confidence",false]],"blocklist (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.BLOCKLIST",false]],"blocklist (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.BLOCKLIST",false]],"blocklist (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.BLOCKLIST",false]],"body (genai.types.httpresponse attribute)":[[0,"genai.types.HttpResponse.body",false]],"body (genai.types.httpresponsedict attribute)":[[0,"genai.types.HttpResponseDict.body",false]],"body_segments (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.body_segments",false]],"body_segments (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.body_segments",false]],"body_segments (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.body_segments",false]],"body_segments (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.body_segments",false]],"bool_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.bool_value",false]],"bool_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.bool_value",false]],"boolean (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.BOOLEAN",false]],"boolean (genai.types.type attribute)":[[0,"genai.types.Type.BOOLEAN",false]],"bpm (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.bpm",false]],"bpm (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.bpm",false]],"brightness (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.brightness",false]],"brightness (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.brightness",false]],"buckets (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.buckets",false]],"buckets (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.buckets",false]],"buckets (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.buckets",false]],"buckets (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.buckets",false]],"c_major_a_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.C_MAJOR_A_MINOR",false]],"cache_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.cache_tokens_details",false]],"cache_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.cache_tokens_details",false]],"cache_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.cache_tokens_details",false]],"cache_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.cache_tokens_details",false]],"cached_content (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.cached_content",false]],"cached_content (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.cached_content",false]],"cached_content_token_count (genai.types.counttokensresponse attribute)":[[0,"genai.types.CountTokensResponse.cached_content_token_count",false]],"cached_content_token_count (genai.types.counttokensresponsedict attribute)":[[0,"genai.types.CountTokensResponseDict.cached_content_token_count",false]],"cached_content_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.cached_content_token_count",false]],"cached_content_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.cached_content_token_count",false]],"cached_content_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.cached_content_token_count",false]],"cached_content_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.cached_content_token_count",false]],"cached_contents (genai.types.listcachedcontentsresponse attribute)":[[0,"genai.types.ListCachedContentsResponse.cached_contents",false]],"cached_contents (genai.types.listcachedcontentsresponsedict attribute)":[[0,"genai.types.ListCachedContentsResponseDict.cached_contents",false]],"cachedcontentdict (class in genai.types)":[[0,"genai.types.CachedContentDict",false]],"cachedcontentusagemetadatadict (class in genai.types)":[[0,"genai.types.CachedContentUsageMetadataDict",false]],"caches (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.caches",false]],"caches (genai.client.client property)":[[0,"genai.client.Client.caches",false]],"cancel() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.cancel",false]],"cancel() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.cancel",false]],"cancel() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.cancel",false]],"cancel() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.cancel",false]],"cancelbatchjobconfigdict (class in genai.types)":[[0,"genai.types.CancelBatchJobConfigDict",false]],"canceltuningjobconfigdict (class in genai.types)":[[0,"genai.types.CancelTuningJobConfigDict",false]],"canceltuningjobresponsedict (class in genai.types)":[[0,"genai.types.CancelTuningJobResponseDict",false]],"candidate (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.CANDIDATE",false]],"candidate_count (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.candidate_count",false]],"candidate_count (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.candidate_count",false]],"candidate_count (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.candidate_count",false]],"candidate_count (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.candidate_count",false]],"candidate_response_field_name (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.candidate_response_field_name",false]],"candidate_response_field_name (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.candidate_response_field_name",false]],"candidatedict (class in genai.types)":[[0,"genai.types.CandidateDict",false]],"candidates (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.candidates",false]],"candidates (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.candidates",false]],"candidates (genai.types.logprobsresulttopcandidates attribute)":[[0,"genai.types.LogprobsResultTopCandidates.candidates",false]],"candidates (genai.types.logprobsresulttopcandidatesdict attribute)":[[0,"genai.types.LogprobsResultTopCandidatesDict.candidates",false]],"candidates_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.candidates_token_count",false]],"candidates_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.candidates_token_count",false]],"candidates_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.candidates_tokens_details",false]],"candidates_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.candidates_tokens_details",false]],"categories (genai.types.safetyattributes attribute)":[[0,"genai.types.SafetyAttributes.categories",false]],"categories (genai.types.safetyattributesdict attribute)":[[0,"genai.types.SafetyAttributesDict.categories",false]],"category (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.category",false]],"category (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.category",false]],"category (genai.types.safetysetting attribute)":[[0,"genai.types.SafetySetting.category",false]],"category (genai.types.safetysettingdict attribute)":[[0,"genai.types.SafetySettingDict.category",false]],"chats (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.chats",false]],"chats (genai.client.client property)":[[0,"genai.client.Client.chats",false]],"checkpoint_id (genai.types.checkpoint attribute)":[[0,"genai.types.Checkpoint.checkpoint_id",false]],"checkpoint_id (genai.types.checkpointdict attribute)":[[0,"genai.types.CheckpointDict.checkpoint_id",false]],"checkpoint_id (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.checkpoint_id",false]],"checkpoint_id (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.checkpoint_id",false]],"checkpoint_id (genai.types.pretunedmodel attribute)":[[0,"genai.types.PreTunedModel.checkpoint_id",false]],"checkpoint_id (genai.types.pretunedmodeldict attribute)":[[0,"genai.types.PreTunedModelDict.checkpoint_id",false]],"checkpoint_id (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.checkpoint_id",false]],"checkpoint_id (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.checkpoint_id",false]],"checkpoint_interval (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.checkpoint_interval",false]],"checkpoint_interval (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.checkpoint_interval",false]],"checkpoint_interval (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.checkpoint_interval",false]],"checkpoint_interval (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.checkpoint_interval",false]],"checkpointdict (class in genai.types)":[[0,"genai.types.CheckpointDict",false]],"checkpoints (genai.types.model attribute)":[[0,"genai.types.Model.checkpoints",false]],"checkpoints (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.checkpoints",false]],"checkpoints (genai.types.tunedmodel attribute)":[[0,"genai.types.TunedModel.checkpoints",false]],"checkpoints (genai.types.tunedmodeldict attribute)":[[0,"genai.types.TunedModelDict.checkpoints",false]],"chosen_candidates (genai.types.logprobsresult attribute)":[[0,"genai.types.LogprobsResult.chosen_candidates",false]],"chosen_candidates (genai.types.logprobsresultdict attribute)":[[0,"genai.types.LogprobsResultDict.chosen_candidates",false]],"chunk_id (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.chunk_id",false]],"chunk_id (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.chunk_id",false]],"chunking_config (genai.types.importfileconfig attribute)":[[0,"genai.types.ImportFileConfig.chunking_config",false]],"chunking_config (genai.types.importfileconfigdict attribute)":[[0,"genai.types.ImportFileConfigDict.chunking_config",false]],"chunking_config (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.chunking_config",false]],"chunking_config (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.chunking_config",false]],"chunkingconfigdict (class in genai.types)":[[0,"genai.types.ChunkingConfigDict",false]],"citation_metadata (genai.types.candidate attribute)":[[0,"genai.types.Candidate.citation_metadata",false]],"citation_metadata (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.citation_metadata",false]],"citationdict (class in genai.types)":[[0,"genai.types.CitationDict",false]],"citationmetadatadict (class in genai.types)":[[0,"genai.types.CitationMetadataDict",false]],"citations (genai.types.citationmetadata attribute)":[[0,"genai.types.CitationMetadata.citations",false]],"citations (genai.types.citationmetadatadict attribute)":[[0,"genai.types.CitationMetadataDict.citations",false]],"client (class in genai.client)":[[0,"genai.client.Client",false]],"client_args (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.client_args",false]],"client_args (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.client_args",false]],"client_content (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.client_content",false]],"client_content (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.client_content",false]],"client_content (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.client_content",false]],"client_content (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.client_content",false]],"client_content (genai.types.livemusicsourcemetadata attribute)":[[0,"genai.types.LiveMusicSourceMetadata.client_content",false]],"client_content (genai.types.livemusicsourcemetadatadict attribute)":[[0,"genai.types.LiveMusicSourceMetadataDict.client_content",false]],"client_mode (genai.client.debugconfig attribute)":[[0,"genai.client.DebugConfig.client_mode",false]],"close() (genai.client.client method)":[[0,"genai.client.Client.close",false]],"close() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.close",false]],"cloud_run_reward_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.cloud_run_reward_scorer",false]],"cloud_run_reward_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.cloud_run_reward_scorer",false]],"cloud_run_uri (genai.types.reinforcementtuningcloudrunrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningCloudRunRewardScorer.cloud_run_uri",false]],"cloud_run_uri (genai.types.reinforcementtuningcloudrunrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningCloudRunRewardScorerDict.cloud_run_uri",false]],"code (genai.types.executablecode attribute)":[[0,"genai.types.ExecutableCode.code",false]],"code (genai.types.executablecodedict attribute)":[[0,"genai.types.ExecutableCodeDict.code",false]],"code (genai.types.filestatus attribute)":[[0,"genai.types.FileStatus.code",false]],"code (genai.types.filestatusdict attribute)":[[0,"genai.types.FileStatusDict.code",false]],"code (genai.types.googlerpcstatus attribute)":[[0,"genai.types.GoogleRpcStatus.code",false]],"code (genai.types.googlerpcstatusdict attribute)":[[0,"genai.types.GoogleRpcStatusDict.code",false]],"code (genai.types.joberror attribute)":[[0,"genai.types.JobError.code",false]],"code (genai.types.joberrordict attribute)":[[0,"genai.types.JobErrorDict.code",false]],"code_execution (genai.types.tool attribute)":[[0,"genai.types.Tool.code_execution",false]],"code_execution (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.code_execution",false]],"code_execution_result (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.code_execution_result",false]],"code_execution_result (genai.types.part attribute)":[[0,"genai.types.Part.code_execution_result",false]],"code_execution_result (genai.types.partdict attribute)":[[0,"genai.types.PartDict.code_execution_result",false]],"code_execution_reward_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.code_execution_reward_scorer",false]],"code_execution_reward_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.code_execution_reward_scorer",false]],"codeexecutionresultdict (class in genai.types)":[[0,"genai.types.CodeExecutionResultDict",false]],"collection (genai.types.resourcescope attribute)":[[0,"genai.types.ResourceScope.COLLECTION",false]],"comment (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.comment",false]],"comment (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.comment",false]],"communication_tool (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.COMMUNICATION_TOOL",false]],"completed_epoch_count (genai.types.tuningjobmetadata attribute)":[[0,"genai.types.TuningJobMetadata.completed_epoch_count",false]],"completed_epoch_count (genai.types.tuningjobmetadatadict attribute)":[[0,"genai.types.TuningJobMetadataDict.completed_epoch_count",false]],"completed_step_count (genai.types.tuningjobmetadata attribute)":[[0,"genai.types.TuningJobMetadata.completed_step_count",false]],"completed_step_count (genai.types.tuningjobmetadatadict attribute)":[[0,"genai.types.TuningJobMetadataDict.completed_step_count",false]],"completion (genai.types.geminipreferenceexamplecompletion attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletion.completion",false]],"completion (genai.types.geminipreferenceexamplecompletiondict attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletionDict.completion",false]],"completion_stats (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.completion_stats",false]],"completion_stats (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.completion_stats",false]],"completions (genai.types.geminipreferenceexample attribute)":[[0,"genai.types.GeminiPreferenceExample.completions",false]],"completions (genai.types.geminipreferenceexampledict attribute)":[[0,"genai.types.GeminiPreferenceExampleDict.completions",false]],"completionstatsdict (class in genai.types)":[[0,"genai.types.CompletionStatsDict",false]],"composite_reward_config (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.composite_reward_config",false]],"composite_reward_config (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.composite_reward_config",false]],"composite_reward_config (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.composite_reward_config",false]],"composite_reward_config (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.composite_reward_config",false]],"compositereinforcementtuningrewardconfigdict (class in genai.types)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigDict",false]],"compositereinforcementtuningrewardconfigweightedrewardconfigdict (class in genai.types)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict",false]],"compression_quality (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.compression_quality",false]],"compression_quality (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.compression_quality",false]],"compression_quality (genai.types.imageconfigimageoutputoptions attribute)":[[0,"genai.types.ImageConfigImageOutputOptions.compression_quality",false]],"compression_quality (genai.types.imageconfigimageoutputoptionsdict attribute)":[[0,"genai.types.ImageConfigImageOutputOptionsDict.compression_quality",false]],"computation_based_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.computation_based_metric_spec",false]],"computation_based_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.computation_based_metric_spec",false]],"computation_based_metric_type_unspecified (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.COMPUTATION_BASED_METRIC_TYPE_UNSPECIFIED",false]],"computationbasedmetricspecdict (class in genai.types)":[[0,"genai.types.ComputationBasedMetricSpecDict",false]],"computationbasedmetrictype (class in genai.types)":[[0,"genai.types.ComputationBasedMetricType",false]],"compute_tokens() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.compute_tokens",false]],"compute_tokens() (genai.models.models method)":[[0,"genai.models.Models.compute_tokens",false]],"computer_use (genai.types.tool attribute)":[[0,"genai.types.Tool.computer_use",false]],"computer_use (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.computer_use",false]],"computerusedict (class in genai.types)":[[0,"genai.types.ComputerUseDict",false]],"computetokensconfigdict (class in genai.types)":[[0,"genai.types.ComputeTokensConfigDict",false]],"computetokensresponsedict (class in genai.types)":[[0,"genai.types.ComputeTokensResponseDict",false]],"computetokensresultdict (class in genai.types)":[[0,"genai.types.ComputeTokensResultDict",false]],"confidence_scores (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.confidence_scores",false]],"confidence_scores (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.confidence_scores",false]],"confidence_threshold (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.confidence_threshold",false]],"confidence_threshold (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.confidence_threshold",false]],"config (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.config",false]],"config (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.config",false]],"config (genai.types.createauthtokenparameters attribute)":[[0,"genai.types.CreateAuthTokenParameters.config",false]],"config (genai.types.createauthtokenparametersdict attribute)":[[0,"genai.types.CreateAuthTokenParametersDict.config",false]],"config (genai.types.createtuningjobparameters attribute)":[[0,"genai.types.CreateTuningJobParameters.config",false]],"config (genai.types.createtuningjobparametersdict attribute)":[[0,"genai.types.CreateTuningJobParametersDict.config",false]],"config (genai.types.embedcontentbatch attribute)":[[0,"genai.types.EmbedContentBatch.config",false]],"config (genai.types.embedcontentbatchdict attribute)":[[0,"genai.types.EmbedContentBatchDict.config",false]],"config (genai.types.embedcontentparameters attribute)":[[0,"genai.types.EmbedContentParameters.config",false]],"config (genai.types.embedcontentparametersdict attribute)":[[0,"genai.types.EmbedContentParametersDict.config",false]],"config (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.config",false]],"config (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.config",false]],"config (genai.types.liveconnectconstraints attribute)":[[0,"genai.types.LiveConnectConstraints.config",false]],"config (genai.types.liveconnectconstraintsdict attribute)":[[0,"genai.types.LiveConnectConstraintsDict.config",false]],"config (genai.types.liveconnectparameters attribute)":[[0,"genai.types.LiveConnectParameters.config",false]],"config (genai.types.liveconnectparametersdict attribute)":[[0,"genai.types.LiveConnectParametersDict.config",false]],"config (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.config",false]],"config (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.config",false]],"config (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.config",false]],"config (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.config",false]],"config (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.config",false]],"config (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.config",false]],"config (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.config",false]],"config (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.config",false]],"connect() (genai.live.asynclive method)":[[0,"genai.live.AsyncLive.connect",false]],"consent_audio (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.consent_audio",false]],"consent_audio (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.consent_audio",false]],"content (genai.types.candidate attribute)":[[0,"genai.types.Candidate.content",false]],"content (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.content",false]],"content_type (genai.types.safetyattributes attribute)":[[0,"genai.types.SafetyAttributes.content_type",false]],"content_type (genai.types.safetyattributesdict attribute)":[[0,"genai.types.SafetyAttributesDict.content_type",false]],"contentdict (class in genai.types)":[[0,"genai.types.ContentDict",false]],"contentembeddingdict (class in genai.types)":[[0,"genai.types.ContentEmbeddingDict",false]],"contentembeddingstatisticsdict (class in genai.types)":[[0,"genai.types.ContentEmbeddingStatisticsDict",false]],"contentreferenceimagedict (class in genai.types)":[[0,"genai.types.ContentReferenceImageDict",false]],"contents (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.contents",false]],"contents (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.contents",false]],"contents (genai.types.embedcontentbatch attribute)":[[0,"genai.types.EmbedContentBatch.contents",false]],"contents (genai.types.embedcontentbatchdict attribute)":[[0,"genai.types.EmbedContentBatchDict.contents",false]],"contents (genai.types.embedcontentparameters attribute)":[[0,"genai.types.EmbedContentParameters.contents",false]],"contents (genai.types.embedcontentparametersdict attribute)":[[0,"genai.types.EmbedContentParametersDict.contents",false]],"contents (genai.types.geminipreferenceexample attribute)":[[0,"genai.types.GeminiPreferenceExample.contents",false]],"contents (genai.types.geminipreferenceexampledict attribute)":[[0,"genai.types.GeminiPreferenceExampleDict.contents",false]],"contents (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.contents",false]],"contents (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.contents",false]],"contents (genai.types.reinforcementtuningexample attribute)":[[0,"genai.types.ReinforcementTuningExample.contents",false]],"contents (genai.types.reinforcementtuningexampledict attribute)":[[0,"genai.types.ReinforcementTuningExampleDict.contents",false]],"contents_per_example_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.contents_per_example_distribution",false]],"contents_per_example_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.contents_per_example_distribution",false]],"context_window_compression (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.context_window_compression",false]],"context_window_compression (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.context_window_compression",false]],"context_window_compression (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.context_window_compression",false]],"context_window_compression (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.context_window_compression",false]],"contextwindowcompressionconfigdict (class in genai.types)":[[0,"genai.types.ContextWindowCompressionConfigDict",false]],"control_image_config (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.control_image_config",false]],"control_type (genai.types.controlreferenceconfig attribute)":[[0,"genai.types.ControlReferenceConfig.control_type",false]],"control_type (genai.types.controlreferenceconfigdict attribute)":[[0,"genai.types.ControlReferenceConfigDict.control_type",false]],"control_type_canny (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_CANNY",false]],"control_type_default (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_DEFAULT",false]],"control_type_face_mesh (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_FACE_MESH",false]],"control_type_scribble (genai.types.controlreferencetype attribute)":[[0,"genai.types.ControlReferenceType.CONTROL_TYPE_SCRIBBLE",false]],"controlreferenceconfigdict (class in genai.types)":[[0,"genai.types.ControlReferenceConfigDict",false]],"controlreferenceimagedict (class in genai.types)":[[0,"genai.types.ControlReferenceImageDict",false]],"controlreferencetype (class in genai.types)":[[0,"genai.types.ControlReferenceType",false]],"correct_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer.correct_answer_reward",false]],"correct_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict.correct_answer_reward",false]],"correct_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.correct_answer_reward",false]],"correct_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.correct_answer_reward",false]],"count (genai.types.datasetdistributiondistributionbucket attribute)":[[0,"genai.types.DatasetDistributionDistributionBucket.count",false]],"count (genai.types.datasetdistributiondistributionbucketdict attribute)":[[0,"genai.types.DatasetDistributionDistributionBucketDict.count",false]],"count (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucket.count",false]],"count (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.count",false]],"count_tokens() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.count_tokens",false]],"count_tokens() (genai.models.models method)":[[0,"genai.models.Models.count_tokens",false]],"counttokensconfigdict (class in genai.types)":[[0,"genai.types.CountTokensConfigDict",false]],"counttokensresponsedict (class in genai.types)":[[0,"genai.types.CountTokensResponseDict",false]],"counttokensresultdict (class in genai.types)":[[0,"genai.types.CountTokensResultDict",false]],"create() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.create",false]],"create() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.create",false]],"create() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.create",false]],"create() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.create",false]],"create() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.create",false]],"create() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.create",false]],"create() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.create",false]],"create() (genai.tokens.asynctokens method)":[[0,"genai.tokens.AsyncTokens.create",false]],"create() (genai.tokens.tokens method)":[[0,"genai.tokens.Tokens.create",false]],"create_environment() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.create_environment",false]],"create_environment() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.create_environment",false]],"create_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.create_time",false]],"create_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.create_time",false]],"create_time (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.create_time",false]],"create_time (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.create_time",false]],"create_time (genai.types.document attribute)":[[0,"genai.types.Document.create_time",false]],"create_time (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.create_time",false]],"create_time (genai.types.file attribute)":[[0,"genai.types.File.create_time",false]],"create_time (genai.types.filedict attribute)":[[0,"genai.types.FileDict.create_time",false]],"create_time (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.create_time",false]],"create_time (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.create_time",false]],"create_time (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.create_time",false]],"create_time (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.create_time",false]],"create_time (genai.types.tunedmodelinfo attribute)":[[0,"genai.types.TunedModelInfo.create_time",false]],"create_time (genai.types.tunedmodelinfodict attribute)":[[0,"genai.types.TunedModelInfoDict.create_time",false]],"create_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.create_time",false]],"create_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.create_time",false]],"createauthtokenconfigdict (class in genai.types)":[[0,"genai.types.CreateAuthTokenConfigDict",false]],"createauthtokenparametersdict (class in genai.types)":[[0,"genai.types.CreateAuthTokenParametersDict",false]],"createbatchjobconfigdict (class in genai.types)":[[0,"genai.types.CreateBatchJobConfigDict",false]],"createcachedcontentconfigdict (class in genai.types)":[[0,"genai.types.CreateCachedContentConfigDict",false]],"createembeddingsbatchjobconfigdict (class in genai.types)":[[0,"genai.types.CreateEmbeddingsBatchJobConfigDict",false]],"createfileconfigdict (class in genai.types)":[[0,"genai.types.CreateFileConfigDict",false]],"createfileresponsedict (class in genai.types)":[[0,"genai.types.CreateFileResponseDict",false]],"createfilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.CreateFileSearchStoreConfigDict",false]],"createtuningjobconfigdict (class in genai.types)":[[0,"genai.types.CreateTuningJobConfigDict",false]],"createtuningjobparametersdict (class in genai.types)":[[0,"genai.types.CreateTuningJobParametersDict",false]],"credential_secret (genai.types.authconfighttpbasicauthconfig attribute)":[[0,"genai.types.AuthConfigHttpBasicAuthConfig.credential_secret",false]],"credential_secret (genai.types.authconfighttpbasicauthconfigdict attribute)":[[0,"genai.types.AuthConfigHttpBasicAuthConfigDict.credential_secret",false]],"credentials (genai.client.client attribute)":[[0,"genai.client.Client.credentials",false]],"crop (genai.types.imageresizemode attribute)":[[0,"genai.types.ImageResizeMode.CROP",false]],"custom_base_model (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.custom_base_model",false]],"custom_base_model (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.custom_base_model",false]],"custom_base_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.custom_base_model",false]],"custom_base_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.custom_base_model",false]],"custom_code_execution_result (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.custom_code_execution_result",false]],"custom_code_execution_result (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.custom_code_execution_result",false]],"custom_code_execution_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.custom_code_execution_spec",false]],"custom_code_execution_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.custom_code_execution_spec",false]],"custom_code_parser_config (genai.types.evaluationparserconfig attribute)":[[0,"genai.types.EvaluationParserConfig.custom_code_parser_config",false]],"custom_code_parser_config (genai.types.evaluationparserconfigdict attribute)":[[0,"genai.types.EvaluationParserConfigDict.custom_code_parser_config",false]],"custom_configs (genai.types.toolexaaisearch attribute)":[[0,"genai.types.ToolExaAiSearch.custom_configs",false]],"custom_configs (genai.types.toolexaaisearchdict attribute)":[[0,"genai.types.ToolExaAiSearchDict.custom_configs",false]],"custom_configs (genai.types.toolparallelaisearch attribute)":[[0,"genai.types.ToolParallelAiSearch.custom_configs",false]],"custom_configs (genai.types.toolparallelaisearchdict attribute)":[[0,"genai.types.ToolParallelAiSearchDict.custom_configs",false]],"custom_function (genai.types.metric attribute)":[[0,"genai.types.Metric.custom_function",false]],"custom_function (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.custom_function",false]],"custom_metadata (genai.types.document attribute)":[[0,"genai.types.Document.custom_metadata",false]],"custom_metadata (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.custom_metadata",false]],"custom_metadata (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.custom_metadata",false]],"custom_metadata (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.custom_metadata",false]],"custom_metadata (genai.types.importfileconfig attribute)":[[0,"genai.types.ImportFileConfig.custom_metadata",false]],"custom_metadata (genai.types.importfileconfigdict attribute)":[[0,"genai.types.ImportFileConfigDict.custom_metadata",false]],"custom_metadata (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.custom_metadata",false]],"custom_metadata (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.custom_metadata",false]],"custom_output (genai.types.pairwisemetricresult attribute)":[[0,"genai.types.PairwiseMetricResult.custom_output",false]],"custom_output (genai.types.pairwisemetricresultdict attribute)":[[0,"genai.types.PairwiseMetricResultDict.custom_output",false]],"custom_output (genai.types.pointwisemetricresult attribute)":[[0,"genai.types.PointwiseMetricResult.custom_output",false]],"custom_output (genai.types.pointwisemetricresultdict attribute)":[[0,"genai.types.PointwiseMetricResultDict.custom_output",false]],"custom_output_format_config (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.custom_output_format_config",false]],"custom_output_format_config (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.custom_output_format_config",false]],"custom_output_format_config (genai.types.pointwisemetricspec attribute)":[[0,"genai.types.PointwiseMetricSpec.custom_output_format_config",false]],"custom_output_format_config (genai.types.pointwisemetricspecdict attribute)":[[0,"genai.types.PointwiseMetricSpecDict.custom_output_format_config",false]],"custom_vocabulary (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.custom_vocabulary",false]],"custom_vocabulary (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.custom_vocabulary",false]],"customcodeexecutionresultdict (class in genai.types)":[[0,"genai.types.CustomCodeExecutionResultDict",false]],"customcodeexecutionspecdict (class in genai.types)":[[0,"genai.types.CustomCodeExecutionSpecDict",false]],"customized_avatar (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.customized_avatar",false]],"customized_avatar (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.customized_avatar",false]],"customizedavatardict (class in genai.types)":[[0,"genai.types.CustomizedAvatarDict",false]],"custommetadatadict (class in genai.types)":[[0,"genai.types.CustomMetadataDict",false]],"customoutputdict (class in genai.types)":[[0,"genai.types.CustomOutputDict",false]],"customoutputformatconfigdict (class in genai.types)":[[0,"genai.types.CustomOutputFormatConfigDict",false]],"d_flat_major_b_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.D_FLAT_MAJOR_B_FLAT_MINOR",false]],"d_major_b_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.D_MAJOR_B_MINOR",false]],"data (genai.types.audiochunk attribute)":[[0,"genai.types.AudioChunk.data",false]],"data (genai.types.audiochunkdict attribute)":[[0,"genai.types.AudioChunkDict.data",false]],"data (genai.types.blob attribute)":[[0,"genai.types.Blob.data",false]],"data (genai.types.blobdict attribute)":[[0,"genai.types.BlobDict.data",false]],"data (genai.types.functionresponseblob attribute)":[[0,"genai.types.FunctionResponseBlob.data",false]],"data (genai.types.functionresponseblobdict attribute)":[[0,"genai.types.FunctionResponseBlobDict.data",false]],"data (genai.types.liveservermessage property)":[[0,"genai.types.LiveServerMessage.data",false]],"data_modification (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.DATA_MODIFICATION",false]],"data_store (genai.types.vertexaisearchdatastorespec attribute)":[[0,"genai.types.VertexAISearchDataStoreSpec.data_store",false]],"data_store (genai.types.vertexaisearchdatastorespecdict attribute)":[[0,"genai.types.VertexAISearchDataStoreSpecDict.data_store",false]],"data_store_specs (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.data_store_specs",false]],"data_store_specs (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.data_store_specs",false]],"dataset (genai.types.aggregationoutput attribute)":[[0,"genai.types.AggregationOutput.dataset",false]],"dataset (genai.types.aggregationoutputdict attribute)":[[0,"genai.types.AggregationOutputDict.dataset",false]],"datasetdistributiondict (class in genai.types)":[[0,"genai.types.DatasetDistributionDict",false]],"datasetdistributiondistributionbucketdict (class in genai.types)":[[0,"genai.types.DatasetDistributionDistributionBucketDict",false]],"datasetstatsdict (class in genai.types)":[[0,"genai.types.DatasetStatsDict",false]],"datastore (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.datastore",false]],"datastore (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.datastore",false]],"day (genai.types.googletypedate attribute)":[[0,"genai.types.GoogleTypeDate.day",false]],"day (genai.types.googletypedatedict attribute)":[[0,"genai.types.GoogleTypeDateDict.day",false]],"debug_config (genai.client.client attribute)":[[0,"genai.client.Client.debug_config",false]],"default (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.default",false]],"default (genai.types.schema attribute)":[[0,"genai.types.Schema.default",false]],"default (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.default",false]],"default_checkpoint_id (genai.types.model attribute)":[[0,"genai.types.Model.default_checkpoint_id",false]],"default_checkpoint_id (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.default_checkpoint_id",false]],"default_checkpoint_id (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.default_checkpoint_id",false]],"default_checkpoint_id (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.default_checkpoint_id",false]],"defs (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.defs",false]],"defs (genai.types.schema attribute)":[[0,"genai.types.Schema.defs",false]],"defs (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.defs",false]],"delete() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.delete",false]],"delete() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.delete",false]],"delete() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.delete",false]],"delete() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.delete",false]],"delete() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.delete",false]],"delete() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.delete",false]],"delete() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.delete",false]],"delete() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.delete",false]],"delete() (genai.models.models method)":[[0,"genai.models.Models.delete",false]],"delete_environment() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.delete_environment",false]],"delete_environment() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.delete_environment",false]],"deletebatchjobconfigdict (class in genai.types)":[[0,"genai.types.DeleteBatchJobConfigDict",false]],"deletecachedcontentconfigdict (class in genai.types)":[[0,"genai.types.DeleteCachedContentConfigDict",false]],"deletecachedcontentresponsedict (class in genai.types)":[[0,"genai.types.DeleteCachedContentResponseDict",false]],"deletedocumentconfigdict (class in genai.types)":[[0,"genai.types.DeleteDocumentConfigDict",false]],"deletefileconfigdict (class in genai.types)":[[0,"genai.types.DeleteFileConfigDict",false]],"deletefileresponsedict (class in genai.types)":[[0,"genai.types.DeleteFileResponseDict",false]],"deletefilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.DeleteFileSearchStoreConfigDict",false]],"deletemodelconfigdict (class in genai.types)":[[0,"genai.types.DeleteModelConfigDict",false]],"deletemodelresponsedict (class in genai.types)":[[0,"genai.types.DeleteModelResponseDict",false]],"deleteresourcejobdict (class in genai.types)":[[0,"genai.types.DeleteResourceJobDict",false]],"delivery (class in genai.types)":[[0,"genai.types.Delivery",false]],"delivery (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.delivery",false]],"delivery (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.delivery",false]],"delivery (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.delivery",false]],"delivery (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.delivery",false]],"delivery (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.delivery",false]],"delivery (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.delivery",false]],"delivery_unspecified (genai.types.delivery attribute)":[[0,"genai.types.Delivery.DELIVERY_UNSPECIFIED",false]],"density (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.density",false]],"density (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.density",false]],"deployed_model_id (genai.types.endpoint attribute)":[[0,"genai.types.Endpoint.deployed_model_id",false]],"deployed_model_id (genai.types.endpointdict attribute)":[[0,"genai.types.EndpointDict.deployed_model_id",false]],"deprecated (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.DEPRECATED",false]],"description (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.description",false]],"description (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.description",false]],"description (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.description",false]],"description (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.description",false]],"description (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.description",false]],"description (genai.types.model attribute)":[[0,"genai.types.Model.description",false]],"description (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.description",false]],"description (genai.types.schema attribute)":[[0,"genai.types.Schema.description",false]],"description (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.description",false]],"description (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.description",false]],"description (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.description",false]],"description (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.description",false]],"description (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.description",false]],"dest (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.dest",false]],"dest (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.dest",false]],"dest (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.dest",false]],"dest (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.dest",false]],"details (genai.types.filestatus attribute)":[[0,"genai.types.FileStatus.details",false]],"details (genai.types.filestatusdict attribute)":[[0,"genai.types.FileStatusDict.details",false]],"details (genai.types.googlerpcstatus attribute)":[[0,"genai.types.GoogleRpcStatus.details",false]],"details (genai.types.googlerpcstatusdict attribute)":[[0,"genai.types.GoogleRpcStatusDict.details",false]],"details (genai.types.joberror attribute)":[[0,"genai.types.JobError.details",false]],"details (genai.types.joberrordict attribute)":[[0,"genai.types.JobErrorDict.details",false]],"diarization (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.diarization",false]],"diarization (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.diarization",false]],"disable (genai.types.automaticfunctioncallingconfig attribute)":[[0,"genai.types.AutomaticFunctionCallingConfig.disable",false]],"disable (genai.types.automaticfunctioncallingconfigdict attribute)":[[0,"genai.types.AutomaticFunctionCallingConfigDict.disable",false]],"disable_attribution (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.disable_attribution",false]],"disable_attribution (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.disable_attribution",false]],"disabled (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.disabled",false]],"disabled (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.disabled",false]],"disabled_safety_policies (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.disabled_safety_policies",false]],"disabled_safety_policies (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.disabled_safety_policies",false]],"display_name (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.display_name",false]],"display_name (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.display_name",false]],"display_name (genai.types.blob attribute)":[[0,"genai.types.Blob.display_name",false]],"display_name (genai.types.blobdict attribute)":[[0,"genai.types.BlobDict.display_name",false]],"display_name (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.display_name",false]],"display_name (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.display_name",false]],"display_name (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.display_name",false]],"display_name (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.display_name",false]],"display_name (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.display_name",false]],"display_name (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.display_name",false]],"display_name (genai.types.createembeddingsbatchjobconfig attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfig.display_name",false]],"display_name (genai.types.createembeddingsbatchjobconfigdict attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfigDict.display_name",false]],"display_name (genai.types.createfilesearchstoreconfig attribute)":[[0,"genai.types.CreateFileSearchStoreConfig.display_name",false]],"display_name (genai.types.createfilesearchstoreconfigdict attribute)":[[0,"genai.types.CreateFileSearchStoreConfigDict.display_name",false]],"display_name (genai.types.document attribute)":[[0,"genai.types.Document.display_name",false]],"display_name (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.display_name",false]],"display_name (genai.types.file attribute)":[[0,"genai.types.File.display_name",false]],"display_name (genai.types.filedata attribute)":[[0,"genai.types.FileData.display_name",false]],"display_name (genai.types.filedatadict attribute)":[[0,"genai.types.FileDataDict.display_name",false]],"display_name (genai.types.filedict attribute)":[[0,"genai.types.FileDict.display_name",false]],"display_name (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.display_name",false]],"display_name (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.display_name",false]],"display_name (genai.types.functionresponseblob attribute)":[[0,"genai.types.FunctionResponseBlob.display_name",false]],"display_name (genai.types.functionresponseblobdict attribute)":[[0,"genai.types.FunctionResponseBlobDict.display_name",false]],"display_name (genai.types.functionresponsefiledata attribute)":[[0,"genai.types.FunctionResponseFileData.display_name",false]],"display_name (genai.types.functionresponsefiledatadict attribute)":[[0,"genai.types.FunctionResponseFileDataDict.display_name",false]],"display_name (genai.types.groundingchunkmapsplaceanswersourcesauthorattribution attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution.display_name",false]],"display_name (genai.types.groundingchunkmapsplaceanswersourcesauthorattributiondict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict.display_name",false]],"display_name (genai.types.model attribute)":[[0,"genai.types.Model.display_name",false]],"display_name (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.display_name",false]],"display_name (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.display_name",false]],"display_name (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.display_name",false]],"display_name (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.display_name",false]],"display_name (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.display_name",false]],"display_name (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.display_name",false]],"display_name (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.display_name",false]],"display_name (genai.types.vertexmultimodaldatasetdestination attribute)":[[0,"genai.types.VertexMultimodalDatasetDestination.display_name",false]],"display_name (genai.types.vertexmultimodaldatasetdestinationdict attribute)":[[0,"genai.types.VertexMultimodalDatasetDestinationDict.display_name",false]],"distance_meters (genai.types.groundingchunkmapsroute attribute)":[[0,"genai.types.GroundingChunkMapsRoute.distance_meters",false]],"distance_meters (genai.types.groundingchunkmapsroutedict attribute)":[[0,"genai.types.GroundingChunkMapsRouteDict.distance_meters",false]],"distillation (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.DISTILLATION",false]],"distillation_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.distillation_data_stats",false]],"distillation_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.distillation_data_stats",false]],"distillation_sampling_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.distillation_sampling_spec",false]],"distillation_sampling_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.distillation_sampling_spec",false]],"distillation_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.distillation_spec",false]],"distillation_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.distillation_spec",false]],"distillationdatastatsdict (class in genai.types)":[[0,"genai.types.DistillationDataStatsDict",false]],"distillationhyperparametersdict (class in genai.types)":[[0,"genai.types.DistillationHyperParametersDict",false]],"distillationsamplingspecdict (class in genai.types)":[[0,"genai.types.DistillationSamplingSpecDict",false]],"distillationspecdict (class in genai.types)":[[0,"genai.types.DistillationSpecDict",false]],"diversity (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.DIVERSITY",false]],"document (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.DOCUMENT",false]],"document_name (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.document_name",false]],"document_name (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.document_name",false]],"document_name (genai.types.importfileresponse attribute)":[[0,"genai.types.ImportFileResponse.document_name",false]],"document_name (genai.types.importfileresponsedict attribute)":[[0,"genai.types.ImportFileResponseDict.document_name",false]],"document_name (genai.types.uploadtofilesearchstoreresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResponse.document_name",false]],"document_name (genai.types.uploadtofilesearchstoreresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResponseDict.document_name",false]],"document_ocr (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.document_ocr",false]],"document_ocr (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.document_ocr",false]],"documentdict (class in genai.types)":[[0,"genai.types.DocumentDict",false]],"documents (genai.types.listdocumentsresponse attribute)":[[0,"genai.types.ListDocumentsResponse.documents",false]],"documents (genai.types.listdocumentsresponsedict attribute)":[[0,"genai.types.ListDocumentsResponseDict.documents",false]],"documentstate (class in genai.types)":[[0,"genai.types.DocumentState",false]],"domain (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.domain",false]],"domain (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.domain",false]],"domain (genai.types.groundingchunkweb attribute)":[[0,"genai.types.GroundingChunkWeb.domain",false]],"domain (genai.types.groundingchunkwebdict attribute)":[[0,"genai.types.GroundingChunkWebDict.domain",false]],"done (genai.types.batchjob property)":[[0,"genai.types.BatchJob.done",false]],"done (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.done",false]],"done (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.done",false]],"done (genai.types.operation attribute)":[[0,"genai.types.Operation.done",false]],"done (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.done",false]],"done (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.done",false]],"done (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.done",false]],"done (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.done",false]],"dont_allow (genai.types.persongeneration attribute)":[[0,"genai.types.PersonGeneration.DONT_ALLOW",false]],"download_uri (genai.types.file attribute)":[[0,"genai.types.File.download_uri",false]],"download_uri (genai.types.filedict attribute)":[[0,"genai.types.FileDict.download_uri",false]],"downloadfileconfigdict (class in genai.types)":[[0,"genai.types.DownloadFileConfigDict",false]],"downloadmediaconfigdict (class in genai.types)":[[0,"genai.types.DownloadMediaConfigDict",false]],"dropped_example_indices (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.dropped_example_indices",false]],"dropped_example_indices (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.dropped_example_indices",false]],"dropped_example_indices (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.dropped_example_indices",false]],"dropped_example_indices (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.dropped_example_indices",false]],"dropped_example_reasons (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.dropped_example_reasons",false]],"dropped_example_reasons (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.dropped_example_reasons",false]],"duration (genai.types.groundingchunkmapsroute attribute)":[[0,"genai.types.GroundingChunkMapsRoute.duration",false]],"duration (genai.types.groundingchunkmapsroutedict attribute)":[[0,"genai.types.GroundingChunkMapsRouteDict.duration",false]],"duration (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.duration",false]],"duration (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.duration",false]],"duration_seconds (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.duration_seconds",false]],"duration_seconds (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.duration_seconds",false]],"dynamic_retrieval_config (genai.types.googlesearchretrieval attribute)":[[0,"genai.types.GoogleSearchRetrieval.dynamic_retrieval_config",false]],"dynamic_retrieval_config (genai.types.googlesearchretrievaldict attribute)":[[0,"genai.types.GoogleSearchRetrievalDict.dynamic_retrieval_config",false]],"dynamic_threshold (genai.types.dynamicretrievalconfig attribute)":[[0,"genai.types.DynamicRetrievalConfig.dynamic_threshold",false]],"dynamic_threshold (genai.types.dynamicretrievalconfigdict attribute)":[[0,"genai.types.DynamicRetrievalConfigDict.dynamic_threshold",false]],"dynamicretrievalconfigdict (class in genai.types)":[[0,"genai.types.DynamicRetrievalConfigDict",false]],"dynamicretrievalconfigmode (class in genai.types)":[[0,"genai.types.DynamicRetrievalConfigMode",false]],"e_flat_major_c_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.E_FLAT_MAJOR_C_MINOR",false]],"e_major_d_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.E_MAJOR_D_FLAT_MINOR",false]],"echo_target_language (genai.types.translationconfig attribute)":[[0,"genai.types.TranslationConfig.echo_target_language",false]],"echo_target_language (genai.types.translationconfigdict attribute)":[[0,"genai.types.TranslationConfigDict.echo_target_language",false]],"edit_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.edit_image",false]],"edit_image() (genai.models.models method)":[[0,"genai.models.Models.edit_image",false]],"edit_mode (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.edit_mode",false]],"edit_mode (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.edit_mode",false]],"edit_mode_bgswap (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_BGSWAP",false]],"edit_mode_controlled_editing (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_CONTROLLED_EDITING",false]],"edit_mode_default (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_DEFAULT",false]],"edit_mode_inpaint_insertion (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_INPAINT_INSERTION",false]],"edit_mode_inpaint_removal (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_INPAINT_REMOVAL",false]],"edit_mode_outpaint (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_OUTPAINT",false]],"edit_mode_product_image (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_PRODUCT_IMAGE",false]],"edit_mode_style (genai.types.editmode attribute)":[[0,"genai.types.EditMode.EDIT_MODE_STYLE",false]],"editimageconfigdict (class in genai.types)":[[0,"genai.types.EditImageConfigDict",false]],"editimageresponsedict (class in genai.types)":[[0,"genai.types.EditImageResponseDict",false]],"editmode (class in genai.types)":[[0,"genai.types.EditMode",false]],"elastic_search (genai.types.apispec attribute)":[[0,"genai.types.ApiSpec.ELASTIC_SEARCH",false]],"elastic_search_params (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.elastic_search_params",false]],"elastic_search_params (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.elastic_search_params",false]],"embed_content (genai.types.embeddingapitype attribute)":[[0,"genai.types.EmbeddingApiType.EMBED_CONTENT",false]],"embed_content() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.embed_content",false]],"embed_content() (genai.models.models method)":[[0,"genai.models.Models.embed_content",false]],"embedcontentbatchdict (class in genai.types)":[[0,"genai.types.EmbedContentBatchDict",false]],"embedcontentconfigdict (class in genai.types)":[[0,"genai.types.EmbedContentConfigDict",false]],"embedcontentmetadatadict (class in genai.types)":[[0,"genai.types.EmbedContentMetadataDict",false]],"embedcontentparametersdict (class in genai.types)":[[0,"genai.types.EmbedContentParametersDict",false]],"embedcontentresponsedict (class in genai.types)":[[0,"genai.types.EmbedContentResponseDict",false]],"embedding (genai.types.singleembedcontentresponse attribute)":[[0,"genai.types.SingleEmbedContentResponse.embedding",false]],"embedding (genai.types.singleembedcontentresponsedict attribute)":[[0,"genai.types.SingleEmbedContentResponseDict.embedding",false]],"embedding_model (genai.types.createfilesearchstoreconfig attribute)":[[0,"genai.types.CreateFileSearchStoreConfig.embedding_model",false]],"embedding_model (genai.types.createfilesearchstoreconfigdict attribute)":[[0,"genai.types.CreateFileSearchStoreConfigDict.embedding_model",false]],"embedding_model (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.embedding_model",false]],"embedding_model (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.embedding_model",false]],"embeddingapitype (class in genai.types)":[[0,"genai.types.EmbeddingApiType",false]],"embeddings (genai.types.embedcontentresponse attribute)":[[0,"genai.types.EmbedContentResponse.embeddings",false]],"embeddings (genai.types.embedcontentresponsedict attribute)":[[0,"genai.types.EmbedContentResponseDict.embeddings",false]],"embeddingsbatchjobsourcedict (class in genai.types)":[[0,"genai.types.EmbeddingsBatchJobSourceDict",false]],"en (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.en",false]],"enable_affective_dialog (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.enable_affective_dialog",false]],"enable_affective_dialog (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.enable_affective_dialog",false]],"enable_affective_dialog (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.enable_affective_dialog",false]],"enable_affective_dialog (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.enable_affective_dialog",false]],"enable_control_image_computation (genai.types.controlreferenceconfig attribute)":[[0,"genai.types.ControlReferenceConfig.enable_control_image_computation",false]],"enable_control_image_computation (genai.types.controlreferenceconfigdict attribute)":[[0,"genai.types.ControlReferenceConfigDict.enable_control_image_computation",false]],"enable_enhanced_civic_answers (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.enable_enhanced_civic_answers",false]],"enable_enhanced_civic_answers (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.enable_enhanced_civic_answers",false]],"enable_enhanced_civic_answers (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.enable_enhanced_civic_answers",false]],"enable_enhanced_civic_answers (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.enable_enhanced_civic_answers",false]],"enable_prompt_injection_detection (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.enable_prompt_injection_detection",false]],"enable_prompt_injection_detection (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.enable_prompt_injection_detection",false]],"enable_widget (genai.types.googlemaps attribute)":[[0,"genai.types.GoogleMaps.enable_widget",false]],"enable_widget (genai.types.googlemapsdict attribute)":[[0,"genai.types.GoogleMapsDict.enable_widget",false]],"encoded_polyline (genai.types.groundingchunkmapsroute attribute)":[[0,"genai.types.GroundingChunkMapsRoute.encoded_polyline",false]],"encoded_polyline (genai.types.groundingchunkmapsroutedict attribute)":[[0,"genai.types.GroundingChunkMapsRouteDict.encoded_polyline",false]],"encryption_spec (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.encryption_spec",false]],"encryption_spec (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.encryption_spec",false]],"encryption_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.encryption_spec",false]],"encryption_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.encryption_spec",false]],"encryptionspecdict (class in genai.types)":[[0,"genai.types.EncryptionSpecDict",false]],"end_index (genai.types.citation attribute)":[[0,"genai.types.Citation.end_index",false]],"end_index (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.end_index",false]],"end_index (genai.types.segment attribute)":[[0,"genai.types.Segment.end_index",false]],"end_index (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.end_index",false]],"end_of_speech_sensitivity (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.end_of_speech_sensitivity",false]],"end_of_speech_sensitivity (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.end_of_speech_sensitivity",false]],"end_offset (genai.types.videometadata attribute)":[[0,"genai.types.VideoMetadata.end_offset",false]],"end_offset (genai.types.videometadatadict attribute)":[[0,"genai.types.VideoMetadataDict.end_offset",false]],"end_offset (genai.types.wordinfo attribute)":[[0,"genai.types.WordInfo.end_offset",false]],"end_offset (genai.types.wordinfodict attribute)":[[0,"genai.types.WordInfoDict.end_offset",false]],"end_sensitivity_high (genai.types.endsensitivity attribute)":[[0,"genai.types.EndSensitivity.END_SENSITIVITY_HIGH",false]],"end_sensitivity_low (genai.types.endsensitivity attribute)":[[0,"genai.types.EndSensitivity.END_SENSITIVITY_LOW",false]],"end_sensitivity_unspecified (genai.types.endsensitivity attribute)":[[0,"genai.types.EndSensitivity.END_SENSITIVITY_UNSPECIFIED",false]],"end_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.end_time",false]],"end_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.end_time",false]],"end_time (genai.types.interval attribute)":[[0,"genai.types.Interval.end_time",false]],"end_time (genai.types.intervaldict attribute)":[[0,"genai.types.IntervalDict.end_time",false]],"end_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.end_time",false]],"end_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.end_time",false]],"endpoint (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.endpoint",false]],"endpoint (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.endpoint",false]],"endpoint (genai.types.tunedmodel attribute)":[[0,"genai.types.TunedModel.endpoint",false]],"endpoint (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.endpoint",false]],"endpoint (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.endpoint",false]],"endpoint (genai.types.tunedmodeldict attribute)":[[0,"genai.types.TunedModelDict.endpoint",false]],"endpointdict (class in genai.types)":[[0,"genai.types.EndpointDict",false]],"endpoints (genai.types.model attribute)":[[0,"genai.types.Model.endpoints",false]],"endpoints (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.endpoints",false]],"endsensitivity (class in genai.types)":[[0,"genai.types.EndSensitivity",false]],"engine (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.engine",false]],"engine (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.engine",false]],"enhance_input_image (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.enhance_input_image",false]],"enhance_input_image (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.enhance_input_image",false]],"enhance_prompt (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.enhance_prompt",false]],"enhance_prompt (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.enhance_prompt",false]],"enhance_prompt (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.enhance_prompt",false]],"enhance_prompt (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.enhance_prompt",false]],"enhance_prompt (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.enhance_prompt",false]],"enhance_prompt (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.enhance_prompt",false]],"enhanced_prompt (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.enhanced_prompt",false]],"enhanced_prompt (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.enhanced_prompt",false]],"enterprise (genai.client.client attribute)":[[0,"genai.client.Client.enterprise",false]],"enterprise_web_search (genai.types.tool attribute)":[[0,"genai.types.Tool.enterprise_web_search",false]],"enterprise_web_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.enterprise_web_search",false]],"enterprisewebsearchdict (class in genai.types)":[[0,"genai.types.EnterpriseWebSearchDict",false]],"entitylabeldict (class in genai.types)":[[0,"genai.types.EntityLabelDict",false]],"enum (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.enum",false]],"enum (genai.types.schema attribute)":[[0,"genai.types.Schema.enum",false]],"enum (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.enum",false]],"environment (class in genai.types)":[[0,"genai.types.Environment",false]],"environment (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.environment",false]],"environment (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.environment",false]],"environment_browser (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_BROWSER",false]],"environment_desktop (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_DESKTOP",false]],"environment_mobile (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_MOBILE",false]],"environment_unspecified (genai.types.environment attribute)":[[0,"genai.types.Environment.ENVIRONMENT_UNSPECIFIED",false]],"environments (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.environments",false]],"environments (genai.client.client property)":[[0,"genai.client.Client.environments",false]],"epoch (genai.types.checkpoint attribute)":[[0,"genai.types.Checkpoint.epoch",false]],"epoch (genai.types.checkpointdict attribute)":[[0,"genai.types.CheckpointDict.epoch",false]],"epoch (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.epoch",false]],"epoch (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.epoch",false]],"epoch_count (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.epoch_count",false]],"epoch_count (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.epoch_count",false]],"epoch_count (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.epoch_count",false]],"epoch_count (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.epoch_count",false]],"epoch_count (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.epoch_count",false]],"epoch_count (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.epoch_count",false]],"epoch_count (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.epoch_count",false]],"epoch_count (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.epoch_count",false]],"epoch_count (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.epoch_count",false]],"error (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.error",false]],"error (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.error",false]],"error (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.error",false]],"error (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.error",false]],"error (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.error",false]],"error (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.error",false]],"error (genai.types.file attribute)":[[0,"genai.types.File.error",false]],"error (genai.types.filedict attribute)":[[0,"genai.types.FileDict.error",false]],"error (genai.types.inlinedembedcontentresponse attribute)":[[0,"genai.types.InlinedEmbedContentResponse.error",false]],"error (genai.types.inlinedembedcontentresponsedict attribute)":[[0,"genai.types.InlinedEmbedContentResponseDict.error",false]],"error (genai.types.inlinedresponse attribute)":[[0,"genai.types.InlinedResponse.error",false]],"error (genai.types.inlinedresponsedict attribute)":[[0,"genai.types.InlinedResponseDict.error",false]],"error (genai.types.operation attribute)":[[0,"genai.types.Operation.error",false]],"error (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.error",false]],"error (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.error",false]],"error (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.error",false]],"error (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.error",false]],"error (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.error",false]],"error (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.error",false]],"error (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.error",false]],"error (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.error",false]],"es (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.es",false]],"evaluate_dataset_response (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.evaluate_dataset_response",false]],"evaluate_dataset_response (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.evaluate_dataset_response",false]],"evaluate_dataset_runs (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.evaluate_dataset_runs",false]],"evaluate_dataset_runs (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.evaluate_dataset_runs",false]],"evaluate_interval (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.evaluate_interval",false]],"evaluate_interval (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.evaluate_interval",false]],"evaluate_interval (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.evaluate_interval",false]],"evaluate_interval (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.evaluate_interval",false]],"evaluatedatasetresponsedict (class in genai.types)":[[0,"genai.types.EvaluateDatasetResponseDict",false]],"evaluatedatasetrundict (class in genai.types)":[[0,"genai.types.EvaluateDatasetRunDict",false]],"evaluation_config (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.evaluation_config",false]],"evaluation_config (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.evaluation_config",false]],"evaluation_config (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.evaluation_config",false]],"evaluation_config (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.evaluation_config",false]],"evaluation_function (genai.types.customcodeexecutionspec attribute)":[[0,"genai.types.CustomCodeExecutionSpec.evaluation_function",false]],"evaluation_function (genai.types.customcodeexecutionspecdict attribute)":[[0,"genai.types.CustomCodeExecutionSpecDict.evaluation_function",false]],"evaluation_run (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.evaluation_run",false]],"evaluation_run (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.evaluation_run",false]],"evaluationconfigdict (class in genai.types)":[[0,"genai.types.EvaluationConfigDict",false]],"evaluationdatasetdict (class in genai.types)":[[0,"genai.types.EvaluationDatasetDict",false]],"evaluationparserconfigcustomcodeparserconfigdict (class in genai.types)":[[0,"genai.types.EvaluationParserConfigCustomCodeParserConfigDict",false]],"evaluationparserconfigdict (class in genai.types)":[[0,"genai.types.EvaluationParserConfigDict",false]],"exa_ai_search (genai.types.tool attribute)":[[0,"genai.types.Tool.exa_ai_search",false]],"exa_ai_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.exa_ai_search",false]],"exact_match (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.EXACT_MATCH",false]],"exact_match (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.EXACT_MATCH",false]],"exact_match_metric_value (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.exact_match_metric_value",false]],"exact_match_metric_value (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.exact_match_metric_value",false]],"exact_match_scorer (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.exact_match_scorer",false]],"exact_match_scorer (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.exact_match_scorer",false]],"exactmatchmetricvaluedict (class in genai.types)":[[0,"genai.types.ExactMatchMetricValueDict",false]],"example (genai.types.schema attribute)":[[0,"genai.types.Schema.example",false]],"example (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.example",false]],"examples (genai.types.tuningdataset attribute)":[[0,"genai.types.TuningDataset.examples",false]],"examples (genai.types.tuningdatasetdict attribute)":[[0,"genai.types.TuningDatasetDict.examples",false]],"exception_if_mldev (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.exception_if_mldev",false]],"exception_if_mldev (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.exception_if_mldev",false]],"exception_if_vertex (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.exception_if_vertex",false]],"exception_if_vertex (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.exception_if_vertex",false]],"exclude_domains (genai.types.enterprisewebsearch attribute)":[[0,"genai.types.EnterpriseWebSearch.exclude_domains",false]],"exclude_domains (genai.types.enterprisewebsearchdict attribute)":[[0,"genai.types.EnterpriseWebSearchDict.exclude_domains",false]],"exclude_domains (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.exclude_domains",false]],"exclude_domains (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.exclude_domains",false]],"excluded_predefined_functions (genai.types.computeruse attribute)":[[0,"genai.types.ComputerUse.excluded_predefined_functions",false]],"excluded_predefined_functions (genai.types.computerusedict attribute)":[[0,"genai.types.ComputerUseDict.excluded_predefined_functions",false]],"executable_code (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.executable_code",false]],"executable_code (genai.types.part attribute)":[[0,"genai.types.Part.executable_code",false]],"executable_code (genai.types.partdict attribute)":[[0,"genai.types.PartDict.executable_code",false]],"executablecodedict (class in genai.types)":[[0,"genai.types.ExecutableCodeDict",false]],"exp_base (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.exp_base",false]],"exp_base (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.exp_base",false]],"experiment (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.experiment",false]],"experiment (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.experiment",false]],"experimental (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.EXPERIMENTAL",false]],"expiration_time (genai.types.file attribute)":[[0,"genai.types.File.expiration_time",false]],"expiration_time (genai.types.filedict attribute)":[[0,"genai.types.FileDict.expiration_time",false]],"expire_time (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.expire_time",false]],"expire_time (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.expire_time",false]],"expire_time (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.expire_time",false]],"expire_time (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.expire_time",false]],"expire_time (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.expire_time",false]],"expire_time (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.expire_time",false]],"expire_time (genai.types.updatecachedcontentconfig attribute)":[[0,"genai.types.UpdateCachedContentConfig.expire_time",false]],"expire_time (genai.types.updatecachedcontentconfigdict attribute)":[[0,"genai.types.UpdateCachedContentConfigDict.expire_time",false]],"explanation (genai.types.pairwisemetricresult attribute)":[[0,"genai.types.PairwiseMetricResult.explanation",false]],"explanation (genai.types.pairwisemetricresultdict attribute)":[[0,"genai.types.PairwiseMetricResultDict.explanation",false]],"explanation (genai.types.pointwisemetricresult attribute)":[[0,"genai.types.PointwiseMetricResult.explanation",false]],"explanation (genai.types.pointwisemetricresultdict attribute)":[[0,"genai.types.PointwiseMetricResultDict.explanation",false]],"explicit_vad_signal (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.explicit_vad_signal",false]],"explicit_vad_signal (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.explicit_vad_signal",false]],"explicit_vad_signal (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.explicit_vad_signal",false]],"explicit_vad_signal (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.explicit_vad_signal",false]],"export_last_checkpoint_only (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.export_last_checkpoint_only",false]],"export_last_checkpoint_only (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.export_last_checkpoint_only",false]],"expression (genai.types.reinforcementtuningautoraterscorerexactmatchscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer.expression",false]],"expression (genai.types.reinforcementtuningautoraterscorerexactmatchscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict.expression",false]],"expression (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpression.expression",false]],"expression (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict.expression",false]],"external_api (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.external_api",false]],"external_api (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.external_api",false]],"externalapidict (class in genai.types)":[[0,"genai.types.ExternalApiDict",false]],"externalapielasticsearchparamsdict (class in genai.types)":[[0,"genai.types.ExternalApiElasticSearchParamsDict",false]],"externalapisimplesearchparamsdict (class in genai.types)":[[0,"genai.types.ExternalApiSimpleSearchParamsDict",false]],"extra_body (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.extra_body",false]],"extra_body (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.extra_body",false]],"f_major_d_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.F_MAJOR_D_MINOR",false]],"failed (genai.types.filestate attribute)":[[0,"genai.types.FileState.FAILED",false]],"failed_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.failed_count",false]],"failed_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.failed_count",false]],"failed_documents_count (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.failed_documents_count",false]],"failed_documents_count (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.failed_documents_count",false]],"fast (genai.types.tuningspeed attribute)":[[0,"genai.types.TuningSpeed.FAST",false]],"feature_selection_preference (genai.types.modelselectionconfig attribute)":[[0,"genai.types.ModelSelectionConfig.feature_selection_preference",false]],"feature_selection_preference (genai.types.modelselectionconfigdict attribute)":[[0,"genai.types.ModelSelectionConfigDict.feature_selection_preference",false]],"feature_selection_preference_unspecified (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.FEATURE_SELECTION_PREFERENCE_UNSPECIFIED",false]],"featureselectionpreference (class in genai.types)":[[0,"genai.types.FeatureSelectionPreference",false]],"fetchpredictoperationconfigdict (class in genai.types)":[[0,"genai.types.FetchPredictOperationConfigDict",false]],"file_data (genai.types.functionresponsepart attribute)":[[0,"genai.types.FunctionResponsePart.file_data",false]],"file_data (genai.types.functionresponsepartdict attribute)":[[0,"genai.types.FunctionResponsePartDict.file_data",false]],"file_data (genai.types.part attribute)":[[0,"genai.types.Part.file_data",false]],"file_data (genai.types.partdict attribute)":[[0,"genai.types.PartDict.file_data",false]],"file_id (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.file_id",false]],"file_id (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.file_id",false]],"file_name (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.file_name",false]],"file_name (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.file_name",false]],"file_name (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.file_name",false]],"file_name (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.file_name",false]],"file_name (genai.types.embeddingsbatchjobsource attribute)":[[0,"genai.types.EmbeddingsBatchJobSource.file_name",false]],"file_name (genai.types.embeddingsbatchjobsourcedict attribute)":[[0,"genai.types.EmbeddingsBatchJobSourceDict.file_name",false]],"file_search (genai.types.tool attribute)":[[0,"genai.types.Tool.file_search",false]],"file_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.file_search",false]],"file_search (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.FILE_SEARCH",false]],"file_search_store (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.file_search_store",false]],"file_search_store (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.file_search_store",false]],"file_search_store_names (genai.types.filesearch attribute)":[[0,"genai.types.FileSearch.file_search_store_names",false]],"file_search_store_names (genai.types.filesearchdict attribute)":[[0,"genai.types.FileSearchDict.file_search_store_names",false]],"file_search_stores (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.file_search_stores",false]],"file_search_stores (genai.client.client property)":[[0,"genai.client.Client.file_search_stores",false]],"file_search_stores (genai.types.listfilesearchstoresresponse attribute)":[[0,"genai.types.ListFileSearchStoresResponse.file_search_stores",false]],"file_search_stores (genai.types.listfilesearchstoresresponsedict attribute)":[[0,"genai.types.ListFileSearchStoresResponseDict.file_search_stores",false]],"file_uri (genai.types.filedata attribute)":[[0,"genai.types.FileData.file_uri",false]],"file_uri (genai.types.filedatadict attribute)":[[0,"genai.types.FileDataDict.file_uri",false]],"file_uri (genai.types.functionresponsefiledata attribute)":[[0,"genai.types.FunctionResponseFileData.file_uri",false]],"file_uri (genai.types.functionresponsefiledatadict attribute)":[[0,"genai.types.FunctionResponseFileDataDict.file_uri",false]],"filedatadict (class in genai.types)":[[0,"genai.types.FileDataDict",false]],"filedict (class in genai.types)":[[0,"genai.types.FileDict",false]],"files (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.files",false]],"files (genai.client.client property)":[[0,"genai.client.Client.files",false]],"files (genai.types.listfilesresponse attribute)":[[0,"genai.types.ListFilesResponse.files",false]],"files (genai.types.listfilesresponsedict attribute)":[[0,"genai.types.ListFilesResponseDict.files",false]],"files (genai.types.registerfilesresponse attribute)":[[0,"genai.types.RegisterFilesResponse.files",false]],"files (genai.types.registerfilesresponsedict attribute)":[[0,"genai.types.RegisterFilesResponseDict.files",false]],"filesearchdict (class in genai.types)":[[0,"genai.types.FileSearchDict",false]],"filesearchstoredict (class in genai.types)":[[0,"genai.types.FileSearchStoreDict",false]],"filesource (class in genai.types)":[[0,"genai.types.FileSource",false]],"filestate (class in genai.types)":[[0,"genai.types.FileState",false]],"filestatusdict (class in genai.types)":[[0,"genai.types.FileStatusDict",false]],"filter (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.filter",false]],"filter (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.filter",false]],"filter (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.filter",false]],"filter (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.filter",false]],"filter (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.filter",false]],"filter (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.filter",false]],"filter (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.filter",false]],"filter (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.filter",false]],"filter (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.filter",false]],"filter (genai.types.vertexaisearchdatastorespec attribute)":[[0,"genai.types.VertexAISearchDataStoreSpec.filter",false]],"filter (genai.types.vertexaisearchdatastorespecdict attribute)":[[0,"genai.types.VertexAISearchDataStoreSpecDict.filter",false]],"filter (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.filter",false]],"filtered_prompt (genai.types.livemusicservermessage attribute)":[[0,"genai.types.LiveMusicServerMessage.filtered_prompt",false]],"filtered_prompt (genai.types.livemusicservermessagedict attribute)":[[0,"genai.types.LiveMusicServerMessageDict.filtered_prompt",false]],"filtered_reason (genai.types.livemusicfilteredprompt attribute)":[[0,"genai.types.LiveMusicFilteredPrompt.filtered_reason",false]],"filtered_reason (genai.types.livemusicfilteredpromptdict attribute)":[[0,"genai.types.LiveMusicFilteredPromptDict.filtered_reason",false]],"financial_transactions (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.FINANCIAL_TRANSACTIONS",false]],"finish_message (genai.types.candidate attribute)":[[0,"genai.types.Candidate.finish_message",false]],"finish_message (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.finish_message",false]],"finish_reason (genai.types.candidate attribute)":[[0,"genai.types.Candidate.finish_reason",false]],"finish_reason (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.finish_reason",false]],"finish_reason_unspecified (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.FINISH_REASON_UNSPECIFIED",false]],"finished (genai.types.transcription attribute)":[[0,"genai.types.Transcription.finished",false]],"finished (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.finished",false]],"finishreason (class in genai.types)":[[0,"genai.types.FinishReason",false]],"first_page (genai.types.ragchunkpagespan attribute)":[[0,"genai.types.RagChunkPageSpan.first_page",false]],"first_page (genai.types.ragchunkpagespandict attribute)":[[0,"genai.types.RagChunkPageSpanDict.first_page",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersources attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSources.flag_content_uri",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersourcesdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict.flag_content_uri",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.flag_content_uri",false]],"flag_content_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.flag_content_uri",false]],"flag_content_uri (genai.types.groundingmetadatasourceflagginguri attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUri.flag_content_uri",false]],"flag_content_uri (genai.types.groundingmetadatasourceflagginguridict attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUriDict.flag_content_uri",false]],"flex (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.FLEX",false]],"flip_enabled (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.flip_enabled",false]],"flip_enabled (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.flip_enabled",false]],"force (genai.types.deletedocumentconfig attribute)":[[0,"genai.types.DeleteDocumentConfig.force",false]],"force (genai.types.deletedocumentconfigdict attribute)":[[0,"genai.types.DeleteDocumentConfigDict.force",false]],"force (genai.types.deletefilesearchstoreconfig attribute)":[[0,"genai.types.DeleteFileSearchStoreConfig.force",false]],"force (genai.types.deletefilesearchstoreconfigdict attribute)":[[0,"genai.types.DeleteFileSearchStoreConfigDict.force",false]],"foreground (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.FOREGROUND",false]],"format (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.format",false]],"format (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.format",false]],"format (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.format",false]],"format (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.format",false]],"format (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.format",false]],"format (genai.types.schema attribute)":[[0,"genai.types.Schema.format",false]],"format (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.format",false]],"fps (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.fps",false]],"fps (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.fps",false]],"fps (genai.types.videometadata attribute)":[[0,"genai.types.VideoMetadata.fps",false]],"fps (genai.types.videometadatadict attribute)":[[0,"genai.types.VideoMetadataDict.fps",false]],"frequency_penalty (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.frequency_penalty",false]],"frequency_penalty (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.frequency_penalty",false]],"frequency_penalty (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.frequency_penalty",false]],"frequency_penalty (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.frequency_penalty",false]],"from_api_response() (genai.types.generatevideosoperation class method)":[[0,"genai.types.GenerateVideosOperation.from_api_response",false]],"from_api_response() (genai.types.importfileoperation class method)":[[0,"genai.types.ImportFileOperation.from_api_response",false]],"from_api_response() (genai.types.operation class method)":[[0,"genai.types.Operation.from_api_response",false]],"from_api_response() (genai.types.uploadtofilesearchstoreoperation class method)":[[0,"genai.types.UploadToFileSearchStoreOperation.from_api_response",false]],"from_bytes() (genai.types.functionresponsepart class method)":[[0,"genai.types.FunctionResponsePart.from_bytes",false]],"from_bytes() (genai.types.part class method)":[[0,"genai.types.Part.from_bytes",false]],"from_callable() (genai.types.functiondeclaration class method)":[[0,"genai.types.FunctionDeclaration.from_callable",false]],"from_callable_with_api_option() (genai.types.functiondeclaration class method)":[[0,"genai.types.FunctionDeclaration.from_callable_with_api_option",false]],"from_code_execution_result() (genai.types.part class method)":[[0,"genai.types.Part.from_code_execution_result",false]],"from_executable_code() (genai.types.part class method)":[[0,"genai.types.Part.from_executable_code",false]],"from_file() (genai.types.image class method)":[[0,"genai.types.Image.from_file",false]],"from_file() (genai.types.video class method)":[[0,"genai.types.Video.from_file",false]],"from_function_call() (genai.types.part class method)":[[0,"genai.types.Part.from_function_call",false]],"from_function_response() (genai.types.part class method)":[[0,"genai.types.Part.from_function_response",false]],"from_json_schema() (genai.types.schema class method)":[[0,"genai.types.Schema.from_json_schema",false]],"from_mcp_response() (genai.types.functionresponse class method)":[[0,"genai.types.FunctionResponse.from_mcp_response",false]],"from_text() (genai.types.part class method)":[[0,"genai.types.Part.from_text",false]],"from_uri() (genai.types.functionresponsepart class method)":[[0,"genai.types.FunctionResponsePart.from_uri",false]],"from_uri() (genai.types.part class method)":[[0,"genai.types.Part.from_uri",false]],"full_fine_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.full_fine_tuning_spec",false]],"full_fine_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.full_fine_tuning_spec",false]],"fullfinetuningspecdict (class in genai.types)":[[0,"genai.types.FullFineTuningSpecDict",false]],"function_call (genai.types.part attribute)":[[0,"genai.types.Part.function_call",false]],"function_call (genai.types.partdict attribute)":[[0,"genai.types.PartDict.function_call",false]],"function_calling_config (genai.types.toolconfig attribute)":[[0,"genai.types.ToolConfig.function_calling_config",false]],"function_calling_config (genai.types.toolconfigdict attribute)":[[0,"genai.types.ToolConfigDict.function_calling_config",false]],"function_calls (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.function_calls",false]],"function_calls (genai.types.liveservertoolcall attribute)":[[0,"genai.types.LiveServerToolCall.function_calls",false]],"function_calls (genai.types.liveservertoolcalldict attribute)":[[0,"genai.types.LiveServerToolCallDict.function_calls",false]],"function_declarations (genai.types.tool attribute)":[[0,"genai.types.Tool.function_declarations",false]],"function_declarations (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.function_declarations",false]],"function_response (genai.types.part attribute)":[[0,"genai.types.Part.function_response",false]],"function_response (genai.types.partdict attribute)":[[0,"genai.types.PartDict.function_response",false]],"function_responses (genai.types.liveclienttoolresponse attribute)":[[0,"genai.types.LiveClientToolResponse.function_responses",false]],"function_responses (genai.types.liveclienttoolresponsedict attribute)":[[0,"genai.types.LiveClientToolResponseDict.function_responses",false]],"functioncalldict (class in genai.types)":[[0,"genai.types.FunctionCallDict",false]],"functioncallingconfigdict (class in genai.types)":[[0,"genai.types.FunctionCallingConfigDict",false]],"functioncallingconfigmode (class in genai.types)":[[0,"genai.types.FunctionCallingConfigMode",false]],"functiondeclarationdict (class in genai.types)":[[0,"genai.types.FunctionDeclarationDict",false]],"functionresponseblobdict (class in genai.types)":[[0,"genai.types.FunctionResponseBlobDict",false]],"functionresponsedict (class in genai.types)":[[0,"genai.types.FunctionResponseDict",false]],"functionresponsefiledatadict (class in genai.types)":[[0,"genai.types.FunctionResponseFileDataDict",false]],"functionresponsepartdict (class in genai.types)":[[0,"genai.types.FunctionResponsePartDict",false]],"functionresponsescheduling (class in genai.types)":[[0,"genai.types.FunctionResponseScheduling",false]],"g_flat_major_e_flat_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.G_FLAT_MAJOR_E_FLAT_MINOR",false]],"g_major_e_minor (genai.types.scale attribute)":[[0,"genai.types.Scale.G_MAJOR_E_MINOR",false]],"gcs_destination (genai.types.outputconfig attribute)":[[0,"genai.types.OutputConfig.gcs_destination",false]],"gcs_destination (genai.types.outputconfigdict attribute)":[[0,"genai.types.OutputConfigDict.gcs_destination",false]],"gcs_output_directory (genai.types.batchjoboutputinfo attribute)":[[0,"genai.types.BatchJobOutputInfo.gcs_output_directory",false]],"gcs_output_directory (genai.types.batchjoboutputinfodict attribute)":[[0,"genai.types.BatchJobOutputInfoDict.gcs_output_directory",false]],"gcs_output_directory (genai.types.outputinfo attribute)":[[0,"genai.types.OutputInfo.gcs_output_directory",false]],"gcs_output_directory (genai.types.outputinfodict attribute)":[[0,"genai.types.OutputInfoDict.gcs_output_directory",false]],"gcs_source (genai.types.evaluationdataset attribute)":[[0,"genai.types.EvaluationDataset.gcs_source",false]],"gcs_source (genai.types.evaluationdatasetdict attribute)":[[0,"genai.types.EvaluationDatasetDict.gcs_source",false]],"gcs_uri (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.gcs_uri",false]],"gcs_uri (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.gcs_uri",false]],"gcs_uri (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.gcs_uri",false]],"gcs_uri (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.gcs_uri",false]],"gcs_uri (genai.types.image attribute)":[[0,"genai.types.Image.gcs_uri",false]],"gcs_uri (genai.types.imagedict attribute)":[[0,"genai.types.ImageDict.gcs_uri",false]],"gcs_uri (genai.types.tuningdataset attribute)":[[0,"genai.types.TuningDataset.gcs_uri",false]],"gcs_uri (genai.types.tuningdatasetdict attribute)":[[0,"genai.types.TuningDatasetDict.gcs_uri",false]],"gcs_uri (genai.types.tuningvalidationdataset attribute)":[[0,"genai.types.TuningValidationDataset.gcs_uri",false]],"gcs_uri (genai.types.tuningvalidationdatasetdict attribute)":[[0,"genai.types.TuningValidationDatasetDict.gcs_uri",false]],"gcs_uri (genai.types.videoresponseformat attribute)":[[0,"genai.types.VideoResponseFormat.gcs_uri",false]],"gcs_uri (genai.types.videoresponseformatdict attribute)":[[0,"genai.types.VideoResponseFormatDict.gcs_uri",false]],"gcsdestinationdict (class in genai.types)":[[0,"genai.types.GcsDestinationDict",false]],"gcssourcedict (class in genai.types)":[[0,"genai.types.GcsSourceDict",false]],"gemininextgenagents (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents",false]],"gemininextgenenvironments (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments",false]],"gemininextgeninteractions (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions",false]],"gemininextgentriggers (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers",false]],"gemininextgenwebhooks (class in genai._gaos.google_genai)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks",false]],"geminipreferenceexamplecompletiondict (class in genai.types)":[[0,"genai.types.GeminiPreferenceExampleCompletionDict",false]],"geminipreferenceexampledict (class in genai.types)":[[0,"genai.types.GeminiPreferenceExampleDict",false]],"genai.client":[[0,"module-genai.client",false]],"genai.live":[[0,"module-genai.live",false]],"genai.models":[[0,"module-genai.models",false]],"genai.tokens":[[0,"module-genai.tokens",false]],"genai.tunings":[[0,"module-genai.tunings",false]],"genai.types":[[0,"module-genai.types",false]],"generate_audio (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.generate_audio",false]],"generate_audio (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.generate_audio",false]],"generate_content() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_content",false]],"generate_content() (genai.models.models method)":[[0,"genai.models.Models.generate_content",false]],"generate_content_stream() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_content_stream",false]],"generate_content_stream() (genai.models.models method)":[[0,"genai.models.Models.generate_content_stream",false]],"generate_images() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_images",false]],"generate_images() (genai.models.models method)":[[0,"genai.models.Models.generate_images",false]],"generate_videos() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.generate_videos",false]],"generate_videos() (genai.models.models method)":[[0,"genai.models.Models.generate_videos",false]],"generatecontentconfigdict (class in genai.types)":[[0,"genai.types.GenerateContentConfigDict",false]],"generatecontentresponsedict (class in genai.types)":[[0,"genai.types.GenerateContentResponseDict",false]],"generatecontentresponsepromptfeedbackdict (class in genai.types)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict",false]],"generatecontentresponseusagemetadatadict (class in genai.types)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict",false]],"generated (genai.types.filesource attribute)":[[0,"genai.types.FileSource.GENERATED",false]],"generated_audio_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_AUDIO_SAFETY",false]],"generated_content_blocklist (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_CONTENT_BLOCKLIST",false]],"generated_content_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_CONTENT_PROHIBITED",false]],"generated_content_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_CONTENT_SAFETY",false]],"generated_image_celebrity (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_CELEBRITY",false]],"generated_image_identifiable_people (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_IDENTIFIABLE_PEOPLE",false]],"generated_image_minors (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_MINORS",false]],"generated_image_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_PROHIBITED",false]],"generated_image_prominent_people_detected_by_rewriter (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_PROMINENT_PEOPLE_DETECTED_BY_REWRITER",false]],"generated_image_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_IMAGE_SAFETY",false]],"generated_images (genai.types.editimageresponse attribute)":[[0,"genai.types.EditImageResponse.generated_images",false]],"generated_images (genai.types.editimageresponsedict attribute)":[[0,"genai.types.EditImageResponseDict.generated_images",false]],"generated_images (genai.types.generateimagesresponse attribute)":[[0,"genai.types.GenerateImagesResponse.generated_images",false]],"generated_images (genai.types.generateimagesresponsedict attribute)":[[0,"genai.types.GenerateImagesResponseDict.generated_images",false]],"generated_images (genai.types.recontextimageresponse attribute)":[[0,"genai.types.RecontextImageResponse.generated_images",false]],"generated_images (genai.types.recontextimageresponsedict attribute)":[[0,"genai.types.RecontextImageResponseDict.generated_images",false]],"generated_images (genai.types.upscaleimageresponse attribute)":[[0,"genai.types.UpscaleImageResponse.generated_images",false]],"generated_images (genai.types.upscaleimageresponsedict attribute)":[[0,"genai.types.UpscaleImageResponseDict.generated_images",false]],"generated_masks (genai.types.segmentimageresponse attribute)":[[0,"genai.types.SegmentImageResponse.generated_masks",false]],"generated_masks (genai.types.segmentimageresponsedict attribute)":[[0,"genai.types.SegmentImageResponseDict.generated_masks",false]],"generated_other (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_OTHER",false]],"generated_video_safety (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.GENERATED_VIDEO_SAFETY",false]],"generated_videos (genai.types.generatevideosresponse attribute)":[[0,"genai.types.GenerateVideosResponse.generated_videos",false]],"generated_videos (genai.types.generatevideosresponsedict attribute)":[[0,"genai.types.GenerateVideosResponseDict.generated_videos",false]],"generatedimagedict (class in genai.types)":[[0,"genai.types.GeneratedImageDict",false]],"generatedimagemaskdict (class in genai.types)":[[0,"genai.types.GeneratedImageMaskDict",false]],"generatedvideodict (class in genai.types)":[[0,"genai.types.GeneratedVideoDict",false]],"generateimagesconfigdict (class in genai.types)":[[0,"genai.types.GenerateImagesConfigDict",false]],"generateimagesresponsedict (class in genai.types)":[[0,"genai.types.GenerateImagesResponseDict",false]],"generatevideosconfigdict (class in genai.types)":[[0,"genai.types.GenerateVideosConfigDict",false]],"generatevideosresponsedict (class in genai.types)":[[0,"genai.types.GenerateVideosResponseDict",false]],"generatevideossourcedict (class in genai.types)":[[0,"genai.types.GenerateVideosSourceDict",false]],"generation_complete (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.generation_complete",false]],"generation_complete (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.generation_complete",false]],"generation_config (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.generation_config",false]],"generation_config (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.generation_config",false]],"generation_config (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.generation_config",false]],"generation_config (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.generation_config",false]],"generation_config (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.generation_config",false]],"generation_config (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.generation_config",false]],"generation_config (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.generation_config",false]],"generation_config (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.generation_config",false]],"generation_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.generation_config",false]],"generation_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.generation_config",false]],"generationconfigdict (class in genai.types)":[[0,"genai.types.GenerationConfigDict",false]],"generationconfigroutingconfigautoroutingmodedict (class in genai.types)":[[0,"genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict",false]],"generationconfigroutingconfigdict (class in genai.types)":[[0,"genai.types.GenerationConfigRoutingConfigDict",false]],"generationconfigroutingconfigmanualroutingmodedict (class in genai.types)":[[0,"genai.types.GenerationConfigRoutingConfigManualRoutingModeDict",false]],"generationconfigthinkingconfigdict (class in genai.types)":[[0,"genai.types.GenerationConfigThinkingConfigDict",false]],"get() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgeninteractions method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.get",false]],"get() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.get",false]],"get() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.get",false]],"get() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.get",false]],"get() (genai._gaos.google_genai.gemininextgeninteractions method)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.get",false]],"get() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.get",false]],"get() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.get",false]],"get() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.get",false]],"get() (genai.models.models method)":[[0,"genai.models.Models.get",false]],"get() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.get",false]],"get() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.get",false]],"get_environment() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.get_environment",false]],"get_environment() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.get_environment",false]],"get_environment_files() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.get_environment_files",false]],"get_environment_files() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.get_environment_files",false]],"getbatchjobconfigdict (class in genai.types)":[[0,"genai.types.GetBatchJobConfigDict",false]],"getcachedcontentconfigdict (class in genai.types)":[[0,"genai.types.GetCachedContentConfigDict",false]],"getdocumentconfigdict (class in genai.types)":[[0,"genai.types.GetDocumentConfigDict",false]],"getfileconfigdict (class in genai.types)":[[0,"genai.types.GetFileConfigDict",false]],"getfilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.GetFileSearchStoreConfigDict",false]],"getmodelconfigdict (class in genai.types)":[[0,"genai.types.GetModelConfigDict",false]],"getoperationconfigdict (class in genai.types)":[[0,"genai.types.GetOperationConfigDict",false]],"gettuningjobconfigdict (class in genai.types)":[[0,"genai.types.GetTuningJobConfigDict",false]],"go_away (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.go_away",false]],"go_away (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.go_away",false]],"google_maps (genai.types.tool attribute)":[[0,"genai.types.Tool.google_maps",false]],"google_maps (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.google_maps",false]],"google_maps (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.GOOGLE_MAPS",false]],"google_maps_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.google_maps_uri",false]],"google_maps_uri (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.google_maps_uri",false]],"google_maps_widget_context_token (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.google_maps_widget_context_token",false]],"google_maps_widget_context_token (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.google_maps_widget_context_token",false]],"google_search (genai.types.tool attribute)":[[0,"genai.types.Tool.google_search",false]],"google_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.google_search",false]],"google_search_dynamic_retrieval_score (genai.types.retrievalmetadata attribute)":[[0,"genai.types.RetrievalMetadata.google_search_dynamic_retrieval_score",false]],"google_search_dynamic_retrieval_score (genai.types.retrievalmetadatadict attribute)":[[0,"genai.types.RetrievalMetadataDict.google_search_dynamic_retrieval_score",false]],"google_search_image (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.GOOGLE_SEARCH_IMAGE",false]],"google_search_retrieval (genai.types.tool attribute)":[[0,"genai.types.Tool.google_search_retrieval",false]],"google_search_retrieval (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.google_search_retrieval",false]],"google_search_web (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.GOOGLE_SEARCH_WEB",false]],"google_service_account_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.GOOGLE_SERVICE_ACCOUNT_AUTH",false]],"google_service_account_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.google_service_account_config",false]],"google_service_account_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.google_service_account_config",false]],"googlemapsdict (class in genai.types)":[[0,"genai.types.GoogleMapsDict",false]],"googlemapsgroundingtypesdict (class in genai.types)":[[0,"genai.types.GoogleMapsGroundingTypesDict",false]],"googlemapsplacesdict (class in genai.types)":[[0,"genai.types.GoogleMapsPlacesDict",false]],"googlemapsroutingdict (class in genai.types)":[[0,"genai.types.GoogleMapsRoutingDict",false]],"googlerpcstatusdict (class in genai.types)":[[0,"genai.types.GoogleRpcStatusDict",false]],"googlesearchdict (class in genai.types)":[[0,"genai.types.GoogleSearchDict",false]],"googlesearchretrievaldict (class in genai.types)":[[0,"genai.types.GoogleSearchRetrievalDict",false]],"googletypedatedict (class in genai.types)":[[0,"genai.types.GoogleTypeDateDict",false]],"grounding_chunk_indices (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.grounding_chunk_indices",false]],"grounding_chunk_indices (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.grounding_chunk_indices",false]],"grounding_chunks (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.grounding_chunks",false]],"grounding_chunks (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.grounding_chunks",false]],"grounding_metadata (genai.types.candidate attribute)":[[0,"genai.types.Candidate.grounding_metadata",false]],"grounding_metadata (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.grounding_metadata",false]],"grounding_metadata (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.grounding_metadata",false]],"grounding_metadata (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.grounding_metadata",false]],"grounding_supports (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.grounding_supports",false]],"grounding_supports (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.grounding_supports",false]],"grounding_types (genai.types.googlemaps attribute)":[[0,"genai.types.GoogleMaps.grounding_types",false]],"grounding_types (genai.types.googlemapsdict attribute)":[[0,"genai.types.GoogleMapsDict.grounding_types",false]],"groundingchunkcustommetadatadict (class in genai.types)":[[0,"genai.types.GroundingChunkCustomMetadataDict",false]],"groundingchunkdict (class in genai.types)":[[0,"genai.types.GroundingChunkDict",false]],"groundingchunkimagedict (class in genai.types)":[[0,"genai.types.GroundingChunkImageDict",false]],"groundingchunkmapsdict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsDict",false]],"groundingchunkmapsplaceanswersourcesauthorattributiondict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict",false]],"groundingchunkmapsplaceanswersourcesdict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict",false]],"groundingchunkmapsplaceanswersourcesreviewsnippetdict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict",false]],"groundingchunkmapsroutedict (class in genai.types)":[[0,"genai.types.GroundingChunkMapsRouteDict",false]],"groundingchunkretrievedcontextdict (class in genai.types)":[[0,"genai.types.GroundingChunkRetrievedContextDict",false]],"groundingchunkstringlistdict (class in genai.types)":[[0,"genai.types.GroundingChunkStringListDict",false]],"groundingchunkwebdict (class in genai.types)":[[0,"genai.types.GroundingChunkWebDict",false]],"groundingmetadatadict (class in genai.types)":[[0,"genai.types.GroundingMetadataDict",false]],"groundingmetadatasourceflagginguridict (class in genai.types)":[[0,"genai.types.GroundingMetadataSourceFlaggingUriDict",false]],"groundingsupportdict (class in genai.types)":[[0,"genai.types.GroundingSupportDict",false]],"guidance (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.guidance",false]],"guidance (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.guidance",false]],"guidance_scale (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.guidance_scale",false]],"guidance_scale (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.guidance_scale",false]],"guidance_scale (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.guidance_scale",false]],"guidance_scale (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.guidance_scale",false]],"handle (genai.types.sessionresumptionconfig attribute)":[[0,"genai.types.SessionResumptionConfig.handle",false]],"handle (genai.types.sessionresumptionconfigdict attribute)":[[0,"genai.types.SessionResumptionConfigDict.handle",false]],"harm_block_method_unspecified (genai.types.harmblockmethod attribute)":[[0,"genai.types.HarmBlockMethod.HARM_BLOCK_METHOD_UNSPECIFIED",false]],"harm_block_threshold_unspecified (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.HARM_BLOCK_THRESHOLD_UNSPECIFIED",false]],"harm_category_civic_integrity (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_CIVIC_INTEGRITY",false]],"harm_category_dangerous_content (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT",false]],"harm_category_harassment (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_HARASSMENT",false]],"harm_category_hate_speech (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_HATE_SPEECH",false]],"harm_category_image_dangerous_content (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_DANGEROUS_CONTENT",false]],"harm_category_image_harassment (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_HARASSMENT",false]],"harm_category_image_hate (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_HATE",false]],"harm_category_image_sexually_explicit (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_IMAGE_SEXUALLY_EXPLICIT",false]],"harm_category_jailbreak (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_JAILBREAK",false]],"harm_category_sexually_explicit (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT",false]],"harm_category_unspecified (genai.types.harmcategory attribute)":[[0,"genai.types.HarmCategory.HARM_CATEGORY_UNSPECIFIED",false]],"harm_probability_unspecified (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.HARM_PROBABILITY_UNSPECIFIED",false]],"harm_severity_high (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_HIGH",false]],"harm_severity_low (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_LOW",false]],"harm_severity_medium (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_MEDIUM",false]],"harm_severity_negligible (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_NEGLIGIBLE",false]],"harm_severity_unspecified (genai.types.harmseverity attribute)":[[0,"genai.types.HarmSeverity.HARM_SEVERITY_UNSPECIFIED",false]],"harmblockmethod (class in genai.types)":[[0,"genai.types.HarmBlockMethod",false]],"harmblockthreshold (class in genai.types)":[[0,"genai.types.HarmBlockThreshold",false]],"harmcategory (class in genai.types)":[[0,"genai.types.HarmCategory",false]],"harmprobability (class in genai.types)":[[0,"genai.types.HarmProbability",false]],"harmseverity (class in genai.types)":[[0,"genai.types.HarmSeverity",false]],"has_ended (genai.types.tuningjob property)":[[0,"genai.types.TuningJob.has_ended",false]],"has_succeeded (genai.types.tuningjob property)":[[0,"genai.types.TuningJob.has_succeeded",false]],"has_union (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.has_union",false]],"has_union (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.has_union",false]],"headers (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.headers",false]],"headers (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.headers",false]],"headers (genai.types.httpresponse attribute)":[[0,"genai.types.HttpResponse.headers",false]],"headers (genai.types.httpresponsedict attribute)":[[0,"genai.types.HttpResponseDict.headers",false]],"headers (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.headers",false]],"headers (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.headers",false]],"headers (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.headers",false]],"headers (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.headers",false]],"headers (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.headers",false]],"headers (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.headers",false]],"hi (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.hi",false]],"high (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.HIGH",false]],"high (genai.types.reinforcementtuningthinkinglevel attribute)":[[0,"genai.types.ReinforcementTuningThinkingLevel.HIGH",false]],"high (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.HIGH",false]],"history_config (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.history_config",false]],"history_config (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.history_config",false]],"history_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.history_config",false]],"history_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.history_config",false]],"historyconfigdict (class in genai.types)":[[0,"genai.types.HistoryConfigDict",false]],"http_basic_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.HTTP_BASIC_AUTH",false]],"http_basic_auth_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.http_basic_auth_config",false]],"http_basic_auth_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.http_basic_auth_config",false]],"http_element_location (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.http_element_location",false]],"http_element_location (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.http_element_location",false]],"http_in_body (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_BODY",false]],"http_in_cookie (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_COOKIE",false]],"http_in_header (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_HEADER",false]],"http_in_path (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_PATH",false]],"http_in_query (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_QUERY",false]],"http_in_unspecified (genai.types.httpelementlocation attribute)":[[0,"genai.types.HttpElementLocation.HTTP_IN_UNSPECIFIED",false]],"http_options (genai.client.client attribute)":[[0,"genai.client.Client.http_options",false]],"http_options (genai.types.cancelbatchjobconfig attribute)":[[0,"genai.types.CancelBatchJobConfig.http_options",false]],"http_options (genai.types.cancelbatchjobconfigdict attribute)":[[0,"genai.types.CancelBatchJobConfigDict.http_options",false]],"http_options (genai.types.canceltuningjobconfig attribute)":[[0,"genai.types.CancelTuningJobConfig.http_options",false]],"http_options (genai.types.canceltuningjobconfigdict attribute)":[[0,"genai.types.CancelTuningJobConfigDict.http_options",false]],"http_options (genai.types.computetokensconfig attribute)":[[0,"genai.types.ComputeTokensConfig.http_options",false]],"http_options (genai.types.computetokensconfigdict attribute)":[[0,"genai.types.ComputeTokensConfigDict.http_options",false]],"http_options (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.http_options",false]],"http_options (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.http_options",false]],"http_options (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.http_options",false]],"http_options (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.http_options",false]],"http_options (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.http_options",false]],"http_options (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.http_options",false]],"http_options (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.http_options",false]],"http_options (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.http_options",false]],"http_options (genai.types.createembeddingsbatchjobconfig attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfig.http_options",false]],"http_options (genai.types.createembeddingsbatchjobconfigdict attribute)":[[0,"genai.types.CreateEmbeddingsBatchJobConfigDict.http_options",false]],"http_options (genai.types.createfileconfig attribute)":[[0,"genai.types.CreateFileConfig.http_options",false]],"http_options (genai.types.createfileconfigdict attribute)":[[0,"genai.types.CreateFileConfigDict.http_options",false]],"http_options (genai.types.createfilesearchstoreconfig attribute)":[[0,"genai.types.CreateFileSearchStoreConfig.http_options",false]],"http_options (genai.types.createfilesearchstoreconfigdict attribute)":[[0,"genai.types.CreateFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.http_options",false]],"http_options (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.http_options",false]],"http_options (genai.types.deletebatchjobconfig attribute)":[[0,"genai.types.DeleteBatchJobConfig.http_options",false]],"http_options (genai.types.deletebatchjobconfigdict attribute)":[[0,"genai.types.DeleteBatchJobConfigDict.http_options",false]],"http_options (genai.types.deletecachedcontentconfig attribute)":[[0,"genai.types.DeleteCachedContentConfig.http_options",false]],"http_options (genai.types.deletecachedcontentconfigdict attribute)":[[0,"genai.types.DeleteCachedContentConfigDict.http_options",false]],"http_options (genai.types.deletedocumentconfig attribute)":[[0,"genai.types.DeleteDocumentConfig.http_options",false]],"http_options (genai.types.deletedocumentconfigdict attribute)":[[0,"genai.types.DeleteDocumentConfigDict.http_options",false]],"http_options (genai.types.deletefileconfig attribute)":[[0,"genai.types.DeleteFileConfig.http_options",false]],"http_options (genai.types.deletefileconfigdict attribute)":[[0,"genai.types.DeleteFileConfigDict.http_options",false]],"http_options (genai.types.deletefilesearchstoreconfig attribute)":[[0,"genai.types.DeleteFileSearchStoreConfig.http_options",false]],"http_options (genai.types.deletefilesearchstoreconfigdict attribute)":[[0,"genai.types.DeleteFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.deletemodelconfig attribute)":[[0,"genai.types.DeleteModelConfig.http_options",false]],"http_options (genai.types.deletemodelconfigdict attribute)":[[0,"genai.types.DeleteModelConfigDict.http_options",false]],"http_options (genai.types.downloadfileconfig attribute)":[[0,"genai.types.DownloadFileConfig.http_options",false]],"http_options (genai.types.downloadfileconfigdict attribute)":[[0,"genai.types.DownloadFileConfigDict.http_options",false]],"http_options (genai.types.downloadmediaconfig attribute)":[[0,"genai.types.DownloadMediaConfig.http_options",false]],"http_options (genai.types.downloadmediaconfigdict attribute)":[[0,"genai.types.DownloadMediaConfigDict.http_options",false]],"http_options (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.http_options",false]],"http_options (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.http_options",false]],"http_options (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.http_options",false]],"http_options (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.http_options",false]],"http_options (genai.types.fetchpredictoperationconfig attribute)":[[0,"genai.types.FetchPredictOperationConfig.http_options",false]],"http_options (genai.types.fetchpredictoperationconfigdict attribute)":[[0,"genai.types.FetchPredictOperationConfigDict.http_options",false]],"http_options (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.http_options",false]],"http_options (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.http_options",false]],"http_options (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.http_options",false]],"http_options (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.http_options",false]],"http_options (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.http_options",false]],"http_options (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.http_options",false]],"http_options (genai.types.getbatchjobconfig attribute)":[[0,"genai.types.GetBatchJobConfig.http_options",false]],"http_options (genai.types.getbatchjobconfigdict attribute)":[[0,"genai.types.GetBatchJobConfigDict.http_options",false]],"http_options (genai.types.getcachedcontentconfig attribute)":[[0,"genai.types.GetCachedContentConfig.http_options",false]],"http_options (genai.types.getcachedcontentconfigdict attribute)":[[0,"genai.types.GetCachedContentConfigDict.http_options",false]],"http_options (genai.types.getdocumentconfig attribute)":[[0,"genai.types.GetDocumentConfig.http_options",false]],"http_options (genai.types.getdocumentconfigdict attribute)":[[0,"genai.types.GetDocumentConfigDict.http_options",false]],"http_options (genai.types.getfileconfig attribute)":[[0,"genai.types.GetFileConfig.http_options",false]],"http_options (genai.types.getfileconfigdict attribute)":[[0,"genai.types.GetFileConfigDict.http_options",false]],"http_options (genai.types.getfilesearchstoreconfig attribute)":[[0,"genai.types.GetFileSearchStoreConfig.http_options",false]],"http_options (genai.types.getfilesearchstoreconfigdict attribute)":[[0,"genai.types.GetFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.getmodelconfig attribute)":[[0,"genai.types.GetModelConfig.http_options",false]],"http_options (genai.types.getmodelconfigdict attribute)":[[0,"genai.types.GetModelConfigDict.http_options",false]],"http_options (genai.types.getoperationconfig attribute)":[[0,"genai.types.GetOperationConfig.http_options",false]],"http_options (genai.types.getoperationconfigdict attribute)":[[0,"genai.types.GetOperationConfigDict.http_options",false]],"http_options (genai.types.gettuningjobconfig attribute)":[[0,"genai.types.GetTuningJobConfig.http_options",false]],"http_options (genai.types.gettuningjobconfigdict attribute)":[[0,"genai.types.GetTuningJobConfigDict.http_options",false]],"http_options (genai.types.importfileconfig attribute)":[[0,"genai.types.ImportFileConfig.http_options",false]],"http_options (genai.types.importfileconfigdict attribute)":[[0,"genai.types.ImportFileConfigDict.http_options",false]],"http_options (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.http_options",false]],"http_options (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.http_options",false]],"http_options (genai.types.listcachedcontentsconfig attribute)":[[0,"genai.types.ListCachedContentsConfig.http_options",false]],"http_options (genai.types.listcachedcontentsconfigdict attribute)":[[0,"genai.types.ListCachedContentsConfigDict.http_options",false]],"http_options (genai.types.listdocumentsconfig attribute)":[[0,"genai.types.ListDocumentsConfig.http_options",false]],"http_options (genai.types.listdocumentsconfigdict attribute)":[[0,"genai.types.ListDocumentsConfigDict.http_options",false]],"http_options (genai.types.listfilesconfig attribute)":[[0,"genai.types.ListFilesConfig.http_options",false]],"http_options (genai.types.listfilesconfigdict attribute)":[[0,"genai.types.ListFilesConfigDict.http_options",false]],"http_options (genai.types.listfilesearchstoresconfig attribute)":[[0,"genai.types.ListFileSearchStoresConfig.http_options",false]],"http_options (genai.types.listfilesearchstoresconfigdict attribute)":[[0,"genai.types.ListFileSearchStoresConfigDict.http_options",false]],"http_options (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.http_options",false]],"http_options (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.http_options",false]],"http_options (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.http_options",false]],"http_options (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.http_options",false]],"http_options (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.http_options",false]],"http_options (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.http_options",false]],"http_options (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.http_options",false]],"http_options (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.http_options",false]],"http_options (genai.types.registerfilesconfig attribute)":[[0,"genai.types.RegisterFilesConfig.http_options",false]],"http_options (genai.types.registerfilesconfigdict attribute)":[[0,"genai.types.RegisterFilesConfigDict.http_options",false]],"http_options (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.http_options",false]],"http_options (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.http_options",false]],"http_options (genai.types.updatecachedcontentconfig attribute)":[[0,"genai.types.UpdateCachedContentConfig.http_options",false]],"http_options (genai.types.updatecachedcontentconfigdict attribute)":[[0,"genai.types.UpdateCachedContentConfigDict.http_options",false]],"http_options (genai.types.updatemodelconfig attribute)":[[0,"genai.types.UpdateModelConfig.http_options",false]],"http_options (genai.types.updatemodelconfigdict attribute)":[[0,"genai.types.UpdateModelConfigDict.http_options",false]],"http_options (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.http_options",false]],"http_options (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.http_options",false]],"http_options (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.http_options",false]],"http_options (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.http_options",false]],"http_options (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.http_options",false]],"http_options (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.http_options",false]],"http_options (genai.types.validaterewardconfig attribute)":[[0,"genai.types.ValidateRewardConfig.http_options",false]],"http_options (genai.types.validaterewardconfigdict attribute)":[[0,"genai.types.ValidateRewardConfigDict.http_options",false]],"http_status_codes (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.http_status_codes",false]],"http_status_codes (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.http_status_codes",false]],"httpelementlocation (class in genai.types)":[[0,"genai.types.HttpElementLocation",false]],"httpoptionsdict (class in genai.types)":[[0,"genai.types.HttpOptionsDict",false]],"httpresponsedict (class in genai.types)":[[0,"genai.types.HttpResponseDict",false]],"httpretryoptionsdict (class in genai.types)":[[0,"genai.types.HttpRetryOptionsDict",false]],"httpx_async_client (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.httpx_async_client",false]],"httpx_client (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.httpx_client",false]],"hybrid_search (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.hybrid_search",false]],"hybrid_search (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.hybrid_search",false]],"hyper_parameters (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.hyper_parameters",false]],"hyper_parameters (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.fullfinetuningspec attribute)":[[0,"genai.types.FullFineTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.fullfinetuningspecdict attribute)":[[0,"genai.types.FullFineTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.partnermodeltuningspec attribute)":[[0,"genai.types.PartnerModelTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.partnermodeltuningspecdict attribute)":[[0,"genai.types.PartnerModelTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.hyper_parameters",false]],"hyper_parameters (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.hyper_parameters",false]],"hyper_parameters (genai.types.veotuningspec attribute)":[[0,"genai.types.VeoTuningSpec.hyper_parameters",false]],"hyper_parameters (genai.types.veotuningspecdict attribute)":[[0,"genai.types.VeoTuningSpecDict.hyper_parameters",false]],"hyperparameters (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.hyperparameters",false]],"hyperparameters (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.hyperparameters",false]],"id (genai.types.codeexecutionresult attribute)":[[0,"genai.types.CodeExecutionResult.id",false]],"id (genai.types.codeexecutionresultdict attribute)":[[0,"genai.types.CodeExecutionResultDict.id",false]],"id (genai.types.executablecode attribute)":[[0,"genai.types.ExecutableCode.id",false]],"id (genai.types.executablecodedict attribute)":[[0,"genai.types.ExecutableCodeDict.id",false]],"id (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.id",false]],"id (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.id",false]],"id (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.id",false]],"id (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.id",false]],"id (genai.types.toolcall attribute)":[[0,"genai.types.ToolCall.id",false]],"id (genai.types.toolcalldict attribute)":[[0,"genai.types.ToolCallDict.id",false]],"id (genai.types.toolresponse attribute)":[[0,"genai.types.ToolResponse.id",false]],"id (genai.types.toolresponsedict attribute)":[[0,"genai.types.ToolResponseDict.id",false]],"id_token (genai.types.authconfigoidcconfig attribute)":[[0,"genai.types.AuthConfigOidcConfig.id_token",false]],"id_token (genai.types.authconfigoidcconfigdict attribute)":[[0,"genai.types.AuthConfigOidcConfigDict.id_token",false]],"identity (genai.types.responseparsetype attribute)":[[0,"genai.types.ResponseParseType.IDENTITY",false]],"ids (genai.types.liveservertoolcallcancellation attribute)":[[0,"genai.types.LiveServerToolCallCancellation.ids",false]],"ids (genai.types.liveservertoolcallcancellationdict attribute)":[[0,"genai.types.LiveServerToolCallCancellationDict.ids",false]],"ignore_call_history (genai.types.automaticfunctioncallingconfig attribute)":[[0,"genai.types.AutomaticFunctionCallingConfig.ignore_call_history",false]],"ignore_call_history (genai.types.automaticfunctioncallingconfigdict attribute)":[[0,"genai.types.AutomaticFunctionCallingConfigDict.ignore_call_history",false]],"ignore_keys (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.ignore_keys",false]],"ignore_keys (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.ignore_keys",false]],"image (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.image",false]],"image (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.image",false]],"image (genai.types.generatevideossource attribute)":[[0,"genai.types.GenerateVideosSource.image",false]],"image (genai.types.generatevideossourcedict attribute)":[[0,"genai.types.GenerateVideosSourceDict.image",false]],"image (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.image",false]],"image (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.image",false]],"image (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.IMAGE",false]],"image (genai.types.modality attribute)":[[0,"genai.types.Modality.IMAGE",false]],"image (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.image",false]],"image (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.image",false]],"image (genai.types.scribbleimage attribute)":[[0,"genai.types.ScribbleImage.image",false]],"image (genai.types.scribbleimagedict attribute)":[[0,"genai.types.ScribbleImageDict.image",false]],"image (genai.types.segmentimagesource attribute)":[[0,"genai.types.SegmentImageSource.image",false]],"image (genai.types.segmentimagesourcedict attribute)":[[0,"genai.types.SegmentImageSourceDict.image",false]],"image (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.image",false]],"image (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.image",false]],"image (genai.types.videogenerationmask attribute)":[[0,"genai.types.VideoGenerationMask.image",false]],"image (genai.types.videogenerationmaskdict attribute)":[[0,"genai.types.VideoGenerationMaskDict.image",false]],"image (genai.types.videogenerationreferenceimage attribute)":[[0,"genai.types.VideoGenerationReferenceImage.image",false]],"image (genai.types.videogenerationreferenceimagedict attribute)":[[0,"genai.types.VideoGenerationReferenceImageDict.image",false]],"image_bytes (genai.types.image attribute)":[[0,"genai.types.Image.image_bytes",false]],"image_bytes (genai.types.imagedict attribute)":[[0,"genai.types.ImageDict.image_bytes",false]],"image_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.image_config",false]],"image_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.image_config",false]],"image_count (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.image_count",false]],"image_count (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.image_count",false]],"image_data (genai.types.customizedavatar attribute)":[[0,"genai.types.CustomizedAvatar.image_data",false]],"image_data (genai.types.customizedavatardict attribute)":[[0,"genai.types.CustomizedAvatarDict.image_data",false]],"image_mime_type (genai.types.customizedavatar attribute)":[[0,"genai.types.CustomizedAvatar.image_mime_type",false]],"image_mime_type (genai.types.customizedavatardict attribute)":[[0,"genai.types.CustomizedAvatarDict.image_mime_type",false]],"image_other (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_OTHER",false]],"image_output_options (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.image_output_options",false]],"image_output_options (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.image_output_options",false]],"image_preservation_factor (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.image_preservation_factor",false]],"image_preservation_factor (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.image_preservation_factor",false]],"image_prohibited_content (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_PROHIBITED_CONTENT",false]],"image_prohibited_input_content (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.IMAGE_PROHIBITED_INPUT_CONTENT",false]],"image_recitation (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_RECITATION",false]],"image_safety (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.IMAGE_SAFETY",false]],"image_safety (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.IMAGE_SAFETY",false]],"image_search (genai.types.searchtypes attribute)":[[0,"genai.types.SearchTypes.image_search",false]],"image_search (genai.types.searchtypesdict attribute)":[[0,"genai.types.SearchTypesDict.image_search",false]],"image_search_queries (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.image_search_queries",false]],"image_search_queries (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.image_search_queries",false]],"image_size (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.image_size",false]],"image_size (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.image_size",false]],"image_size (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.image_size",false]],"image_size (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.image_size",false]],"image_size (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.image_size",false]],"image_size (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.image_size",false]],"image_size_five_twelve (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_FIVE_TWELVE",false]],"image_size_four_k (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_FOUR_K",false]],"image_size_one_k (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_ONE_K",false]],"image_size_two_k (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_TWO_K",false]],"image_size_unspecified (genai.types.imagesize attribute)":[[0,"genai.types.ImageSize.IMAGE_SIZE_UNSPECIFIED",false]],"image_uri (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.image_uri",false]],"image_uri (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.image_uri",false]],"imageconfigdict (class in genai.types)":[[0,"genai.types.ImageConfigDict",false]],"imageconfigimageoutputoptionsdict (class in genai.types)":[[0,"genai.types.ImageConfigImageOutputOptionsDict",false]],"imagedict (class in genai.types)":[[0,"genai.types.ImageDict",false]],"imagepromptlanguage (class in genai.types)":[[0,"genai.types.ImagePromptLanguage",false]],"imageresizemode (class in genai.types)":[[0,"genai.types.ImageResizeMode",false]],"imageresponseformatdict (class in genai.types)":[[0,"genai.types.ImageResponseFormatDict",false]],"images (genai.types.generateimagesresponse property)":[[0,"genai.types.GenerateImagesResponse.images",false]],"imagesearchdict (class in genai.types)":[[0,"genai.types.ImageSearchDict",false]],"imagesize (class in genai.types)":[[0,"genai.types.ImageSize",false]],"importfileconfigdict (class in genai.types)":[[0,"genai.types.ImportFileConfigDict",false]],"importfileresponsedict (class in genai.types)":[[0,"genai.types.ImportFileResponseDict",false]],"include_rai_reason (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.include_rai_reason",false]],"include_rai_reason (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.include_rai_reason",false]],"include_rai_reason (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.include_rai_reason",false]],"include_rai_reason (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.include_rai_reason",false]],"include_rai_reason (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.include_rai_reason",false]],"include_rai_reason (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.include_rai_reason",false]],"include_safety_attributes (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.include_safety_attributes",false]],"include_safety_attributes (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.include_safety_attributes",false]],"include_safety_attributes (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.include_safety_attributes",false]],"include_safety_attributes (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.include_safety_attributes",false]],"include_server_side_tool_invocations (genai.types.toolconfig attribute)":[[0,"genai.types.ToolConfig.include_server_side_tool_invocations",false]],"include_server_side_tool_invocations (genai.types.toolconfigdict attribute)":[[0,"genai.types.ToolConfigDict.include_server_side_tool_invocations",false]],"include_thoughts (genai.types.generationconfigthinkingconfigdict attribute)":[[0,"genai.types.GenerationConfigThinkingConfigDict.include_thoughts",false]],"include_thoughts (genai.types.thinkingconfig attribute)":[[0,"genai.types.ThinkingConfig.include_thoughts",false]],"include_thoughts (genai.types.thinkingconfigdict attribute)":[[0,"genai.types.ThinkingConfigDict.include_thoughts",false]],"incomplete_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.incomplete_count",false]],"incomplete_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.incomplete_count",false]],"index (genai.types.candidate attribute)":[[0,"genai.types.Candidate.index",false]],"index (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.index",false]],"index (genai.types.externalapielasticsearchparams attribute)":[[0,"genai.types.ExternalApiElasticSearchParams.index",false]],"index (genai.types.externalapielasticsearchparamsdict attribute)":[[0,"genai.types.ExternalApiElasticSearchParamsDict.index",false]],"inference_generation_config (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.inference_generation_config",false]],"inference_generation_config (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.inference_generation_config",false]],"initial_delay (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.initial_delay",false]],"initial_delay (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.initial_delay",false]],"initial_history_in_client_content (genai.types.historyconfig attribute)":[[0,"genai.types.HistoryConfig.initial_history_in_client_content",false]],"initial_history_in_client_content (genai.types.historyconfigdict attribute)":[[0,"genai.types.HistoryConfigDict.initial_history_in_client_content",false]],"inline (genai.types.delivery attribute)":[[0,"genai.types.Delivery.INLINE",false]],"inline_data (genai.types.functionresponsepart attribute)":[[0,"genai.types.FunctionResponsePart.inline_data",false]],"inline_data (genai.types.functionresponsepartdict attribute)":[[0,"genai.types.FunctionResponsePartDict.inline_data",false]],"inline_data (genai.types.part attribute)":[[0,"genai.types.Part.inline_data",false]],"inline_data (genai.types.partdict attribute)":[[0,"genai.types.PartDict.inline_data",false]],"inlined_embed_content_responses (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.inlined_embed_content_responses",false]],"inlined_embed_content_responses (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.inlined_embed_content_responses",false]],"inlined_requests (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.inlined_requests",false]],"inlined_requests (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.inlined_requests",false]],"inlined_requests (genai.types.embeddingsbatchjobsource attribute)":[[0,"genai.types.EmbeddingsBatchJobSource.inlined_requests",false]],"inlined_requests (genai.types.embeddingsbatchjobsourcedict attribute)":[[0,"genai.types.EmbeddingsBatchJobSourceDict.inlined_requests",false]],"inlined_responses (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.inlined_responses",false]],"inlined_responses (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.inlined_responses",false]],"inlinedembedcontentresponsedict (class in genai.types)":[[0,"genai.types.InlinedEmbedContentResponseDict",false]],"inlinedrequestdict (class in genai.types)":[[0,"genai.types.InlinedRequestDict",false]],"inlinedresponsedict (class in genai.types)":[[0,"genai.types.InlinedResponseDict",false]],"input_audio_transcription (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.input_audio_transcription",false]],"input_audio_transcription (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.input_audio_transcription",false]],"input_audio_transcription (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.input_audio_transcription",false]],"input_audio_transcription (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.input_audio_transcription",false]],"input_image_celebrity (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_IMAGE_CELEBRITY",false]],"input_image_photo_realistic_child_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_IMAGE_PHOTO_REALISTIC_CHILD_PROHIBITED",false]],"input_ip_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_IP_PROHIBITED",false]],"input_other (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_OTHER",false]],"input_text_contain_prominent_person_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_TEXT_CONTAIN_PROMINENT_PERSON_PROHIBITED",false]],"input_text_ncii_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.INPUT_TEXT_NCII_PROHIBITED",false]],"input_token_limit (genai.types.model attribute)":[[0,"genai.types.Model.input_token_limit",false]],"input_token_limit (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.input_token_limit",false]],"input_transcription (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.input_transcription",false]],"input_transcription (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.input_transcription",false]],"input_uri (genai.types.bigquerysource attribute)":[[0,"genai.types.BigQuerySource.input_uri",false]],"input_uri (genai.types.bigquerysourcedict attribute)":[[0,"genai.types.BigQuerySourceDict.input_uri",false]],"insert (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.INSERT",false]],"integer (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.INTEGER",false]],"integer (genai.types.type attribute)":[[0,"genai.types.Type.INTEGER",false]],"interactions (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.interactions",false]],"interactions (genai.client.client property)":[[0,"genai.client.Client.interactions",false]],"interactions (genai.types.replayfile attribute)":[[0,"genai.types.ReplayFile.interactions",false]],"interactions (genai.types.replayfiledict attribute)":[[0,"genai.types.ReplayFileDict.interactions",false]],"interactive (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.INTERACTIVE",false]],"interim_input_transcription (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.interim_input_transcription",false]],"interim_input_transcription (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.interim_input_transcription",false]],"interrupt (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.INTERRUPT",false]],"interrupted (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.interrupted",false]],"interrupted (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.interrupted",false]],"intervaldict (class in genai.types)":[[0,"genai.types.IntervalDict",false]],"items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.items",false]],"items (genai.types.schema attribute)":[[0,"genai.types.Schema.items",false]],"ja (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.ja",false]],"jailbreak (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.JAILBREAK",false]],"jitter (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.jitter",false]],"jitter (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.jitter",false]],"job_state_cancelled (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_CANCELLED",false]],"job_state_cancelling (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_CANCELLING",false]],"job_state_expired (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_EXPIRED",false]],"job_state_failed (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_FAILED",false]],"job_state_partially_succeeded (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_PARTIALLY_SUCCEEDED",false]],"job_state_paused (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_PAUSED",false]],"job_state_pending (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_PENDING",false]],"job_state_queued (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_QUEUED",false]],"job_state_running (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_RUNNING",false]],"job_state_succeeded (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_SUCCEEDED",false]],"job_state_unspecified (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_UNSPECIFIED",false]],"job_state_updating (genai.types.jobstate attribute)":[[0,"genai.types.JobState.JOB_STATE_UPDATING",false]],"joberrordict (class in genai.types)":[[0,"genai.types.JobErrorDict",false]],"jobstate (class in genai.types)":[[0,"genai.types.JobState",false]],"json_match_expression (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.json_match_expression",false]],"json_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.json_match_expression",false]],"json_path (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.json_path",false]],"json_path (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.json_path",false]],"json_schema (genai.types.schema property)":[[0,"genai.types.Schema.json_schema",false]],"jsonschema (genai.types.textresponseformat attribute)":[[0,"genai.types.TextResponseFormat.jsonSchema",false]],"jsonschematype (class in genai.types)":[[0,"genai.types.JSONSchemaType",false]],"judge_autorater_config (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.judge_autorater_config",false]],"judge_autorater_config (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.judge_autorater_config",false]],"judge_model_system_instruction (genai.types.metric attribute)":[[0,"genai.types.Metric.judge_model_system_instruction",false]],"judge_model_system_instruction (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.judge_model_system_instruction",false]],"key (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.key",false]],"key (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.key",false]],"key (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.key",false]],"key (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.key",false]],"key_name (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpression.key_name",false]],"key_name (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict.key_name",false]],"kms_key_name (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.kms_key_name",false]],"kms_key_name (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.kms_key_name",false]],"kms_key_name (genai.types.encryptionspec attribute)":[[0,"genai.types.EncryptionSpec.kms_key_name",false]],"kms_key_name (genai.types.encryptionspecdict attribute)":[[0,"genai.types.EncryptionSpecDict.kms_key_name",false]],"ko (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.ko",false]],"label (genai.types.entitylabel attribute)":[[0,"genai.types.EntityLabel.label",false]],"label (genai.types.entitylabeldict attribute)":[[0,"genai.types.EntityLabelDict.label",false]],"labels (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.labels",false]],"labels (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.labels",false]],"labels (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.labels",false]],"labels (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.labels",false]],"labels (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.labels",false]],"labels (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.labels",false]],"labels (genai.types.generatedimagemask attribute)":[[0,"genai.types.GeneratedImageMask.labels",false]],"labels (genai.types.generatedimagemaskdict attribute)":[[0,"genai.types.GeneratedImageMaskDict.labels",false]],"labels (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.labels",false]],"labels (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.labels",false]],"labels (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.labels",false]],"labels (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.labels",false]],"labels (genai.types.model attribute)":[[0,"genai.types.Model.labels",false]],"labels (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.labels",false]],"labels (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.labels",false]],"labels (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.labels",false]],"labels (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.labels",false]],"labels (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.labels",false]],"labels (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.labels",false]],"labels (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.labels",false]],"labels (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.labels",false]],"labels (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.labels",false]],"landscape (genai.types.videoorientation attribute)":[[0,"genai.types.VideoOrientation.LANDSCAPE",false]],"language (class in genai.types)":[[0,"genai.types.Language",false]],"language (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.language",false]],"language (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.language",false]],"language (genai.types.executablecode attribute)":[[0,"genai.types.ExecutableCode.language",false]],"language (genai.types.executablecodedict attribute)":[[0,"genai.types.ExecutableCodeDict.language",false]],"language (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.LANGUAGE",false]],"language (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.language",false]],"language (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.language",false]],"language_auto (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.language_auto",false]],"language_auto (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.language_auto",false]],"language_code (genai.types.retrievalconfig attribute)":[[0,"genai.types.RetrievalConfig.language_code",false]],"language_code (genai.types.retrievalconfigdict attribute)":[[0,"genai.types.RetrievalConfigDict.language_code",false]],"language_code (genai.types.speechconfig attribute)":[[0,"genai.types.SpeechConfig.language_code",false]],"language_code (genai.types.speechconfigdict attribute)":[[0,"genai.types.SpeechConfigDict.language_code",false]],"language_code (genai.types.transcription attribute)":[[0,"genai.types.Transcription.language_code",false]],"language_code (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.language_code",false]],"language_codes (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.language_codes",false]],"language_codes (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.language_codes",false]],"language_codes (genai.types.languagehints attribute)":[[0,"genai.types.LanguageHints.language_codes",false]],"language_codes (genai.types.languagehintsdict attribute)":[[0,"genai.types.LanguageHintsDict.language_codes",false]],"language_hints (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.language_hints",false]],"language_hints (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.language_hints",false]],"language_unspecified (genai.types.language attribute)":[[0,"genai.types.Language.LANGUAGE_UNSPECIFIED",false]],"languageautodict (class in genai.types)":[[0,"genai.types.LanguageAutoDict",false]],"languagehintsdict (class in genai.types)":[[0,"genai.types.LanguageHintsDict",false]],"last_consumed_client_message_index (genai.types.liveserversessionresumptionupdate attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdate.last_consumed_client_message_index",false]],"last_consumed_client_message_index (genai.types.liveserversessionresumptionupdatedict attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict.last_consumed_client_message_index",false]],"last_frame (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.last_frame",false]],"last_frame (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.last_frame",false]],"last_page (genai.types.ragchunkpagespan attribute)":[[0,"genai.types.RagChunkPageSpan.last_page",false]],"last_page (genai.types.ragchunkpagespandict attribute)":[[0,"genai.types.RagChunkPageSpanDict.last_page",false]],"lat_lng (genai.types.retrievalconfig attribute)":[[0,"genai.types.RetrievalConfig.lat_lng",false]],"lat_lng (genai.types.retrievalconfigdict attribute)":[[0,"genai.types.RetrievalConfigDict.lat_lng",false]],"latitude (genai.types.latlng attribute)":[[0,"genai.types.LatLng.latitude",false]],"latitude (genai.types.latlngdict attribute)":[[0,"genai.types.LatLngDict.latitude",false]],"latlngdict (class in genai.types)":[[0,"genai.types.LatLngDict",false]],"learning_rate (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.learning_rate",false]],"learning_rate (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.learning_rate",false]],"learning_rate (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.learning_rate",false]],"learning_rate (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.learning_rate",false]],"learning_rate (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.learning_rate",false]],"learning_rate (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.learning_rate",false]],"learning_rate_multiplier (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.distillationhyperparameters attribute)":[[0,"genai.types.DistillationHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.distillationhyperparametersdict attribute)":[[0,"genai.types.DistillationHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.preferenceoptimizationhyperparameters attribute)":[[0,"genai.types.PreferenceOptimizationHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.preferenceoptimizationhyperparametersdict attribute)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.supervisedhyperparameters attribute)":[[0,"genai.types.SupervisedHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.supervisedhyperparametersdict attribute)":[[0,"genai.types.SupervisedHyperParametersDict.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.learning_rate_multiplier",false]],"learning_rate_multiplier (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.learning_rate_multiplier",false]],"left (genai.types.datasetdistributiondistributionbucket attribute)":[[0,"genai.types.DatasetDistributionDistributionBucket.left",false]],"left (genai.types.datasetdistributiondistributionbucketdict attribute)":[[0,"genai.types.DatasetDistributionDistributionBucketDict.left",false]],"left (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucket.left",false]],"left (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.left",false]],"legacy (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.LEGACY",false]],"legal_terms_and_agreements (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.LEGAL_TERMS_AND_AGREEMENTS",false]],"level (genai.types.partmediaresolution attribute)":[[0,"genai.types.PartMediaResolution.level",false]],"level (genai.types.partmediaresolutiondict attribute)":[[0,"genai.types.PartMediaResolutionDict.level",false]],"license (genai.types.citation attribute)":[[0,"genai.types.Citation.license",false]],"license (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.license",false]],"list() (genai._gaos.google_genai.asyncgemininextgenagents method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.list",false]],"list() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.list",false]],"list() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.list",false]],"list() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.list",false]],"list() (genai._gaos.google_genai.gemininextgenagents method)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.list",false]],"list() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.list",false]],"list() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.list",false]],"list() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.list",false]],"list() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.list",false]],"list() (genai.models.models method)":[[0,"genai.models.Models.list",false]],"list() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.list",false]],"list() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.list",false]],"list_environments() (genai._gaos.google_genai.asyncgemininextgenenvironments method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.list_environments",false]],"list_environments() (genai._gaos.google_genai.gemininextgenenvironments method)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.list_environments",false]],"list_executions() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.list_executions",false]],"list_executions() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.list_executions",false]],"listbatchjobsconfigdict (class in genai.types)":[[0,"genai.types.ListBatchJobsConfigDict",false]],"listbatchjobsresponsedict (class in genai.types)":[[0,"genai.types.ListBatchJobsResponseDict",false]],"listcachedcontentsconfigdict (class in genai.types)":[[0,"genai.types.ListCachedContentsConfigDict",false]],"listcachedcontentsresponsedict (class in genai.types)":[[0,"genai.types.ListCachedContentsResponseDict",false]],"listdocumentsconfigdict (class in genai.types)":[[0,"genai.types.ListDocumentsConfigDict",false]],"listdocumentsresponsedict (class in genai.types)":[[0,"genai.types.ListDocumentsResponseDict",false]],"listfilesconfigdict (class in genai.types)":[[0,"genai.types.ListFilesConfigDict",false]],"listfilesearchstoresconfigdict (class in genai.types)":[[0,"genai.types.ListFileSearchStoresConfigDict",false]],"listfilesearchstoresresponsedict (class in genai.types)":[[0,"genai.types.ListFileSearchStoresResponseDict",false]],"listfilesresponsedict (class in genai.types)":[[0,"genai.types.ListFilesResponseDict",false]],"listmodelsconfigdict (class in genai.types)":[[0,"genai.types.ListModelsConfigDict",false]],"listmodelsresponsedict (class in genai.types)":[[0,"genai.types.ListModelsResponseDict",false]],"listtuningjobsconfigdict (class in genai.types)":[[0,"genai.types.ListTuningJobsConfigDict",false]],"listtuningjobsresponsedict (class in genai.types)":[[0,"genai.types.ListTuningJobsResponseDict",false]],"live (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.live",false]],"live_connect_constraints (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.live_connect_constraints",false]],"live_connect_constraints (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.live_connect_constraints",false]],"liveclientcontentdict (class in genai.types)":[[0,"genai.types.LiveClientContentDict",false]],"liveclientmessagedict (class in genai.types)":[[0,"genai.types.LiveClientMessageDict",false]],"liveclientrealtimeinputdict (class in genai.types)":[[0,"genai.types.LiveClientRealtimeInputDict",false]],"liveclientsetupdict (class in genai.types)":[[0,"genai.types.LiveClientSetupDict",false]],"liveclienttoolresponsedict (class in genai.types)":[[0,"genai.types.LiveClientToolResponseDict",false]],"liveconnectconfigdict (class in genai.types)":[[0,"genai.types.LiveConnectConfigDict",false]],"liveconnectconstraintsdict (class in genai.types)":[[0,"genai.types.LiveConnectConstraintsDict",false]],"liveconnectparametersdict (class in genai.types)":[[0,"genai.types.LiveConnectParametersDict",false]],"livemusicclientcontentdict (class in genai.types)":[[0,"genai.types.LiveMusicClientContentDict",false]],"livemusicclientmessagedict (class in genai.types)":[[0,"genai.types.LiveMusicClientMessageDict",false]],"livemusicclientsetupdict (class in genai.types)":[[0,"genai.types.LiveMusicClientSetupDict",false]],"livemusicconnectparametersdict (class in genai.types)":[[0,"genai.types.LiveMusicConnectParametersDict",false]],"livemusicfilteredpromptdict (class in genai.types)":[[0,"genai.types.LiveMusicFilteredPromptDict",false]],"livemusicgenerationconfigdict (class in genai.types)":[[0,"genai.types.LiveMusicGenerationConfigDict",false]],"livemusicplaybackcontrol (class in genai.types)":[[0,"genai.types.LiveMusicPlaybackControl",false]],"livemusicservercontentdict (class in genai.types)":[[0,"genai.types.LiveMusicServerContentDict",false]],"livemusicservermessagedict (class in genai.types)":[[0,"genai.types.LiveMusicServerMessageDict",false]],"livemusicserversetupcompletedict (class in genai.types)":[[0,"genai.types.LiveMusicServerSetupCompleteDict",false]],"livemusicsetconfigparametersdict (class in genai.types)":[[0,"genai.types.LiveMusicSetConfigParametersDict",false]],"livemusicsetweightedpromptsparametersdict (class in genai.types)":[[0,"genai.types.LiveMusicSetWeightedPromptsParametersDict",false]],"livemusicsourcemetadatadict (class in genai.types)":[[0,"genai.types.LiveMusicSourceMetadataDict",false]],"livesendrealtimeinputparametersdict (class in genai.types)":[[0,"genai.types.LiveSendRealtimeInputParametersDict",false]],"liveservercontentdict (class in genai.types)":[[0,"genai.types.LiveServerContentDict",false]],"liveservergoawaydict (class in genai.types)":[[0,"genai.types.LiveServerGoAwayDict",false]],"liveservermessagedict (class in genai.types)":[[0,"genai.types.LiveServerMessageDict",false]],"liveserversessionresumptionupdatedict (class in genai.types)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict",false]],"liveserversetupcompletedict (class in genai.types)":[[0,"genai.types.LiveServerSetupCompleteDict",false]],"liveservertoolcallcancellationdict (class in genai.types)":[[0,"genai.types.LiveServerToolCallCancellationDict",false]],"liveservertoolcalldict (class in genai.types)":[[0,"genai.types.LiveServerToolCallDict",false]],"llm_based_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.llm_based_metric_spec",false]],"llm_based_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.llm_based_metric_spec",false]],"llm_ranker (genai.types.ragretrievalconfigranking attribute)":[[0,"genai.types.RagRetrievalConfigRanking.llm_ranker",false]],"llm_ranker (genai.types.ragretrievalconfigrankingdict attribute)":[[0,"genai.types.RagRetrievalConfigRankingDict.llm_ranker",false]],"llmbasedmetricspecdict (class in genai.types)":[[0,"genai.types.LLMBasedMetricSpecDict",false]],"location (genai.client.client attribute)":[[0,"genai.client.Client.location",false]],"lock_additional_fields (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.lock_additional_fields",false]],"lock_additional_fields (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.lock_additional_fields",false]],"log_probability (genai.types.logprobsresultcandidate attribute)":[[0,"genai.types.LogprobsResultCandidate.log_probability",false]],"log_probability (genai.types.logprobsresultcandidatedict attribute)":[[0,"genai.types.LogprobsResultCandidateDict.log_probability",false]],"log_probability_sum (genai.types.logprobsresult attribute)":[[0,"genai.types.LogprobsResult.log_probability_sum",false]],"log_probability_sum (genai.types.logprobsresultdict attribute)":[[0,"genai.types.LogprobsResultDict.log_probability_sum",false]],"logprobs (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.logprobs",false]],"logprobs (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.logprobs",false]],"logprobs (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.logprobs",false]],"logprobs (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.logprobs",false]],"logprobs_result (genai.types.candidate attribute)":[[0,"genai.types.Candidate.logprobs_result",false]],"logprobs_result (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.logprobs_result",false]],"logprobsresultcandidatedict (class in genai.types)":[[0,"genai.types.LogprobsResultCandidateDict",false]],"logprobsresultdict (class in genai.types)":[[0,"genai.types.LogprobsResultDict",false]],"logprobsresulttopcandidatesdict (class in genai.types)":[[0,"genai.types.LogprobsResultTopCandidatesDict",false]],"longitude (genai.types.latlng attribute)":[[0,"genai.types.LatLng.longitude",false]],"longitude (genai.types.latlngdict attribute)":[[0,"genai.types.LatLngDict.longitude",false]],"lossless (genai.types.videocompressionquality attribute)":[[0,"genai.types.VideoCompressionQuality.LOSSLESS",false]],"low (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.LOW",false]],"low (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.LOW",false]],"malformed_function_call (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.MALFORMED_FUNCTION_CALL",false]],"malformed_function_call (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.MALFORMED_FUNCTION_CALL",false]],"manual_mode (genai.types.generationconfigroutingconfig attribute)":[[0,"genai.types.GenerationConfigRoutingConfig.manual_mode",false]],"manual_mode (genai.types.generationconfigroutingconfigdict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigDict.manual_mode",false]],"maps (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.maps",false]],"maps (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.maps",false]],"mask (genai.types.generatedimagemask attribute)":[[0,"genai.types.GeneratedImageMask.mask",false]],"mask (genai.types.generatedimagemaskdict attribute)":[[0,"genai.types.GeneratedImageMaskDict.mask",false]],"mask (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.mask",false]],"mask (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.mask",false]],"mask_dilation (genai.types.maskreferenceconfig attribute)":[[0,"genai.types.MaskReferenceConfig.mask_dilation",false]],"mask_dilation (genai.types.maskreferenceconfigdict attribute)":[[0,"genai.types.MaskReferenceConfigDict.mask_dilation",false]],"mask_dilation (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.mask_dilation",false]],"mask_dilation (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.mask_dilation",false]],"mask_image_config (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.mask_image_config",false]],"mask_mode (genai.types.maskreferenceconfig attribute)":[[0,"genai.types.MaskReferenceConfig.mask_mode",false]],"mask_mode (genai.types.maskreferenceconfigdict attribute)":[[0,"genai.types.MaskReferenceConfigDict.mask_mode",false]],"mask_mode (genai.types.videogenerationmask attribute)":[[0,"genai.types.VideoGenerationMask.mask_mode",false]],"mask_mode (genai.types.videogenerationmaskdict attribute)":[[0,"genai.types.VideoGenerationMaskDict.mask_mode",false]],"mask_mode_background (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_BACKGROUND",false]],"mask_mode_default (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_DEFAULT",false]],"mask_mode_foreground (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_FOREGROUND",false]],"mask_mode_semantic (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_SEMANTIC",false]],"mask_mode_user_provided (genai.types.maskreferencemode attribute)":[[0,"genai.types.MaskReferenceMode.MASK_MODE_USER_PROVIDED",false]],"maskreferenceconfigdict (class in genai.types)":[[0,"genai.types.MaskReferenceConfigDict",false]],"maskreferenceimagedict (class in genai.types)":[[0,"genai.types.MaskReferenceImageDict",false]],"maskreferencemode (class in genai.types)":[[0,"genai.types.MaskReferenceMode",false]],"match_operation (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpression.match_operation",false]],"match_operation (genai.types.reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict.match_operation",false]],"match_operation_unspecified (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.MATCH_OPERATION_UNSPECIFIED",false]],"matchoperation (class in genai.types)":[[0,"genai.types.MatchOperation",false]],"max (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.max",false]],"max (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.max",false]],"max (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.max",false]],"max (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.max",false]],"max_delay (genai.types.httpretryoptions attribute)":[[0,"genai.types.HttpRetryOptions.max_delay",false]],"max_delay (genai.types.httpretryoptionsdict attribute)":[[0,"genai.types.HttpRetryOptionsDict.max_delay",false]],"max_items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.max_items",false]],"max_items (genai.types.schema attribute)":[[0,"genai.types.Schema.max_items",false]],"max_items (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.max_items",false]],"max_length (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.max_length",false]],"max_length (genai.types.schema attribute)":[[0,"genai.types.Schema.max_length",false]],"max_length (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.max_length",false]],"max_output_tokens (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.max_output_tokens",false]],"max_output_tokens (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.max_output_tokens",false]],"max_output_tokens (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.max_output_tokens",false]],"max_output_tokens (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.max_output_tokens",false]],"max_output_tokens (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.max_output_tokens",false]],"max_output_tokens (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.max_output_tokens",false]],"max_output_tokens (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.max_output_tokens",false]],"max_overlap_tokens (genai.types.whitespaceconfig attribute)":[[0,"genai.types.WhiteSpaceConfig.max_overlap_tokens",false]],"max_overlap_tokens (genai.types.whitespaceconfigdict attribute)":[[0,"genai.types.WhiteSpaceConfigDict.max_overlap_tokens",false]],"max_predictions (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.max_predictions",false]],"max_predictions (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.max_predictions",false]],"max_properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.max_properties",false]],"max_properties (genai.types.schema attribute)":[[0,"genai.types.Schema.max_properties",false]],"max_properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.max_properties",false]],"max_regeneration_reached (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.MAX_REGENERATION_REACHED",false]],"max_results (genai.types.vertexaisearch attribute)":[[0,"genai.types.VertexAISearch.max_results",false]],"max_results (genai.types.vertexaisearchdict attribute)":[[0,"genai.types.VertexAISearchDict.max_results",false]],"max_temperature (genai.types.model attribute)":[[0,"genai.types.Model.max_temperature",false]],"max_temperature (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.max_temperature",false]],"max_tokens (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.MAX_TOKENS",false]],"max_tokens_per_chunk (genai.types.whitespaceconfig attribute)":[[0,"genai.types.WhiteSpaceConfig.max_tokens_per_chunk",false]],"max_tokens_per_chunk (genai.types.whitespaceconfigdict attribute)":[[0,"genai.types.WhiteSpaceConfigDict.max_tokens_per_chunk",false]],"maximum (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MAXIMUM",false]],"maximum (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.maximum",false]],"maximum (genai.types.schema attribute)":[[0,"genai.types.Schema.maximum",false]],"maximum (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.maximum",false]],"maximum_remote_calls (genai.types.automaticfunctioncallingconfig attribute)":[[0,"genai.types.AutomaticFunctionCallingConfig.maximum_remote_calls",false]],"maximum_remote_calls (genai.types.automaticfunctioncallingconfigdict attribute)":[[0,"genai.types.AutomaticFunctionCallingConfigDict.maximum_remote_calls",false]],"mcp_servers (genai.types.tool attribute)":[[0,"genai.types.Tool.mcp_servers",false]],"mcp_servers (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.mcp_servers",false]],"mcpserverdict (class in genai.types)":[[0,"genai.types.McpServerDict",false]],"mean (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.mean",false]],"mean (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.mean",false]],"mean (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.mean",false]],"mean (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.mean",false]],"media (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.media",false]],"media (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.media",false]],"media_chunks (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.media_chunks",false]],"media_chunks (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.media_chunks",false]],"media_id (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.media_id",false]],"media_id (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.media_id",false]],"media_resolution (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.media_resolution",false]],"media_resolution (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.media_resolution",false]],"media_resolution (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.media_resolution",false]],"media_resolution (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.media_resolution",false]],"media_resolution (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.media_resolution",false]],"media_resolution (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.media_resolution",false]],"media_resolution (genai.types.part attribute)":[[0,"genai.types.Part.media_resolution",false]],"media_resolution (genai.types.partdict attribute)":[[0,"genai.types.PartDict.media_resolution",false]],"media_resolution_high (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_HIGH",false]],"media_resolution_high (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_HIGH",false]],"media_resolution_low (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_LOW",false]],"media_resolution_low (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_LOW",false]],"media_resolution_medium (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_MEDIUM",false]],"media_resolution_medium (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_MEDIUM",false]],"media_resolution_ultra_high (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_ULTRA_HIGH",false]],"media_resolution_unspecified (genai.types.mediaresolution attribute)":[[0,"genai.types.MediaResolution.MEDIA_RESOLUTION_UNSPECIFIED",false]],"media_resolution_unspecified (genai.types.partmediaresolutionlevel attribute)":[[0,"genai.types.PartMediaResolutionLevel.MEDIA_RESOLUTION_UNSPECIFIED",false]],"mediamodality (class in genai.types)":[[0,"genai.types.MediaModality",false]],"median (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MEDIAN",false]],"median (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.median",false]],"median (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.median",false]],"median (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.median",false]],"median (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.median",false]],"mediaresolution (class in genai.types)":[[0,"genai.types.MediaResolution",false]],"medium (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.MEDIUM",false]],"medium (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.MEDIUM",false]],"message (genai.types.filestatus attribute)":[[0,"genai.types.FileStatus.message",false]],"message (genai.types.filestatusdict attribute)":[[0,"genai.types.FileStatusDict.message",false]],"message (genai.types.googlerpcstatus attribute)":[[0,"genai.types.GoogleRpcStatus.message",false]],"message (genai.types.googlerpcstatusdict attribute)":[[0,"genai.types.GoogleRpcStatusDict.message",false]],"message (genai.types.joberror attribute)":[[0,"genai.types.JobError.message",false]],"message (genai.types.joberrordict attribute)":[[0,"genai.types.JobErrorDict.message",false]],"message (genai.types.modelstatus attribute)":[[0,"genai.types.ModelStatus.message",false]],"message (genai.types.modelstatusdict attribute)":[[0,"genai.types.ModelStatusDict.message",false]],"metadata (genai.types.embedcontentresponse attribute)":[[0,"genai.types.EmbedContentResponse.metadata",false]],"metadata (genai.types.embedcontentresponsedict attribute)":[[0,"genai.types.EmbedContentResponseDict.metadata",false]],"metadata (genai.types.inlinedembedcontentresponse attribute)":[[0,"genai.types.InlinedEmbedContentResponse.metadata",false]],"metadata (genai.types.inlinedembedcontentresponsedict attribute)":[[0,"genai.types.InlinedEmbedContentResponseDict.metadata",false]],"metadata (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.metadata",false]],"metadata (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.metadata",false]],"metadata (genai.types.inlinedresponse attribute)":[[0,"genai.types.InlinedResponse.metadata",false]],"metadata (genai.types.inlinedresponsedict attribute)":[[0,"genai.types.InlinedResponseDict.metadata",false]],"metadata (genai.types.operation attribute)":[[0,"genai.types.Operation.metadata",false]],"metadata (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.metadata",false]],"metadata (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.metadata",false]],"metadata (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.metadata",false]],"metadata (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.metadata",false]],"metadata_filter (genai.types.filesearch attribute)":[[0,"genai.types.FileSearch.metadata_filter",false]],"metadata_filter (genai.types.filesearchdict attribute)":[[0,"genai.types.FileSearchDict.metadata_filter",false]],"metadata_filter (genai.types.ragretrievalconfigfilter attribute)":[[0,"genai.types.RagRetrievalConfigFilter.metadata_filter",false]],"metadata_filter (genai.types.ragretrievalconfigfilterdict attribute)":[[0,"genai.types.RagRetrievalConfigFilterDict.metadata_filter",false]],"method (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.method",false]],"method (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.method",false]],"method (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.method",false]],"method (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.method",false]],"method (genai.types.safetysetting attribute)":[[0,"genai.types.SafetySetting.method",false]],"method (genai.types.safetysettingdict attribute)":[[0,"genai.types.SafetySettingDict.method",false]],"metric_prompt_template (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.metric_prompt_template",false]],"metric_prompt_template (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.metric_prompt_template",false]],"metric_prompt_template (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.metric_prompt_template",false]],"metric_prompt_template (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.metric_prompt_template",false]],"metric_prompt_template (genai.types.pointwisemetricspec attribute)":[[0,"genai.types.PointwiseMetricSpec.metric_prompt_template",false]],"metric_prompt_template (genai.types.pointwisemetricspecdict attribute)":[[0,"genai.types.PointwiseMetricSpecDict.metric_prompt_template",false]],"metric_spec_name (genai.types.predefinedmetricspec attribute)":[[0,"genai.types.PredefinedMetricSpec.metric_spec_name",false]],"metric_spec_name (genai.types.predefinedmetricspecdict attribute)":[[0,"genai.types.PredefinedMetricSpecDict.metric_spec_name",false]],"metric_spec_parameters (genai.types.predefinedmetricspec attribute)":[[0,"genai.types.PredefinedMetricSpec.metric_spec_parameters",false]],"metric_spec_parameters (genai.types.predefinedmetricspecdict attribute)":[[0,"genai.types.PredefinedMetricSpecDict.metric_spec_parameters",false]],"metricdict (class in genai.types)":[[0,"genai.types.MetricDict",false]],"metrics (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.metrics",false]],"metrics (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.metrics",false]],"mime_type (genai.types.audiochunk attribute)":[[0,"genai.types.AudioChunk.mime_type",false]],"mime_type (genai.types.audiochunkdict attribute)":[[0,"genai.types.AudioChunkDict.mime_type",false]],"mime_type (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.mime_type",false]],"mime_type (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.mime_type",false]],"mime_type (genai.types.blob attribute)":[[0,"genai.types.Blob.mime_type",false]],"mime_type (genai.types.blobdict attribute)":[[0,"genai.types.BlobDict.mime_type",false]],"mime_type (genai.types.document attribute)":[[0,"genai.types.Document.mime_type",false]],"mime_type (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.mime_type",false]],"mime_type (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.mime_type",false]],"mime_type (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.mime_type",false]],"mime_type (genai.types.file attribute)":[[0,"genai.types.File.mime_type",false]],"mime_type (genai.types.filedata attribute)":[[0,"genai.types.FileData.mime_type",false]],"mime_type (genai.types.filedatadict attribute)":[[0,"genai.types.FileDataDict.mime_type",false]],"mime_type (genai.types.filedict attribute)":[[0,"genai.types.FileDict.mime_type",false]],"mime_type (genai.types.functionresponseblob attribute)":[[0,"genai.types.FunctionResponseBlob.mime_type",false]],"mime_type (genai.types.functionresponseblobdict attribute)":[[0,"genai.types.FunctionResponseBlobDict.mime_type",false]],"mime_type (genai.types.functionresponsefiledata attribute)":[[0,"genai.types.FunctionResponseFileData.mime_type",false]],"mime_type (genai.types.functionresponsefiledatadict attribute)":[[0,"genai.types.FunctionResponseFileDataDict.mime_type",false]],"mime_type (genai.types.image attribute)":[[0,"genai.types.Image.mime_type",false]],"mime_type (genai.types.imageconfigimageoutputoptions attribute)":[[0,"genai.types.ImageConfigImageOutputOptions.mime_type",false]],"mime_type (genai.types.imageconfigimageoutputoptionsdict attribute)":[[0,"genai.types.ImageConfigImageOutputOptionsDict.mime_type",false]],"mime_type (genai.types.imagedict attribute)":[[0,"genai.types.ImageDict.mime_type",false]],"mime_type (genai.types.imageresponseformat attribute)":[[0,"genai.types.ImageResponseFormat.mime_type",false]],"mime_type (genai.types.imageresponseformatdict attribute)":[[0,"genai.types.ImageResponseFormatDict.mime_type",false]],"mime_type (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.mime_type",false]],"mime_type (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.mime_type",false]],"mime_type (genai.types.textresponseformat attribute)":[[0,"genai.types.TextResponseFormat.mime_type",false]],"mime_type (genai.types.textresponseformatdict attribute)":[[0,"genai.types.TextResponseFormatDict.mime_type",false]],"mime_type (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.mime_type",false]],"mime_type (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.mime_type",false]],"mime_type (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.mime_type",false]],"mime_type (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.mime_type",false]],"mime_type (genai.types.video attribute)":[[0,"genai.types.Video.mime_type",false]],"mime_type (genai.types.videodict attribute)":[[0,"genai.types.VideoDict.mime_type",false]],"min (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.min",false]],"min (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.min",false]],"min (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.min",false]],"min (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.min",false]],"min_items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.min_items",false]],"min_items (genai.types.schema attribute)":[[0,"genai.types.Schema.min_items",false]],"min_items (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.min_items",false]],"min_length (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.min_length",false]],"min_length (genai.types.schema attribute)":[[0,"genai.types.Schema.min_length",false]],"min_length (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.min_length",false]],"min_properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.min_properties",false]],"min_properties (genai.types.schema attribute)":[[0,"genai.types.Schema.min_properties",false]],"min_properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.min_properties",false]],"minimal (genai.types.reinforcementtuningthinkinglevel attribute)":[[0,"genai.types.ReinforcementTuningThinkingLevel.MINIMAL",false]],"minimal (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.MINIMAL",false]],"minimum (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MINIMUM",false]],"minimum (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.minimum",false]],"minimum (genai.types.schema attribute)":[[0,"genai.types.Schema.minimum",false]],"minimum (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.minimum",false]],"modality (class in genai.types)":[[0,"genai.types.Modality",false]],"modality (genai.types.modalitytokencount attribute)":[[0,"genai.types.ModalityTokenCount.modality",false]],"modality (genai.types.modalitytokencountdict attribute)":[[0,"genai.types.ModalityTokenCountDict.modality",false]],"modality_unspecified (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.MODALITY_UNSPECIFIED",false]],"modality_unspecified (genai.types.modality attribute)":[[0,"genai.types.Modality.MODALITY_UNSPECIFIED",false]],"modalitytokencountdict (class in genai.types)":[[0,"genai.types.ModalityTokenCountDict",false]],"mode (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.MODE",false]],"mode (genai.types.dynamicretrievalconfig attribute)":[[0,"genai.types.DynamicRetrievalConfig.mode",false]],"mode (genai.types.dynamicretrievalconfigdict attribute)":[[0,"genai.types.DynamicRetrievalConfigDict.mode",false]],"mode (genai.types.functioncallingconfig attribute)":[[0,"genai.types.FunctionCallingConfig.mode",false]],"mode (genai.types.functioncallingconfigdict attribute)":[[0,"genai.types.FunctionCallingConfigDict.mode",false]],"mode (genai.types.segmentimageconfig attribute)":[[0,"genai.types.SegmentImageConfig.mode",false]],"mode (genai.types.segmentimageconfigdict attribute)":[[0,"genai.types.SegmentImageConfigDict.mode",false]],"mode_dynamic (genai.types.dynamicretrievalconfigmode attribute)":[[0,"genai.types.DynamicRetrievalConfigMode.MODE_DYNAMIC",false]],"mode_unspecified (genai.types.dynamicretrievalconfigmode attribute)":[[0,"genai.types.DynamicRetrievalConfigMode.MODE_UNSPECIFIED",false]],"mode_unspecified (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.MODE_UNSPECIFIED",false]],"model (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.model",false]],"model (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.model",false]],"model (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.model",false]],"model (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.model",false]],"model (genai.types.embedcontentparameters attribute)":[[0,"genai.types.EmbedContentParameters.model",false]],"model (genai.types.embedcontentparametersdict attribute)":[[0,"genai.types.EmbedContentParametersDict.model",false]],"model (genai.types.inlinedrequest attribute)":[[0,"genai.types.InlinedRequest.model",false]],"model (genai.types.inlinedrequestdict attribute)":[[0,"genai.types.InlinedRequestDict.model",false]],"model (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.model",false]],"model (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.model",false]],"model (genai.types.liveconnectconstraints attribute)":[[0,"genai.types.LiveConnectConstraints.model",false]],"model (genai.types.liveconnectconstraintsdict attribute)":[[0,"genai.types.LiveConnectConstraintsDict.model",false]],"model (genai.types.liveconnectparameters attribute)":[[0,"genai.types.LiveConnectParameters.model",false]],"model (genai.types.liveconnectparametersdict attribute)":[[0,"genai.types.LiveConnectParametersDict.model",false]],"model (genai.types.livemusicclientsetup attribute)":[[0,"genai.types.LiveMusicClientSetup.model",false]],"model (genai.types.livemusicclientsetupdict attribute)":[[0,"genai.types.LiveMusicClientSetupDict.model",false]],"model (genai.types.livemusicconnectparameters attribute)":[[0,"genai.types.LiveMusicConnectParameters.model",false]],"model (genai.types.livemusicconnectparametersdict attribute)":[[0,"genai.types.LiveMusicConnectParametersDict.model",false]],"model (genai.types.tunedmodel attribute)":[[0,"genai.types.TunedModel.model",false]],"model (genai.types.tunedmodeldict attribute)":[[0,"genai.types.TunedModelDict.model",false]],"model (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.model",false]],"model (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.model",false]],"model_armor (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.MODEL_ARMOR",false]],"model_armor_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.model_armor_config",false]],"model_armor_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.model_armor_config",false]],"model_name (genai.types.generationconfigroutingconfigmanualroutingmode attribute)":[[0,"genai.types.GenerationConfigRoutingConfigManualRoutingMode.model_name",false]],"model_name (genai.types.generationconfigroutingconfigmanualroutingmodedict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigManualRoutingModeDict.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingllmranker attribute)":[[0,"genai.types.RagRetrievalConfigRankingLlmRanker.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingllmrankerdict attribute)":[[0,"genai.types.RagRetrievalConfigRankingLlmRankerDict.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingrankservice attribute)":[[0,"genai.types.RagRetrievalConfigRankingRankService.model_name",false]],"model_name (genai.types.ragretrievalconfigrankingrankservicedict attribute)":[[0,"genai.types.RagRetrievalConfigRankingRankServiceDict.model_name",false]],"model_post_init() (genai.types.image method)":[[0,"genai.types.Image.model_post_init",false]],"model_post_init() (genai.types.metric method)":[[0,"genai.types.Metric.model_post_init",false]],"model_routing_preference (genai.types.generationconfigroutingconfigautoroutingmode attribute)":[[0,"genai.types.GenerationConfigRoutingConfigAutoRoutingMode.model_routing_preference",false]],"model_routing_preference (genai.types.generationconfigroutingconfigautoroutingmodedict attribute)":[[0,"genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict.model_routing_preference",false]],"model_selection_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.model_selection_config",false]],"model_selection_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.model_selection_config",false]],"model_selection_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.model_selection_config",false]],"model_selection_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.model_selection_config",false]],"model_stage (genai.types.modelstatus attribute)":[[0,"genai.types.ModelStatus.model_stage",false]],"model_stage (genai.types.modelstatusdict attribute)":[[0,"genai.types.ModelStatusDict.model_stage",false]],"model_stage_unspecified (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.MODEL_STAGE_UNSPECIFIED",false]],"model_status (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.model_status",false]],"model_status (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.model_status",false]],"model_turn (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.model_turn",false]],"model_turn (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.model_turn",false]],"model_version (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.model_version",false]],"model_version (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.model_version",false]],"modelarmorconfigdict (class in genai.types)":[[0,"genai.types.ModelArmorConfigDict",false]],"modeldict (class in genai.types)":[[0,"genai.types.ModelDict",false]],"models (class in genai.models)":[[0,"genai.models.Models",false]],"models (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.models",false]],"models (genai.client.client property)":[[0,"genai.client.Client.models",false]],"models (genai.types.listmodelsresponse attribute)":[[0,"genai.types.ListModelsResponse.models",false]],"models (genai.types.listmodelsresponsedict attribute)":[[0,"genai.types.ListModelsResponseDict.models",false]],"modelselectionconfigdict (class in genai.types)":[[0,"genai.types.ModelSelectionConfigDict",false]],"modelstage (class in genai.types)":[[0,"genai.types.ModelStage",false]],"modelstatusdict (class in genai.types)":[[0,"genai.types.ModelStatusDict",false]],"module":[[0,"module-genai.client",false],[0,"module-genai.live",false],[0,"module-genai.models",false],[0,"module-genai.tokens",false],[0,"module-genai.tunings",false],[0,"module-genai.types",false]],"month (genai.types.googletypedate attribute)":[[0,"genai.types.GoogleTypeDate.month",false]],"month (genai.types.googletypedatedict attribute)":[[0,"genai.types.GoogleTypeDateDict.month",false]],"multi_speaker_voice_config (genai.types.speechconfig attribute)":[[0,"genai.types.SpeechConfig.multi_speaker_voice_config",false]],"multi_speaker_voice_config (genai.types.speechconfigdict attribute)":[[0,"genai.types.SpeechConfigDict.multi_speaker_voice_config",false]],"multispeakervoiceconfigdict (class in genai.types)":[[0,"genai.types.MultiSpeakerVoiceConfigDict",false]],"music (genai.live.asynclive property)":[[0,"genai.live.AsyncLive.music",false]],"music_generation_config (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.music_generation_config",false]],"music_generation_config (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.music_generation_config",false]],"music_generation_config (genai.types.livemusicsetconfigparameters attribute)":[[0,"genai.types.LiveMusicSetConfigParameters.music_generation_config",false]],"music_generation_config (genai.types.livemusicsetconfigparametersdict attribute)":[[0,"genai.types.LiveMusicSetConfigParametersDict.music_generation_config",false]],"music_generation_config (genai.types.livemusicsourcemetadata attribute)":[[0,"genai.types.LiveMusicSourceMetadata.music_generation_config",false]],"music_generation_config (genai.types.livemusicsourcemetadatadict attribute)":[[0,"genai.types.LiveMusicSourceMetadataDict.music_generation_config",false]],"music_generation_mode (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.music_generation_mode",false]],"music_generation_mode (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.music_generation_mode",false]],"music_generation_mode_unspecified (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.MUSIC_GENERATION_MODE_UNSPECIFIED",false]],"musicgenerationmode (class in genai.types)":[[0,"genai.types.MusicGenerationMode",false]],"mute_bass (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.mute_bass",false]],"mute_bass (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.mute_bass",false]],"mute_drums (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.mute_drums",false]],"mute_drums (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.mute_drums",false]],"name (genai.types.apikeyconfig attribute)":[[0,"genai.types.ApiKeyConfig.name",false]],"name (genai.types.apikeyconfigdict attribute)":[[0,"genai.types.ApiKeyConfigDict.name",false]],"name (genai.types.authtoken attribute)":[[0,"genai.types.AuthToken.name",false]],"name (genai.types.authtokendict attribute)":[[0,"genai.types.AuthTokenDict.name",false]],"name (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.name",false]],"name (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.name",false]],"name (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.name",false]],"name (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.name",false]],"name (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.name",false]],"name (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.name",false]],"name (genai.types.document attribute)":[[0,"genai.types.Document.name",false]],"name (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.name",false]],"name (genai.types.endpoint attribute)":[[0,"genai.types.Endpoint.name",false]],"name (genai.types.endpointdict attribute)":[[0,"genai.types.EndpointDict.name",false]],"name (genai.types.file attribute)":[[0,"genai.types.File.name",false]],"name (genai.types.filedict attribute)":[[0,"genai.types.FileDict.name",false]],"name (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.name",false]],"name (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.name",false]],"name (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.name",false]],"name (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.name",false]],"name (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.name",false]],"name (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.name",false]],"name (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.name",false]],"name (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.name",false]],"name (genai.types.mcpserver attribute)":[[0,"genai.types.McpServer.name",false]],"name (genai.types.mcpserverdict attribute)":[[0,"genai.types.McpServerDict.name",false]],"name (genai.types.metric attribute)":[[0,"genai.types.Metric.name",false]],"name (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.name",false]],"name (genai.types.model attribute)":[[0,"genai.types.Model.name",false]],"name (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.name",false]],"name (genai.types.operation attribute)":[[0,"genai.types.Operation.name",false]],"name (genai.types.projectoperation attribute)":[[0,"genai.types.ProjectOperation.name",false]],"name (genai.types.projectoperationdict attribute)":[[0,"genai.types.ProjectOperationDict.name",false]],"name (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.name",false]],"name (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.name",false]],"name (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.name",false]],"name (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.name",false]],"name (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.name",false]],"name (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.name",false]],"name (genai.types.uploadfileconfig attribute)":[[0,"genai.types.UploadFileConfig.name",false]],"name (genai.types.uploadfileconfigdict attribute)":[[0,"genai.types.UploadFileConfigDict.name",false]],"need_more_input (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.NEED_MORE_INPUT",false]],"negative_prompt (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.negative_prompt",false]],"negative_prompt (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.negative_prompt",false]],"negative_prompt (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.negative_prompt",false]],"negative_prompt (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.negative_prompt",false]],"negative_prompt (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.negative_prompt",false]],"negative_prompt (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.negative_prompt",false]],"negligible (genai.types.harmprobability attribute)":[[0,"genai.types.HarmProbability.NEGLIGIBLE",false]],"new_handle (genai.types.liveserversessionresumptionupdate attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdate.new_handle",false]],"new_handle (genai.types.liveserversessionresumptionupdatedict attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict.new_handle",false]],"new_session_expire_time (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.new_session_expire_time",false]],"new_session_expire_time (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.new_session_expire_time",false]],"next_page_token (genai.types.listbatchjobsresponse attribute)":[[0,"genai.types.ListBatchJobsResponse.next_page_token",false]],"next_page_token (genai.types.listbatchjobsresponsedict attribute)":[[0,"genai.types.ListBatchJobsResponseDict.next_page_token",false]],"next_page_token (genai.types.listcachedcontentsresponse attribute)":[[0,"genai.types.ListCachedContentsResponse.next_page_token",false]],"next_page_token (genai.types.listcachedcontentsresponsedict attribute)":[[0,"genai.types.ListCachedContentsResponseDict.next_page_token",false]],"next_page_token (genai.types.listdocumentsresponse attribute)":[[0,"genai.types.ListDocumentsResponse.next_page_token",false]],"next_page_token (genai.types.listdocumentsresponsedict attribute)":[[0,"genai.types.ListDocumentsResponseDict.next_page_token",false]],"next_page_token (genai.types.listfilesearchstoresresponse attribute)":[[0,"genai.types.ListFileSearchStoresResponse.next_page_token",false]],"next_page_token (genai.types.listfilesearchstoresresponsedict attribute)":[[0,"genai.types.ListFileSearchStoresResponseDict.next_page_token",false]],"next_page_token (genai.types.listfilesresponse attribute)":[[0,"genai.types.ListFilesResponse.next_page_token",false]],"next_page_token (genai.types.listfilesresponsedict attribute)":[[0,"genai.types.ListFilesResponseDict.next_page_token",false]],"next_page_token (genai.types.listmodelsresponse attribute)":[[0,"genai.types.ListModelsResponse.next_page_token",false]],"next_page_token (genai.types.listmodelsresponsedict attribute)":[[0,"genai.types.ListModelsResponseDict.next_page_token",false]],"next_page_token (genai.types.listtuningjobsresponse attribute)":[[0,"genai.types.ListTuningJobsResponse.next_page_token",false]],"next_page_token (genai.types.listtuningjobsresponsedict attribute)":[[0,"genai.types.ListTuningJobsResponseDict.next_page_token",false]],"nl_question_answer (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.NL_QUESTION_ANSWER",false]],"no_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.NO_AUTH",false]],"no_image (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.NO_IMAGE",false]],"no_interruption (genai.types.activityhandling attribute)":[[0,"genai.types.ActivityHandling.NO_INTERRUPTION",false]],"non_blocking (genai.types.behavior attribute)":[[0,"genai.types.Behavior.NON_BLOCKING",false]],"none (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.NONE",false]],"null (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.NULL",false]],"null (genai.types.type attribute)":[[0,"genai.types.Type.NULL",false]],"null_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.null_value",false]],"null_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.null_value",false]],"nullable (genai.types.schema attribute)":[[0,"genai.types.Schema.nullable",false]],"nullable (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.nullable",false]],"num_hits (genai.types.externalapielasticsearchparams attribute)":[[0,"genai.types.ExternalApiElasticSearchParams.num_hits",false]],"num_hits (genai.types.externalapielasticsearchparamsdict attribute)":[[0,"genai.types.ExternalApiElasticSearchParamsDict.num_hits",false]],"num_tokens (genai.types.partmediaresolution attribute)":[[0,"genai.types.PartMediaResolution.num_tokens",false]],"num_tokens (genai.types.partmediaresolutiondict attribute)":[[0,"genai.types.PartMediaResolutionDict.num_tokens",false]],"number (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.NUMBER",false]],"number (genai.types.type attribute)":[[0,"genai.types.Type.NUMBER",false]],"number_of_images (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.number_of_images",false]],"number_of_images (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.number_of_images",false]],"number_of_images (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.number_of_images",false]],"number_of_images (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.number_of_images",false]],"number_of_images (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.number_of_images",false]],"number_of_images (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.number_of_images",false]],"number_of_videos (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.number_of_videos",false]],"number_of_videos (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.number_of_videos",false]],"number_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.number_value",false]],"number_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.number_value",false]],"numeric_value (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.numeric_value",false]],"numeric_value (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.numeric_value",false]],"numeric_value (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.numeric_value",false]],"numeric_value (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.numeric_value",false]],"oauth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.OAUTH",false]],"oauth_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.oauth_config",false]],"oauth_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.oauth_config",false]],"object (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.OBJECT",false]],"object (genai.types.type attribute)":[[0,"genai.types.Type.OBJECT",false]],"off (genai.types.harmblockthreshold attribute)":[[0,"genai.types.HarmBlockThreshold.OFF",false]],"oidc_auth (genai.types.authtype attribute)":[[0,"genai.types.AuthType.OIDC_AUTH",false]],"oidc_config (genai.types.authconfig attribute)":[[0,"genai.types.AuthConfig.oidc_config",false]],"oidc_config (genai.types.authconfigdict attribute)":[[0,"genai.types.AuthConfigDict.oidc_config",false]],"on_demand (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.ON_DEMAND",false]],"on_demand_flex (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.ON_DEMAND_FLEX",false]],"on_demand_priority (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.ON_DEMAND_PRIORITY",false]],"one_of (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.one_of",false]],"only_bass_and_drums (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.only_bass_and_drums",false]],"only_bass_and_drums (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.only_bass_and_drums",false]],"operation (class in genai.types)":[[0,"genai.types.Operation",false]],"operation_name (genai.types.evaluatedatasetrun attribute)":[[0,"genai.types.EvaluateDatasetRun.operation_name",false]],"operation_name (genai.types.evaluatedatasetrundict attribute)":[[0,"genai.types.EvaluateDatasetRunDict.operation_name",false]],"operations (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.operations",false]],"operations (genai.client.client property)":[[0,"genai.client.Client.operations",false]],"optimized (genai.types.videocompressionquality attribute)":[[0,"genai.types.VideoCompressionQuality.OPTIMIZED",false]],"other (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.OTHER",false]],"other (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.OTHER",false]],"outcome (class in genai.types)":[[0,"genai.types.Outcome",false]],"outcome (genai.types.codeexecutionresult attribute)":[[0,"genai.types.CodeExecutionResult.outcome",false]],"outcome (genai.types.codeexecutionresultdict attribute)":[[0,"genai.types.CodeExecutionResultDict.outcome",false]],"outcome_deadline_exceeded (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_DEADLINE_EXCEEDED",false]],"outcome_failed (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_FAILED",false]],"outcome_ok (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_OK",false]],"outcome_unspecified (genai.types.outcome attribute)":[[0,"genai.types.Outcome.OUTCOME_UNSPECIFIED",false]],"outpaint (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.OUTPAINT",false]],"output (genai.types.codeexecutionresult attribute)":[[0,"genai.types.CodeExecutionResult.output",false]],"output (genai.types.codeexecutionresultdict attribute)":[[0,"genai.types.CodeExecutionResultDict.output",false]],"output (genai.types.tuningexample attribute)":[[0,"genai.types.TuningExample.output",false]],"output (genai.types.tuningexampledict attribute)":[[0,"genai.types.TuningExampleDict.output",false]],"output_audio_transcription (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.output_audio_transcription",false]],"output_audio_transcription (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.output_audio_transcription",false]],"output_audio_transcription (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.output_audio_transcription",false]],"output_audio_transcription (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.output_audio_transcription",false]],"output_compression_quality (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.output_compression_quality",false]],"output_compression_quality (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.output_compression_quality",false]],"output_compression_quality (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.output_compression_quality",false]],"output_compression_quality (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.output_compression_quality",false]],"output_config (genai.types.evaluationconfig attribute)":[[0,"genai.types.EvaluationConfig.output_config",false]],"output_config (genai.types.evaluationconfigdict attribute)":[[0,"genai.types.EvaluationConfigDict.output_config",false]],"output_dimensionality (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.output_dimensionality",false]],"output_dimensionality (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.output_dimensionality",false]],"output_gcs_uri (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.output_gcs_uri",false]],"output_gcs_uri (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.output_gcs_uri",false]],"output_gcs_uri (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.output_gcs_uri",false]],"output_image_ip_prohibited (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.OUTPUT_IMAGE_IP_PROHIBITED",false]],"output_info (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.output_info",false]],"output_info (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.output_info",false]],"output_info (genai.types.evaluatedatasetresponse attribute)":[[0,"genai.types.EvaluateDatasetResponse.output_info",false]],"output_info (genai.types.evaluatedatasetresponsedict attribute)":[[0,"genai.types.EvaluateDatasetResponseDict.output_info",false]],"output_mime_type (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.output_mime_type",false]],"output_mime_type (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.output_mime_type",false]],"output_mime_type (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.output_mime_type",false]],"output_mime_type (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.output_mime_type",false]],"output_mime_type (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.output_mime_type",false]],"output_mime_type (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.output_mime_type",false]],"output_mime_type (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.output_mime_type",false]],"output_mime_type (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.output_mime_type",false]],"output_mime_type (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.output_mime_type",false]],"output_mime_type (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.output_mime_type",false]],"output_token_limit (genai.types.model attribute)":[[0,"genai.types.Model.output_token_limit",false]],"output_token_limit (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.output_token_limit",false]],"output_transcription (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.output_transcription",false]],"output_transcription (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.output_transcription",false]],"output_uri (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.output_uri",false]],"output_uri (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.output_uri",false]],"output_uri (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.output_uri",false]],"output_uri (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.output_uri",false]],"output_uri_prefix (genai.types.gcsdestination attribute)":[[0,"genai.types.GcsDestination.output_uri_prefix",false]],"output_uri_prefix (genai.types.gcsdestinationdict attribute)":[[0,"genai.types.GcsDestinationDict.output_uri_prefix",false]],"outputconfigdict (class in genai.types)":[[0,"genai.types.OutputConfigDict",false]],"outputinfodict (class in genai.types)":[[0,"genai.types.OutputInfoDict",false]],"overall_reward (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.overall_reward",false]],"overall_reward (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.overall_reward",false]],"override_replay_id (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.override_replay_id",false]],"override_replay_id (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.override_replay_id",false]],"overwritten_threshold (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.overwritten_threshold",false]],"overwritten_threshold (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.overwritten_threshold",false]],"p5 (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.p5",false]],"p5 (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.p5",false]],"p5 (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.p5",false]],"p5 (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.p5",false]],"p95 (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.p95",false]],"p95 (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.p95",false]],"p95 (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.p95",false]],"p95 (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.p95",false]],"pad (genai.types.imageresizemode attribute)":[[0,"genai.types.ImageResizeMode.PAD",false]],"page_number (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.page_number",false]],"page_number (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.page_number",false]],"page_size (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.page_size",false]],"page_size (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.page_size",false]],"page_size (genai.types.listcachedcontentsconfig attribute)":[[0,"genai.types.ListCachedContentsConfig.page_size",false]],"page_size (genai.types.listcachedcontentsconfigdict attribute)":[[0,"genai.types.ListCachedContentsConfigDict.page_size",false]],"page_size (genai.types.listdocumentsconfig attribute)":[[0,"genai.types.ListDocumentsConfig.page_size",false]],"page_size (genai.types.listdocumentsconfigdict attribute)":[[0,"genai.types.ListDocumentsConfigDict.page_size",false]],"page_size (genai.types.listfilesconfig attribute)":[[0,"genai.types.ListFilesConfig.page_size",false]],"page_size (genai.types.listfilesconfigdict attribute)":[[0,"genai.types.ListFilesConfigDict.page_size",false]],"page_size (genai.types.listfilesearchstoresconfig attribute)":[[0,"genai.types.ListFileSearchStoresConfig.page_size",false]],"page_size (genai.types.listfilesearchstoresconfigdict attribute)":[[0,"genai.types.ListFileSearchStoresConfigDict.page_size",false]],"page_size (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.page_size",false]],"page_size (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.page_size",false]],"page_size (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.page_size",false]],"page_size (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.page_size",false]],"page_span (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.page_span",false]],"page_span (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.page_span",false]],"page_token (genai.types.listbatchjobsconfig attribute)":[[0,"genai.types.ListBatchJobsConfig.page_token",false]],"page_token (genai.types.listbatchjobsconfigdict attribute)":[[0,"genai.types.ListBatchJobsConfigDict.page_token",false]],"page_token (genai.types.listcachedcontentsconfig attribute)":[[0,"genai.types.ListCachedContentsConfig.page_token",false]],"page_token (genai.types.listcachedcontentsconfigdict attribute)":[[0,"genai.types.ListCachedContentsConfigDict.page_token",false]],"page_token (genai.types.listdocumentsconfig attribute)":[[0,"genai.types.ListDocumentsConfig.page_token",false]],"page_token (genai.types.listdocumentsconfigdict attribute)":[[0,"genai.types.ListDocumentsConfigDict.page_token",false]],"page_token (genai.types.listfilesconfig attribute)":[[0,"genai.types.ListFilesConfig.page_token",false]],"page_token (genai.types.listfilesconfigdict attribute)":[[0,"genai.types.ListFilesConfigDict.page_token",false]],"page_token (genai.types.listfilesearchstoresconfig attribute)":[[0,"genai.types.ListFileSearchStoresConfig.page_token",false]],"page_token (genai.types.listfilesearchstoresconfigdict attribute)":[[0,"genai.types.ListFileSearchStoresConfigDict.page_token",false]],"page_token (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.page_token",false]],"page_token (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.page_token",false]],"page_token (genai.types.listtuningjobsconfig attribute)":[[0,"genai.types.ListTuningJobsConfig.page_token",false]],"page_token (genai.types.listtuningjobsconfigdict attribute)":[[0,"genai.types.ListTuningJobsConfigDict.page_token",false]],"pairwise_choice (genai.types.pairwisemetricresult attribute)":[[0,"genai.types.PairwiseMetricResult.pairwise_choice",false]],"pairwise_choice (genai.types.pairwisemetricresultdict attribute)":[[0,"genai.types.PairwiseMetricResultDict.pairwise_choice",false]],"pairwise_choice_unspecified (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.PAIRWISE_CHOICE_UNSPECIFIED",false]],"pairwise_metric_result (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.pairwise_metric_result",false]],"pairwise_metric_result (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.pairwise_metric_result",false]],"pairwisechoice (class in genai.types)":[[0,"genai.types.PairwiseChoice",false]],"pairwisemetricresultdict (class in genai.types)":[[0,"genai.types.PairwiseMetricResultDict",false]],"pairwisemetricspecdict (class in genai.types)":[[0,"genai.types.PairwiseMetricSpecDict",false]],"parallel_ai_search (genai.types.tool attribute)":[[0,"genai.types.Tool.parallel_ai_search",false]],"parallel_ai_search (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.parallel_ai_search",false]],"parameter_names (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.parameter_names",false]],"parameter_names (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.parameter_names",false]],"parameters (genai.types.computationbasedmetricspec attribute)":[[0,"genai.types.ComputationBasedMetricSpec.parameters",false]],"parameters (genai.types.computationbasedmetricspecdict attribute)":[[0,"genai.types.ComputationBasedMetricSpecDict.parameters",false]],"parameters (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.parameters",false]],"parameters (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.parameters",false]],"parameters (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.parameters",false]],"parameters (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.parameters",false]],"parameters_json_schema (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.parameters_json_schema",false]],"parameters_json_schema (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.parameters_json_schema",false]],"parent (genai.types.importfileresponse attribute)":[[0,"genai.types.ImportFileResponse.parent",false]],"parent (genai.types.importfileresponsedict attribute)":[[0,"genai.types.ImportFileResponseDict.parent",false]],"parent (genai.types.uploadtofilesearchstoreresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResponse.parent",false]],"parent (genai.types.uploadtofilesearchstoreresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResponseDict.parent",false]],"parse_and_reduce_fn (genai.types.metric attribute)":[[0,"genai.types.Metric.parse_and_reduce_fn",false]],"parse_and_reduce_fn (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.parse_and_reduce_fn",false]],"parse_response_config (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.parse_response_config",false]],"parse_response_config (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.parse_response_config",false]],"parse_type (genai.types.reinforcementtuningparseresponseconfig attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfig.parse_type",false]],"parse_type (genai.types.reinforcementtuningparseresponseconfigdict attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfigDict.parse_type",false]],"parsed (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.parsed",false]],"parsed_response_conversion_scorer (genai.types.reinforcementtuningautoraterscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorer.parsed_response_conversion_scorer",false]],"parsed_response_conversion_scorer (genai.types.reinforcementtuningautoraterscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict.parsed_response_conversion_scorer",false]],"parsing_function (genai.types.evaluationparserconfigcustomcodeparserconfig attribute)":[[0,"genai.types.EvaluationParserConfigCustomCodeParserConfig.parsing_function",false]],"parsing_function (genai.types.evaluationparserconfigcustomcodeparserconfigdict attribute)":[[0,"genai.types.EvaluationParserConfigCustomCodeParserConfigDict.parsing_function",false]],"part_index (genai.types.segment attribute)":[[0,"genai.types.Segment.part_index",false]],"part_index (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.part_index",false]],"part_metadata (genai.types.part attribute)":[[0,"genai.types.Part.part_metadata",false]],"part_metadata (genai.types.partdict attribute)":[[0,"genai.types.PartDict.part_metadata",false]],"partdict (class in genai.types)":[[0,"genai.types.PartDict",false]],"partial_args (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.partial_args",false]],"partial_args (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.partial_args",false]],"partial_match (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.PARTIAL_MATCH",false]],"partialargdict (class in genai.types)":[[0,"genai.types.PartialArgDict",false]],"partmediaresolutiondict (class in genai.types)":[[0,"genai.types.PartMediaResolutionDict",false]],"partmediaresolutionlevel (class in genai.types)":[[0,"genai.types.PartMediaResolutionLevel",false]],"partner_model_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.partner_model_tuning_spec",false]],"partner_model_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.partner_model_tuning_spec",false]],"partnermodeltuningspecdict (class in genai.types)":[[0,"genai.types.PartnerModelTuningSpecDict",false]],"parts (genai.types.content attribute)":[[0,"genai.types.Content.parts",false]],"parts (genai.types.contentdict attribute)":[[0,"genai.types.ContentDict.parts",false]],"parts (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.parts",false]],"parts (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.parts",false]],"parts (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.parts",false]],"parts (genai.types.modelcontent attribute)":[[0,"genai.types.ModelContent.parts",false]],"parts (genai.types.usercontent attribute)":[[0,"genai.types.UserContent.parts",false]],"pattern (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.pattern",false]],"pattern (genai.types.schema attribute)":[[0,"genai.types.Schema.pattern",false]],"pattern (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.pattern",false]],"pause (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.PAUSE",false]],"pending_documents_count (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.pending_documents_count",false]],"pending_documents_count (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.pending_documents_count",false]],"percentile_p90 (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.PERCENTILE_P90",false]],"percentile_p95 (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.PERCENTILE_P95",false]],"percentile_p99 (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.PERCENTILE_P99",false]],"person_generation (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.person_generation",false]],"person_generation (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.person_generation",false]],"person_generation (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.person_generation",false]],"person_generation (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.person_generation",false]],"person_generation (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.person_generation",false]],"person_generation (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.person_generation",false]],"person_generation (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.person_generation",false]],"person_generation (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.person_generation",false]],"person_generation (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.person_generation",false]],"person_generation (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.person_generation",false]],"person_generation (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.person_generation",false]],"person_generation (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.person_generation",false]],"person_image (genai.types.recontextimagesource attribute)":[[0,"genai.types.RecontextImageSource.person_image",false]],"person_image (genai.types.recontextimagesourcedict attribute)":[[0,"genai.types.RecontextImageSourceDict.person_image",false]],"persongeneration (class in genai.types)":[[0,"genai.types.PersonGeneration",false]],"phish_block_threshold_unspecified (genai.types.phishblockthreshold attribute)":[[0,"genai.types.PhishBlockThreshold.PHISH_BLOCK_THRESHOLD_UNSPECIFIED",false]],"phishblockthreshold (class in genai.types)":[[0,"genai.types.PhishBlockThreshold",false]],"photo_uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattribution attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution.photo_uri",false]],"photo_uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattributiondict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict.photo_uri",false]],"ping() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.ping",false]],"ping() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.ping",false]],"pipeline_job (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.pipeline_job",false]],"pipeline_job (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.pipeline_job",false]],"pipeline_root_directory (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.pipeline_root_directory",false]],"pipeline_root_directory (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.pipeline_root_directory",false]],"place_answer_sources (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.place_answer_sources",false]],"place_answer_sources (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.place_answer_sources",false]],"place_id (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.place_id",false]],"place_id (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.place_id",false]],"places (genai.types.googlemapsgroundingtypes attribute)":[[0,"genai.types.GoogleMapsGroundingTypes.places",false]],"places (genai.types.googlemapsgroundingtypesdict attribute)":[[0,"genai.types.GoogleMapsGroundingTypesDict.places",false]],"play (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.PLAY",false]],"playback_control (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.playback_control",false]],"playback_control (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.playback_control",false]],"playback_control_unspecified (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.PLAYBACK_CONTROL_UNSPECIFIED",false]],"pointwise_metric_result (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.pointwise_metric_result",false]],"pointwise_metric_result (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.pointwise_metric_result",false]],"pointwise_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.pointwise_metric_spec",false]],"pointwise_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.pointwise_metric_spec",false]],"pointwisemetricresultdict (class in genai.types)":[[0,"genai.types.PointwiseMetricResultDict",false]],"pointwisemetricspecdict (class in genai.types)":[[0,"genai.types.PointwiseMetricSpecDict",false]],"portrait (genai.types.videoorientation attribute)":[[0,"genai.types.VideoOrientation.PORTRAIT",false]],"positive_prompt_safety_attributes (genai.types.generateimagesresponse attribute)":[[0,"genai.types.GenerateImagesResponse.positive_prompt_safety_attributes",false]],"positive_prompt_safety_attributes (genai.types.generateimagesresponsedict attribute)":[[0,"genai.types.GenerateImagesResponseDict.positive_prompt_safety_attributes",false]],"pre_tuned_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.pre_tuned_model",false]],"pre_tuned_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.pre_tuned_model",false]],"pre_tuned_model_checkpoint_id (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.pre_tuned_model_checkpoint_id",false]],"pre_tuned_model_checkpoint_id (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.pre_tuned_model_checkpoint_id",false]],"prebuilt_voice_config (genai.types.voiceconfig attribute)":[[0,"genai.types.VoiceConfig.prebuilt_voice_config",false]],"prebuilt_voice_config (genai.types.voiceconfigdict attribute)":[[0,"genai.types.VoiceConfigDict.prebuilt_voice_config",false]],"prebuiltvoiceconfigdict (class in genai.types)":[[0,"genai.types.PrebuiltVoiceConfigDict",false]],"predefined_metric_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.predefined_metric_spec",false]],"predefined_metric_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.predefined_metric_spec",false]],"predefined_rubric_generation_spec (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.predefined_rubric_generation_spec",false]],"predefined_rubric_generation_spec (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.predefined_rubric_generation_spec",false]],"predefinedmetricspecdict (class in genai.types)":[[0,"genai.types.PredefinedMetricSpecDict",false]],"predict (genai.types.embeddingapitype attribute)":[[0,"genai.types.EmbeddingApiType.PREDICT",false]],"preference_optimization_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.preference_optimization_data_stats",false]],"preference_optimization_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.preference_optimization_data_stats",false]],"preference_optimization_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.preference_optimization_spec",false]],"preference_optimization_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.preference_optimization_spec",false]],"preference_tuning (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.PREFERENCE_TUNING",false]],"preferenceoptimizationdatastatsdict (class in genai.types)":[[0,"genai.types.PreferenceOptimizationDataStatsDict",false]],"preferenceoptimizationhyperparametersdict (class in genai.types)":[[0,"genai.types.PreferenceOptimizationHyperParametersDict",false]],"preferenceoptimizationspecdict (class in genai.types)":[[0,"genai.types.PreferenceOptimizationSpecDict",false]],"prefix_padding_ms (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.prefix_padding_ms",false]],"prefix_padding_ms (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.prefix_padding_ms",false]],"presence_penalty (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.presence_penalty",false]],"presence_penalty (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.presence_penalty",false]],"presence_penalty (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.presence_penalty",false]],"presence_penalty (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.presence_penalty",false]],"pretunedmodeldict (class in genai.types)":[[0,"genai.types.PreTunedModelDict",false]],"preview (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.PREVIEW",false]],"prioritize_cost (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.PRIORITIZE_COST",false]],"prioritize_quality (genai.types.featureselectionpreference attribute)":[[0,"genai.types.FeatureSelectionPreference.PRIORITIZE_QUALITY",false]],"priority (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.PRIORITY",false]],"proactive_audio (genai.types.proactivityconfig attribute)":[[0,"genai.types.ProactivityConfig.proactive_audio",false]],"proactive_audio (genai.types.proactivityconfigdict attribute)":[[0,"genai.types.ProactivityConfigDict.proactive_audio",false]],"proactivity (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.proactivity",false]],"proactivity (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.proactivity",false]],"proactivity (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.proactivity",false]],"proactivity (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.proactivity",false]],"proactivityconfigdict (class in genai.types)":[[0,"genai.types.ProactivityConfigDict",false]],"probability (genai.types.harmblockmethod attribute)":[[0,"genai.types.HarmBlockMethod.PROBABILITY",false]],"probability (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.probability",false]],"probability (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.probability",false]],"probability_score (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.probability_score",false]],"probability_score (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.probability_score",false]],"processing (genai.types.filestate attribute)":[[0,"genai.types.FileState.PROCESSING",false]],"product_image (genai.types.productimage attribute)":[[0,"genai.types.ProductImage.product_image",false]],"product_image (genai.types.productimagedict attribute)":[[0,"genai.types.ProductImageDict.product_image",false]],"product_images (genai.types.recontextimagesource attribute)":[[0,"genai.types.RecontextImageSource.product_images",false]],"product_images (genai.types.recontextimagesourcedict attribute)":[[0,"genai.types.RecontextImageSourceDict.product_images",false]],"productimagedict (class in genai.types)":[[0,"genai.types.ProductImageDict",false]],"prohibited_content (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.PROHIBITED_CONTENT",false]],"prohibited_content (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.PROHIBITED_CONTENT",false]],"prohibited_input_content (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.PROHIBITED_INPUT_CONTENT",false]],"project (genai.client.client attribute)":[[0,"genai.client.Client.project",false]],"projectoperationdict (class in genai.types)":[[0,"genai.types.ProjectOperationDict",false]],"prominent_people (genai.types.imageconfig attribute)":[[0,"genai.types.ImageConfig.prominent_people",false]],"prominent_people (genai.types.imageconfigdict attribute)":[[0,"genai.types.ImageConfigDict.prominent_people",false]],"prominent_people_unspecified (genai.types.prominentpeople attribute)":[[0,"genai.types.ProminentPeople.PROMINENT_PEOPLE_UNSPECIFIED",false]],"prominentpeople (class in genai.types)":[[0,"genai.types.ProminentPeople",false]],"prompt (genai.types.generatevideossource attribute)":[[0,"genai.types.GenerateVideosSource.prompt",false]],"prompt (genai.types.generatevideossourcedict attribute)":[[0,"genai.types.GenerateVideosSourceDict.prompt",false]],"prompt (genai.types.recontextimagesource attribute)":[[0,"genai.types.RecontextImageSource.prompt",false]],"prompt (genai.types.recontextimagesourcedict attribute)":[[0,"genai.types.RecontextImageSourceDict.prompt",false]],"prompt (genai.types.segmentimagesource attribute)":[[0,"genai.types.SegmentImageSource.prompt",false]],"prompt (genai.types.segmentimagesourcedict attribute)":[[0,"genai.types.SegmentImageSourceDict.prompt",false]],"prompt (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.PROMPT",false]],"prompt_dataset_uri (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.prompt_dataset_uri",false]],"prompt_dataset_uri (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.prompt_dataset_uri",false]],"prompt_dataset_uri (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.prompt_dataset_uri",false]],"prompt_dataset_uri (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.prompt_dataset_uri",false]],"prompt_feedback (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.prompt_feedback",false]],"prompt_feedback (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.prompt_feedback",false]],"prompt_template (genai.types.metric attribute)":[[0,"genai.types.Metric.prompt_template",false]],"prompt_template (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.prompt_template",false]],"prompt_template (genai.types.rubricgenerationspec attribute)":[[0,"genai.types.RubricGenerationSpec.prompt_template",false]],"prompt_template (genai.types.rubricgenerationspecdict attribute)":[[0,"genai.types.RubricGenerationSpecDict.prompt_template",false]],"prompt_template_name (genai.types.modelarmorconfig attribute)":[[0,"genai.types.ModelArmorConfig.prompt_template_name",false]],"prompt_template_name (genai.types.modelarmorconfigdict attribute)":[[0,"genai.types.ModelArmorConfigDict.prompt_template_name",false]],"prompt_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.prompt_token_count",false]],"prompt_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.prompt_token_count",false]],"prompt_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.prompt_token_count",false]],"prompt_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.prompt_token_count",false]],"prompt_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.prompt_tokens_details",false]],"prompt_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.prompt_tokens_details",false]],"prompt_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.prompt_tokens_details",false]],"prompt_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.prompt_tokens_details",false]],"properties (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.properties",false]],"properties (genai.types.schema attribute)":[[0,"genai.types.Schema.properties",false]],"properties (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.properties",false]],"property (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.PROPERTY",false]],"property_ordering (genai.types.schema attribute)":[[0,"genai.types.Schema.property_ordering",false]],"property_ordering (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.property_ordering",false]],"provisioned_throughput (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.PROVISIONED_THROUGHPUT",false]],"pt (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.pt",false]],"publication_date (genai.types.citation attribute)":[[0,"genai.types.Citation.publication_date",false]],"publication_date (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.publication_date",false]],"pubsub_topic (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.pubsub_topic",false]],"pubsub_topic (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.pubsub_topic",false]],"python (genai.types.language attribute)":[[0,"genai.types.Language.PYTHON",false]],"python_code_assertion (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.PYTHON_CODE_ASSERTION",false]],"python_code_snippet (genai.types.reinforcementtuningcodeexecutionrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningCodeExecutionRewardScorer.python_code_snippet",false]],"python_code_snippet (genai.types.reinforcementtuningcodeexecutionrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningCodeExecutionRewardScorerDict.python_code_snippet",false]],"quality (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.QUALITY",false]],"query_base (genai.types.listmodelsconfig attribute)":[[0,"genai.types.ListModelsConfig.query_base",false]],"query_base (genai.types.listmodelsconfigdict attribute)":[[0,"genai.types.ListModelsConfigDict.query_base",false]],"rag_chunk (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.rag_chunk",false]],"rag_chunk (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.rag_chunk",false]],"rag_corpora (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.rag_corpora",false]],"rag_corpora (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.rag_corpora",false]],"rag_corpus (genai.types.vertexragstoreragresource attribute)":[[0,"genai.types.VertexRagStoreRagResource.rag_corpus",false]],"rag_corpus (genai.types.vertexragstoreragresourcedict attribute)":[[0,"genai.types.VertexRagStoreRagResourceDict.rag_corpus",false]],"rag_file_ids (genai.types.vertexragstoreragresource attribute)":[[0,"genai.types.VertexRagStoreRagResource.rag_file_ids",false]],"rag_file_ids (genai.types.vertexragstoreragresourcedict attribute)":[[0,"genai.types.VertexRagStoreRagResourceDict.rag_file_ids",false]],"rag_resources (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.rag_resources",false]],"rag_resources (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.rag_resources",false]],"rag_retrieval_config (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.rag_retrieval_config",false]],"rag_retrieval_config (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.rag_retrieval_config",false]],"ragchunkdict (class in genai.types)":[[0,"genai.types.RagChunkDict",false]],"ragchunkpagespandict (class in genai.types)":[[0,"genai.types.RagChunkPageSpanDict",false]],"ragretrievalconfigdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigDict",false]],"ragretrievalconfigfilterdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigFilterDict",false]],"ragretrievalconfighybridsearchdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigHybridSearchDict",false]],"ragretrievalconfigrankingdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigRankingDict",false]],"ragretrievalconfigrankingllmrankerdict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigRankingLlmRankerDict",false]],"ragretrievalconfigrankingrankservicedict (class in genai.types)":[[0,"genai.types.RagRetrievalConfigRankingRankServiceDict",false]],"rai_filtered_reason (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.rai_filtered_reason",false]],"rai_filtered_reason (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.rai_filtered_reason",false]],"rai_media_filtered_count (genai.types.generatevideosresponse attribute)":[[0,"genai.types.GenerateVideosResponse.rai_media_filtered_count",false]],"rai_media_filtered_count (genai.types.generatevideosresponsedict attribute)":[[0,"genai.types.GenerateVideosResponseDict.rai_media_filtered_count",false]],"rai_media_filtered_reasons (genai.types.generatevideosresponse attribute)":[[0,"genai.types.GenerateVideosResponse.rai_media_filtered_reasons",false]],"rai_media_filtered_reasons (genai.types.generatevideosresponsedict attribute)":[[0,"genai.types.GenerateVideosResponseDict.rai_media_filtered_reasons",false]],"rank_service (genai.types.ragretrievalconfigranking attribute)":[[0,"genai.types.RagRetrievalConfigRanking.rank_service",false]],"rank_service (genai.types.ragretrievalconfigrankingdict attribute)":[[0,"genai.types.RagRetrievalConfigRankingDict.rank_service",false]],"ranking (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.ranking",false]],"ranking (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.ranking",false]],"raw_output (genai.types.rawoutput attribute)":[[0,"genai.types.RawOutput.raw_output",false]],"raw_output (genai.types.rawoutputdict attribute)":[[0,"genai.types.RawOutputDict.raw_output",false]],"raw_outputs (genai.types.customoutput attribute)":[[0,"genai.types.CustomOutput.raw_outputs",false]],"raw_outputs (genai.types.customoutputdict attribute)":[[0,"genai.types.CustomOutputDict.raw_outputs",false]],"rawoutputdict (class in genai.types)":[[0,"genai.types.RawOutputDict",false]],"rawreferenceimagedict (class in genai.types)":[[0,"genai.types.RawReferenceImageDict",false]],"realtime_input (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.realtime_input",false]],"realtime_input (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.realtime_input",false]],"realtime_input_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.realtime_input_config",false]],"realtime_input_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.realtime_input_config",false]],"realtimeinputconfigdict (class in genai.types)":[[0,"genai.types.RealtimeInputConfigDict",false]],"receive() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.receive",false]],"recitation (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.RECITATION",false]],"recontext_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.recontext_image",false]],"recontext_image() (genai.models.models method)":[[0,"genai.models.Models.recontext_image",false]],"recontextimageconfigdict (class in genai.types)":[[0,"genai.types.RecontextImageConfigDict",false]],"recontextimageresponsedict (class in genai.types)":[[0,"genai.types.RecontextImageResponseDict",false]],"recontextimagesourcedict (class in genai.types)":[[0,"genai.types.RecontextImageSourceDict",false]],"ref (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.ref",false]],"ref (genai.types.schema attribute)":[[0,"genai.types.Schema.ref",false]],"ref (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.ref",false]],"reference_id (genai.types.contentreferenceimage attribute)":[[0,"genai.types.ContentReferenceImage.reference_id",false]],"reference_id (genai.types.contentreferenceimagedict attribute)":[[0,"genai.types.ContentReferenceImageDict.reference_id",false]],"reference_id (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.reference_id",false]],"reference_id (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.reference_id",false]],"reference_id (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.reference_id",false]],"reference_id (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.reference_id",false]],"reference_id (genai.types.rawreferenceimage attribute)":[[0,"genai.types.RawReferenceImage.reference_id",false]],"reference_id (genai.types.rawreferenceimagedict attribute)":[[0,"genai.types.RawReferenceImageDict.reference_id",false]],"reference_id (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.reference_id",false]],"reference_id (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.reference_id",false]],"reference_id (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.reference_id",false]],"reference_id (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.reference_id",false]],"reference_image (genai.types.contentreferenceimage attribute)":[[0,"genai.types.ContentReferenceImage.reference_image",false]],"reference_image (genai.types.contentreferenceimagedict attribute)":[[0,"genai.types.ContentReferenceImageDict.reference_image",false]],"reference_image (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.reference_image",false]],"reference_image (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.reference_image",false]],"reference_image (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.reference_image",false]],"reference_image (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.reference_image",false]],"reference_image (genai.types.rawreferenceimage attribute)":[[0,"genai.types.RawReferenceImage.reference_image",false]],"reference_image (genai.types.rawreferenceimagedict attribute)":[[0,"genai.types.RawReferenceImageDict.reference_image",false]],"reference_image (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.reference_image",false]],"reference_image (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.reference_image",false]],"reference_image (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.reference_image",false]],"reference_image (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.reference_image",false]],"reference_images (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.reference_images",false]],"reference_images (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.reference_images",false]],"reference_type (genai.types.contentreferenceimage attribute)":[[0,"genai.types.ContentReferenceImage.reference_type",false]],"reference_type (genai.types.contentreferenceimagedict attribute)":[[0,"genai.types.ContentReferenceImageDict.reference_type",false]],"reference_type (genai.types.controlreferenceimage attribute)":[[0,"genai.types.ControlReferenceImage.reference_type",false]],"reference_type (genai.types.controlreferenceimagedict attribute)":[[0,"genai.types.ControlReferenceImageDict.reference_type",false]],"reference_type (genai.types.maskreferenceimage attribute)":[[0,"genai.types.MaskReferenceImage.reference_type",false]],"reference_type (genai.types.maskreferenceimagedict attribute)":[[0,"genai.types.MaskReferenceImageDict.reference_type",false]],"reference_type (genai.types.rawreferenceimage attribute)":[[0,"genai.types.RawReferenceImage.reference_type",false]],"reference_type (genai.types.rawreferenceimagedict attribute)":[[0,"genai.types.RawReferenceImageDict.reference_type",false]],"reference_type (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.reference_type",false]],"reference_type (genai.types.stylereferenceimagedict attribute)":[[0,"genai.types.StyleReferenceImageDict.reference_type",false]],"reference_type (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.reference_type",false]],"reference_type (genai.types.subjectreferenceimagedict attribute)":[[0,"genai.types.SubjectReferenceImageDict.reference_type",false]],"reference_type (genai.types.videogenerationreferenceimage attribute)":[[0,"genai.types.VideoGenerationReferenceImage.reference_type",false]],"reference_type (genai.types.videogenerationreferenceimagedict attribute)":[[0,"genai.types.VideoGenerationReferenceImageDict.reference_type",false]],"references (genai.types.reinforcementtuningexample attribute)":[[0,"genai.types.ReinforcementTuningExample.references",false]],"references (genai.types.reinforcementtuningexampledict attribute)":[[0,"genai.types.ReinforcementTuningExampleDict.references",false]],"regex_contains (genai.types.matchoperation attribute)":[[0,"genai.types.MatchOperation.REGEX_CONTAINS",false]],"regex_extract (genai.types.responseparsetype attribute)":[[0,"genai.types.ResponseParseType.REGEX_EXTRACT",false]],"regex_extract_expression (genai.types.reinforcementtuningparseresponseconfig attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfig.regex_extract_expression",false]],"regex_extract_expression (genai.types.reinforcementtuningparseresponseconfigdict attribute)":[[0,"genai.types.ReinforcementTuningParseResponseConfigDict.regex_extract_expression",false]],"registered (genai.types.filesource attribute)":[[0,"genai.types.FileSource.REGISTERED",false]],"registerfilesconfigdict (class in genai.types)":[[0,"genai.types.RegisterFilesConfigDict",false]],"registerfilesresponsedict (class in genai.types)":[[0,"genai.types.RegisterFilesResponseDict",false]],"regular (genai.types.tuningspeed attribute)":[[0,"genai.types.TuningSpeed.REGULAR",false]],"reinforcement_tuning (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.REINFORCEMENT_TUNING",false]],"reinforcement_tuning_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.reinforcement_tuning_data_stats",false]],"reinforcement_tuning_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.reinforcement_tuning_data_stats",false]],"reinforcement_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.reinforcement_tuning_spec",false]],"reinforcement_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.reinforcement_tuning_spec",false]],"reinforcement_tuning_thinking_level_unspecified (genai.types.reinforcementtuningthinkinglevel attribute)":[[0,"genai.types.ReinforcementTuningThinkingLevel.REINFORCEMENT_TUNING_THINKING_LEVEL_UNSPECIFIED",false]],"reinforcement_tuning_user_dataset_examples (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.reinforcement_tuning_user_dataset_examples",false]],"reinforcement_tuning_user_dataset_examples (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.reinforcement_tuning_user_dataset_examples",false]],"reinforcementtuningautoraterscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningAutoraterScorerDict",false]],"reinforcementtuningautoraterscorerexactmatchscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict",false]],"reinforcementtuningautoraterscorerparsedresponseconversionscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningAutoraterScorerParsedResponseConversionScorerDict",false]],"reinforcementtuningcloudrunrewardscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningCloudRunRewardScorerDict",false]],"reinforcementtuningcodeexecutionrewardscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningCodeExecutionRewardScorerDict",false]],"reinforcementtuningexampledict (class in genai.types)":[[0,"genai.types.ReinforcementTuningExampleDict",false]],"reinforcementtuninghyperparametersdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningHyperParametersDict",false]],"reinforcementtuningparseresponseconfigdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningParseResponseConfigDict",false]],"reinforcementtuningrewardinfodict (class in genai.types)":[[0,"genai.types.ReinforcementTuningRewardInfoDict",false]],"reinforcementtuningspecdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningSpecDict",false]],"reinforcementtuningstringmatchrewardscorerdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict",false]],"reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict (class in genai.types)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict",false]],"reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict (class in genai.types)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict",false]],"reinforcementtuningthinkinglevel (class in genai.types)":[[0,"genai.types.ReinforcementTuningThinkingLevel",false]],"reinforcementtuninguserdatasetexamplesdict (class in genai.types)":[[0,"genai.types.ReinforcementTuningUserDatasetExamplesDict",false]],"relative_publish_time_description (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.relative_publish_time_description",false]],"relative_publish_time_description (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.relative_publish_time_description",false]],"remove (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.REMOVE",false]],"remove_static (genai.types.videogenerationmaskmode attribute)":[[0,"genai.types.VideoGenerationMaskMode.REMOVE_STATIC",false]],"rendered_content (genai.types.searchentrypoint attribute)":[[0,"genai.types.SearchEntryPoint.rendered_content",false]],"rendered_content (genai.types.searchentrypointdict attribute)":[[0,"genai.types.SearchEntryPointDict.rendered_content",false]],"rendered_parts (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.rendered_parts",false]],"rendered_parts (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.rendered_parts",false]],"replay_id (genai.client.debugconfig attribute)":[[0,"genai.client.DebugConfig.replay_id",false]],"replay_id (genai.types.replayfile attribute)":[[0,"genai.types.ReplayFile.replay_id",false]],"replay_id (genai.types.replayfiledict attribute)":[[0,"genai.types.ReplayFileDict.replay_id",false]],"replayfiledict (class in genai.types)":[[0,"genai.types.ReplayFileDict",false]],"replayinteractiondict (class in genai.types)":[[0,"genai.types.ReplayInteractionDict",false]],"replayrequestdict (class in genai.types)":[[0,"genai.types.ReplayRequestDict",false]],"replayresponsedict (class in genai.types)":[[0,"genai.types.ReplayResponseDict",false]],"replays_directory (genai.client.debugconfig attribute)":[[0,"genai.client.DebugConfig.replays_directory",false]],"replicated_voice_config (genai.types.voiceconfig attribute)":[[0,"genai.types.VoiceConfig.replicated_voice_config",false]],"replicated_voice_config (genai.types.voiceconfigdict attribute)":[[0,"genai.types.VoiceConfigDict.replicated_voice_config",false]],"replicatedvoiceconfigdict (class in genai.types)":[[0,"genai.types.ReplicatedVoiceConfigDict",false]],"request (genai.types.replayinteraction attribute)":[[0,"genai.types.ReplayInteraction.request",false]],"request (genai.types.replayinteractiondict attribute)":[[0,"genai.types.ReplayInteractionDict.request",false]],"required (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.required",false]],"required (genai.types.schema attribute)":[[0,"genai.types.Schema.required",false]],"required (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.required",false]],"reset_context (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.RESET_CONTEXT",false]],"resize_mode (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.resize_mode",false]],"resize_mode (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.resize_mode",false]],"resolution (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.resolution",false]],"resolution (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.resolution",false]],"resourcescope (class in genai.types)":[[0,"genai.types.ResourceScope",false]],"response (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.response",false]],"response (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.response",false]],"response (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.response",false]],"response (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.response",false]],"response (genai.types.generatevideosoperation attribute)":[[0,"genai.types.GenerateVideosOperation.response",false]],"response (genai.types.importfileoperation attribute)":[[0,"genai.types.ImportFileOperation.response",false]],"response (genai.types.inlinedembedcontentresponse attribute)":[[0,"genai.types.InlinedEmbedContentResponse.response",false]],"response (genai.types.inlinedembedcontentresponsedict attribute)":[[0,"genai.types.InlinedEmbedContentResponseDict.response",false]],"response (genai.types.inlinedresponse attribute)":[[0,"genai.types.InlinedResponse.response",false]],"response (genai.types.inlinedresponsedict attribute)":[[0,"genai.types.InlinedResponseDict.response",false]],"response (genai.types.replayinteraction attribute)":[[0,"genai.types.ReplayInteraction.response",false]],"response (genai.types.replayinteractiondict attribute)":[[0,"genai.types.ReplayInteractionDict.response",false]],"response (genai.types.toolresponse attribute)":[[0,"genai.types.ToolResponse.response",false]],"response (genai.types.toolresponsedict attribute)":[[0,"genai.types.ToolResponseDict.response",false]],"response (genai.types.uploadtofilesearchstoreoperation attribute)":[[0,"genai.types.UploadToFileSearchStoreOperation.response",false]],"response_format (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_format",false]],"response_format (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_format",false]],"response_id (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.response_id",false]],"response_id (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.response_id",false]],"response_json_schema (genai.types.functiondeclaration attribute)":[[0,"genai.types.FunctionDeclaration.response_json_schema",false]],"response_json_schema (genai.types.functiondeclarationdict attribute)":[[0,"genai.types.FunctionDeclarationDict.response_json_schema",false]],"response_json_schema (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_json_schema",false]],"response_json_schema (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_json_schema",false]],"response_json_schema (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_json_schema",false]],"response_json_schema (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_json_schema",false]],"response_logprobs (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_logprobs",false]],"response_logprobs (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_logprobs",false]],"response_logprobs (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_logprobs",false]],"response_logprobs (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_logprobs",false]],"response_mime_type (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_mime_type",false]],"response_mime_type (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_mime_type",false]],"response_mime_type (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_mime_type",false]],"response_mime_type (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_mime_type",false]],"response_modalities (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_modalities",false]],"response_modalities (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_modalities",false]],"response_modalities (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_modalities",false]],"response_modalities (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_modalities",false]],"response_modalities (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.response_modalities",false]],"response_modalities (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.response_modalities",false]],"response_parse_type_unspecified (genai.types.responseparsetype attribute)":[[0,"genai.types.ResponseParseType.RESPONSE_PARSE_TYPE_UNSPECIFIED",false]],"response_rejected (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.RESPONSE_REJECTED",false]],"response_schema (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.response_schema",false]],"response_schema (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.response_schema",false]],"response_schema (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.response_schema",false]],"response_schema (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.response_schema",false]],"response_template_name (genai.types.modelarmorconfig attribute)":[[0,"genai.types.ModelArmorConfig.response_template_name",false]],"response_template_name (genai.types.modelarmorconfigdict attribute)":[[0,"genai.types.ModelArmorConfigDict.response_template_name",false]],"response_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.response_token_count",false]],"response_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.response_token_count",false]],"response_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.response_tokens_details",false]],"response_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.response_tokens_details",false]],"responseformatdict (class in genai.types)":[[0,"genai.types.ResponseFormatDict",false]],"responseparsetype (class in genai.types)":[[0,"genai.types.ResponseParseType",false]],"result (genai.types.generatevideosoperation attribute)":[[0,"genai.types.GenerateVideosOperation.result",false]],"result_parser_config (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.result_parser_config",false]],"result_parser_config (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.result_parser_config",false]],"resumable (genai.types.liveserversessionresumptionupdate attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdate.resumable",false]],"resumable (genai.types.liveserversessionresumptionupdatedict attribute)":[[0,"genai.types.LiveServerSessionResumptionUpdateDict.resumable",false]],"retired (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.RETIRED",false]],"retirement_time (genai.types.modelstatus attribute)":[[0,"genai.types.ModelStatus.retirement_time",false]],"retirement_time (genai.types.modelstatusdict attribute)":[[0,"genai.types.ModelStatusDict.retirement_time",false]],"retrieval (genai.types.tool attribute)":[[0,"genai.types.Tool.retrieval",false]],"retrieval (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.retrieval",false]],"retrieval_config (genai.types.toolconfig attribute)":[[0,"genai.types.ToolConfig.retrieval_config",false]],"retrieval_config (genai.types.toolconfigdict attribute)":[[0,"genai.types.ToolConfigDict.retrieval_config",false]],"retrieval_metadata (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.retrieval_metadata",false]],"retrieval_metadata (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.retrieval_metadata",false]],"retrieval_queries (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.retrieval_queries",false]],"retrieval_queries (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.retrieval_queries",false]],"retrievalconfigdict (class in genai.types)":[[0,"genai.types.RetrievalConfigDict",false]],"retrievaldict (class in genai.types)":[[0,"genai.types.RetrievalDict",false]],"retrievalmetadatadict (class in genai.types)":[[0,"genai.types.RetrievalMetadataDict",false]],"retrieved_context (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.retrieved_context",false]],"retrieved_context (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.retrieved_context",false]],"retrieved_url (genai.types.urlmetadata attribute)":[[0,"genai.types.UrlMetadata.retrieved_url",false]],"retrieved_url (genai.types.urlmetadatadict attribute)":[[0,"genai.types.UrlMetadataDict.retrieved_url",false]],"retry_options (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.retry_options",false]],"retry_options (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.retry_options",false]],"return_raw_output (genai.types.customoutputformatconfig attribute)":[[0,"genai.types.CustomOutputFormatConfig.return_raw_output",false]],"return_raw_output (genai.types.customoutputformatconfigdict attribute)":[[0,"genai.types.CustomOutputFormatConfigDict.return_raw_output",false]],"return_raw_output (genai.types.metric attribute)":[[0,"genai.types.Metric.return_raw_output",false]],"return_raw_output (genai.types.metricdict attribute)":[[0,"genai.types.MetricDict.return_raw_output",false]],"review (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.review",false]],"review (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.review",false]],"review_id (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.review_id",false]],"review_id (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.review_id",false]],"review_snippet (genai.types.groundingchunkmapsplaceanswersources attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSources.review_snippet",false]],"review_snippet (genai.types.groundingchunkmapsplaceanswersourcesdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict.review_snippet",false]],"review_snippets (genai.types.groundingchunkmapsplaceanswersources attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSources.review_snippets",false]],"review_snippets (genai.types.groundingchunkmapsplaceanswersourcesdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict.review_snippets",false]],"reward (genai.types.reinforcementtuningrewardinfo attribute)":[[0,"genai.types.ReinforcementTuningRewardInfo.reward",false]],"reward (genai.types.reinforcementtuningrewardinfodict attribute)":[[0,"genai.types.ReinforcementTuningRewardInfoDict.reward",false]],"reward_config (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfig attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfig.reward_config",false]],"reward_config (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfigdict attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict.reward_config",false]],"reward_config (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.reward_config",false]],"reward_config (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.reward_config",false]],"reward_info_details (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.reward_info_details",false]],"reward_info_details (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.reward_info_details",false]],"reward_name (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.reward_name",false]],"reward_name (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.reward_name",false]],"right (genai.types.datasetdistributiondistributionbucket attribute)":[[0,"genai.types.DatasetDistributionDistributionBucket.right",false]],"right (genai.types.datasetdistributiondistributionbucketdict attribute)":[[0,"genai.types.DatasetDistributionDistributionBucketDict.right",false]],"right (genai.types.supervisedtuningdatasetdistributiondatasetbucket attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucket.right",false]],"right (genai.types.supervisedtuningdatasetdistributiondatasetbucketdict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict.right",false]],"role (genai.types.content attribute)":[[0,"genai.types.Content.role",false]],"role (genai.types.contentdict attribute)":[[0,"genai.types.ContentDict.role",false]],"role (genai.types.modelcontent attribute)":[[0,"genai.types.ModelContent.role",false]],"role (genai.types.tokensinfo attribute)":[[0,"genai.types.TokensInfo.role",false]],"role (genai.types.tokensinfodict attribute)":[[0,"genai.types.TokensInfoDict.role",false]],"role (genai.types.usercontent attribute)":[[0,"genai.types.UserContent.role",false]],"rotate_signing_secret() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.rotate_signing_secret",false]],"rotate_signing_secret() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.rotate_signing_secret",false]],"rouge (genai.types.computationbasedmetrictype attribute)":[[0,"genai.types.ComputationBasedMetricType.ROUGE",false]],"rouge_metric_value (genai.types.aggregationresult attribute)":[[0,"genai.types.AggregationResult.rouge_metric_value",false]],"rouge_metric_value (genai.types.aggregationresultdict attribute)":[[0,"genai.types.AggregationResultDict.rouge_metric_value",false]],"rouge_spec (genai.types.unifiedmetric attribute)":[[0,"genai.types.UnifiedMetric.rouge_spec",false]],"rouge_spec (genai.types.unifiedmetricdict attribute)":[[0,"genai.types.UnifiedMetricDict.rouge_spec",false]],"rouge_type (genai.types.rougespec attribute)":[[0,"genai.types.RougeSpec.rouge_type",false]],"rouge_type (genai.types.rougespecdict attribute)":[[0,"genai.types.RougeSpecDict.rouge_type",false]],"rougemetricvaluedict (class in genai.types)":[[0,"genai.types.RougeMetricValueDict",false]],"rougespecdict (class in genai.types)":[[0,"genai.types.RougeSpecDict",false]],"route (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.route",false]],"route (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.route",false]],"routing (genai.types.googlemapsgroundingtypes attribute)":[[0,"genai.types.GoogleMapsGroundingTypes.routing",false]],"routing (genai.types.googlemapsgroundingtypesdict attribute)":[[0,"genai.types.GoogleMapsGroundingTypesDict.routing",false]],"routing_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.routing_config",false]],"routing_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.routing_config",false]],"routing_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.routing_config",false]],"routing_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.routing_config",false]],"rubric_content_type (genai.types.rubricgenerationspec attribute)":[[0,"genai.types.RubricGenerationSpec.rubric_content_type",false]],"rubric_content_type (genai.types.rubricgenerationspecdict attribute)":[[0,"genai.types.RubricGenerationSpecDict.rubric_content_type",false]],"rubric_content_type_unspecified (genai.types.rubriccontenttype attribute)":[[0,"genai.types.RubricContentType.RUBRIC_CONTENT_TYPE_UNSPECIFIED",false]],"rubric_generation_spec (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.rubric_generation_spec",false]],"rubric_generation_spec (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.rubric_generation_spec",false]],"rubric_group_key (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.rubric_group_key",false]],"rubric_group_key (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.rubric_group_key",false]],"rubric_type_ontology (genai.types.rubricgenerationspec attribute)":[[0,"genai.types.RubricGenerationSpec.rubric_type_ontology",false]],"rubric_type_ontology (genai.types.rubricgenerationspecdict attribute)":[[0,"genai.types.RubricGenerationSpecDict.rubric_type_ontology",false]],"rubriccontenttype (class in genai.types)":[[0,"genai.types.RubricContentType",false]],"rubricgenerationspecdict (class in genai.types)":[[0,"genai.types.RubricGenerationSpecDict",false]],"run() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.run",false]],"run() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.run",false]],"safety (genai.types.blockedreason attribute)":[[0,"genai.types.BlockedReason.SAFETY",false]],"safety (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.SAFETY",false]],"safety_attributes (genai.types.generatedimage attribute)":[[0,"genai.types.GeneratedImage.safety_attributes",false]],"safety_attributes (genai.types.generatedimagedict attribute)":[[0,"genai.types.GeneratedImageDict.safety_attributes",false]],"safety_filter_level (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.safety_filter_level",false]],"safety_filter_level (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.safety_filter_level",false]],"safety_filter_level (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.safety_filter_level",false]],"safety_filter_level (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.safety_filter_level",false]],"safety_filter_level (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.safety_filter_level",false]],"safety_filter_level (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.safety_filter_level",false]],"safety_filter_level (genai.types.upscaleimageconfig attribute)":[[0,"genai.types.UpscaleImageConfig.safety_filter_level",false]],"safety_filter_level (genai.types.upscaleimageconfigdict attribute)":[[0,"genai.types.UpscaleImageConfigDict.safety_filter_level",false]],"safety_policy_unspecified (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.SAFETY_POLICY_UNSPECIFIED",false]],"safety_ratings (genai.types.candidate attribute)":[[0,"genai.types.Candidate.safety_ratings",false]],"safety_ratings (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.safety_ratings",false]],"safety_ratings (genai.types.generatecontentresponsepromptfeedback attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedback.safety_ratings",false]],"safety_ratings (genai.types.generatecontentresponsepromptfeedbackdict attribute)":[[0,"genai.types.GenerateContentResponsePromptFeedbackDict.safety_ratings",false]],"safety_settings (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.safety_settings",false]],"safety_settings (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.safety_settings",false]],"safety_settings (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.safety_settings",false]],"safety_settings (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.safety_settings",false]],"safety_settings (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.safety_settings",false]],"safety_settings (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.safety_settings",false]],"safetyattributesdict (class in genai.types)":[[0,"genai.types.SafetyAttributesDict",false]],"safetyfilterlevel (class in genai.types)":[[0,"genai.types.SafetyFilterLevel",false]],"safetypolicy (class in genai.types)":[[0,"genai.types.SafetyPolicy",false]],"safetyratingdict (class in genai.types)":[[0,"genai.types.SafetyRatingDict",false]],"safetysettingdict (class in genai.types)":[[0,"genai.types.SafetySettingDict",false]],"sample_rate (genai.types.audioresponseformat attribute)":[[0,"genai.types.AudioResponseFormat.sample_rate",false]],"sample_rate (genai.types.audioresponseformatdict attribute)":[[0,"genai.types.AudioResponseFormatDict.sample_rate",false]],"samples_per_prompt (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.samples_per_prompt",false]],"samples_per_prompt (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.samples_per_prompt",false]],"samples_per_prompt (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.samples_per_prompt",false]],"samples_per_prompt (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.samples_per_prompt",false]],"sampling_count (genai.types.autoraterconfig attribute)":[[0,"genai.types.AutoraterConfig.sampling_count",false]],"sampling_count (genai.types.autoraterconfigdict attribute)":[[0,"genai.types.AutoraterConfigDict.sampling_count",false]],"save() (genai.types.image method)":[[0,"genai.types.Image.save",false]],"save() (genai.types.video method)":[[0,"genai.types.Video.save",false]],"scale (class in genai.types)":[[0,"genai.types.Scale",false]],"scale (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.scale",false]],"scale (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.scale",false]],"scale_unspecified (genai.types.scale attribute)":[[0,"genai.types.Scale.SCALE_UNSPECIFIED",false]],"scheduling (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.scheduling",false]],"scheduling (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.scheduling",false]],"scheduling_unspecified (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.SCHEDULING_UNSPECIFIED",false]],"schema (genai.types.textresponseformatdict attribute)":[[0,"genai.types.TextResponseFormatDict.schema",false]],"schemadict (class in genai.types)":[[0,"genai.types.SchemaDict",false]],"score (genai.types.bleumetricvalue attribute)":[[0,"genai.types.BleuMetricValue.score",false]],"score (genai.types.bleumetricvaluedict attribute)":[[0,"genai.types.BleuMetricValueDict.score",false]],"score (genai.types.customcodeexecutionresult attribute)":[[0,"genai.types.CustomCodeExecutionResult.score",false]],"score (genai.types.customcodeexecutionresultdict attribute)":[[0,"genai.types.CustomCodeExecutionResultDict.score",false]],"score (genai.types.entitylabel attribute)":[[0,"genai.types.EntityLabel.score",false]],"score (genai.types.entitylabeldict attribute)":[[0,"genai.types.EntityLabelDict.score",false]],"score (genai.types.exactmatchmetricvalue attribute)":[[0,"genai.types.ExactMatchMetricValue.score",false]],"score (genai.types.exactmatchmetricvaluedict attribute)":[[0,"genai.types.ExactMatchMetricValueDict.score",false]],"score (genai.types.geminipreferenceexamplecompletion attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletion.score",false]],"score (genai.types.geminipreferenceexamplecompletiondict attribute)":[[0,"genai.types.GeminiPreferenceExampleCompletionDict.score",false]],"score (genai.types.pointwisemetricresult attribute)":[[0,"genai.types.PointwiseMetricResult.score",false]],"score (genai.types.pointwisemetricresultdict attribute)":[[0,"genai.types.PointwiseMetricResultDict.score",false]],"score (genai.types.rougemetricvalue attribute)":[[0,"genai.types.RougeMetricValue.score",false]],"score (genai.types.rougemetricvaluedict attribute)":[[0,"genai.types.RougeMetricValueDict.score",false]],"score_variance_per_example_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.score_variance_per_example_distribution",false]],"score_variance_per_example_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.score_variance_per_example_distribution",false]],"scores (genai.types.safetyattributes attribute)":[[0,"genai.types.SafetyAttributes.scores",false]],"scores (genai.types.safetyattributesdict attribute)":[[0,"genai.types.SafetyAttributesDict.scores",false]],"scores_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.scores_distribution",false]],"scores_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.scores_distribution",false]],"scribble_image (genai.types.segmentimagesource attribute)":[[0,"genai.types.SegmentImageSource.scribble_image",false]],"scribble_image (genai.types.segmentimagesourcedict attribute)":[[0,"genai.types.SegmentImageSourceDict.scribble_image",false]],"scribbleimagedict (class in genai.types)":[[0,"genai.types.ScribbleImageDict",false]],"sdk_blob (genai.types.searchentrypoint attribute)":[[0,"genai.types.SearchEntryPoint.sdk_blob",false]],"sdk_blob (genai.types.searchentrypointdict attribute)":[[0,"genai.types.SearchEntryPointDict.sdk_blob",false]],"sdk_http_response (genai.types.canceltuningjobresponse attribute)":[[0,"genai.types.CancelTuningJobResponse.sdk_http_response",false]],"sdk_http_response (genai.types.canceltuningjobresponsedict attribute)":[[0,"genai.types.CancelTuningJobResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.computetokensresponse attribute)":[[0,"genai.types.ComputeTokensResponse.sdk_http_response",false]],"sdk_http_response (genai.types.computetokensresponsedict attribute)":[[0,"genai.types.ComputeTokensResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.counttokensresponse attribute)":[[0,"genai.types.CountTokensResponse.sdk_http_response",false]],"sdk_http_response (genai.types.counttokensresponsedict attribute)":[[0,"genai.types.CountTokensResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.createfileresponse attribute)":[[0,"genai.types.CreateFileResponse.sdk_http_response",false]],"sdk_http_response (genai.types.createfileresponsedict attribute)":[[0,"genai.types.CreateFileResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deletecachedcontentresponse attribute)":[[0,"genai.types.DeleteCachedContentResponse.sdk_http_response",false]],"sdk_http_response (genai.types.deletecachedcontentresponsedict attribute)":[[0,"genai.types.DeleteCachedContentResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deletefileresponse attribute)":[[0,"genai.types.DeleteFileResponse.sdk_http_response",false]],"sdk_http_response (genai.types.deletefileresponsedict attribute)":[[0,"genai.types.DeleteFileResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deletemodelresponse attribute)":[[0,"genai.types.DeleteModelResponse.sdk_http_response",false]],"sdk_http_response (genai.types.deletemodelresponsedict attribute)":[[0,"genai.types.DeleteModelResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.deleteresourcejob attribute)":[[0,"genai.types.DeleteResourceJob.sdk_http_response",false]],"sdk_http_response (genai.types.deleteresourcejobdict attribute)":[[0,"genai.types.DeleteResourceJobDict.sdk_http_response",false]],"sdk_http_response (genai.types.editimageresponse attribute)":[[0,"genai.types.EditImageResponse.sdk_http_response",false]],"sdk_http_response (genai.types.editimageresponsedict attribute)":[[0,"genai.types.EditImageResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.embedcontentresponse attribute)":[[0,"genai.types.EmbedContentResponse.sdk_http_response",false]],"sdk_http_response (genai.types.embedcontentresponsedict attribute)":[[0,"genai.types.EmbedContentResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.sdk_http_response",false]],"sdk_http_response (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.generateimagesresponse attribute)":[[0,"genai.types.GenerateImagesResponse.sdk_http_response",false]],"sdk_http_response (genai.types.generateimagesresponsedict attribute)":[[0,"genai.types.GenerateImagesResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.importfileresponse attribute)":[[0,"genai.types.ImportFileResponse.sdk_http_response",false]],"sdk_http_response (genai.types.importfileresponsedict attribute)":[[0,"genai.types.ImportFileResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listbatchjobsresponse attribute)":[[0,"genai.types.ListBatchJobsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listbatchjobsresponsedict attribute)":[[0,"genai.types.ListBatchJobsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listcachedcontentsresponse attribute)":[[0,"genai.types.ListCachedContentsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listcachedcontentsresponsedict attribute)":[[0,"genai.types.ListCachedContentsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listdocumentsresponse attribute)":[[0,"genai.types.ListDocumentsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listdocumentsresponsedict attribute)":[[0,"genai.types.ListDocumentsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesearchstoresresponse attribute)":[[0,"genai.types.ListFileSearchStoresResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesearchstoresresponsedict attribute)":[[0,"genai.types.ListFileSearchStoresResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesresponse attribute)":[[0,"genai.types.ListFilesResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listfilesresponsedict attribute)":[[0,"genai.types.ListFilesResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listmodelsresponse attribute)":[[0,"genai.types.ListModelsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listmodelsresponsedict attribute)":[[0,"genai.types.ListModelsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.listtuningjobsresponse attribute)":[[0,"genai.types.ListTuningJobsResponse.sdk_http_response",false]],"sdk_http_response (genai.types.listtuningjobsresponsedict attribute)":[[0,"genai.types.ListTuningJobsResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.registerfilesresponse attribute)":[[0,"genai.types.RegisterFilesResponse.sdk_http_response",false]],"sdk_http_response (genai.types.registerfilesresponsedict attribute)":[[0,"genai.types.RegisterFilesResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.sdk_http_response",false]],"sdk_http_response (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.sdk_http_response",false]],"sdk_http_response (genai.types.tuningoperation attribute)":[[0,"genai.types.TuningOperation.sdk_http_response",false]],"sdk_http_response (genai.types.tuningoperationdict attribute)":[[0,"genai.types.TuningOperationDict.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResponse.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresumableresponse attribute)":[[0,"genai.types.UploadToFileSearchStoreResumableResponse.sdk_http_response",false]],"sdk_http_response (genai.types.uploadtofilesearchstoreresumableresponsedict attribute)":[[0,"genai.types.UploadToFileSearchStoreResumableResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.upscaleimageresponse attribute)":[[0,"genai.types.UpscaleImageResponse.sdk_http_response",false]],"sdk_http_response (genai.types.upscaleimageresponsedict attribute)":[[0,"genai.types.UpscaleImageResponseDict.sdk_http_response",false]],"sdk_http_response (genai.types.validaterewardresponse attribute)":[[0,"genai.types.ValidateRewardResponse.sdk_http_response",false]],"sdk_http_response (genai.types.validaterewardresponsedict attribute)":[[0,"genai.types.ValidateRewardResponseDict.sdk_http_response",false]],"sdk_response_segments (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.sdk_response_segments",false]],"sdk_response_segments (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.sdk_response_segments",false]],"search_entry_point (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.search_entry_point",false]],"search_entry_point (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.search_entry_point",false]],"search_template (genai.types.externalapielasticsearchparams attribute)":[[0,"genai.types.ExternalApiElasticSearchParams.search_template",false]],"search_template (genai.types.externalapielasticsearchparamsdict attribute)":[[0,"genai.types.ExternalApiElasticSearchParamsDict.search_template",false]],"search_types (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.search_types",false]],"search_types (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.search_types",false]],"searchentrypointdict (class in genai.types)":[[0,"genai.types.SearchEntryPointDict",false]],"searchtypesdict (class in genai.types)":[[0,"genai.types.SearchTypesDict",false]],"seed (genai.types.editimageconfig attribute)":[[0,"genai.types.EditImageConfig.seed",false]],"seed (genai.types.editimageconfigdict attribute)":[[0,"genai.types.EditImageConfigDict.seed",false]],"seed (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.seed",false]],"seed (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.seed",false]],"seed (genai.types.generateimagesconfig attribute)":[[0,"genai.types.GenerateImagesConfig.seed",false]],"seed (genai.types.generateimagesconfigdict attribute)":[[0,"genai.types.GenerateImagesConfigDict.seed",false]],"seed (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.seed",false]],"seed (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.seed",false]],"seed (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.seed",false]],"seed (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.seed",false]],"seed (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.seed",false]],"seed (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.seed",false]],"seed (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.seed",false]],"seed (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.seed",false]],"seed (genai.types.recontextimageconfig attribute)":[[0,"genai.types.RecontextImageConfig.seed",false]],"seed (genai.types.recontextimageconfigdict attribute)":[[0,"genai.types.RecontextImageConfigDict.seed",false]],"segment (genai.types.groundingsupport attribute)":[[0,"genai.types.GroundingSupport.segment",false]],"segment (genai.types.groundingsupportdict attribute)":[[0,"genai.types.GroundingSupportDict.segment",false]],"segment_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.segment_image",false]],"segment_image() (genai.models.models method)":[[0,"genai.models.Models.segment_image",false]],"segmentation_classes (genai.types.maskreferenceconfig attribute)":[[0,"genai.types.MaskReferenceConfig.segmentation_classes",false]],"segmentation_classes (genai.types.maskreferenceconfigdict attribute)":[[0,"genai.types.MaskReferenceConfigDict.segmentation_classes",false]],"segmentdict (class in genai.types)":[[0,"genai.types.SegmentDict",false]],"segmentimageconfigdict (class in genai.types)":[[0,"genai.types.SegmentImageConfigDict",false]],"segmentimageresponsedict (class in genai.types)":[[0,"genai.types.SegmentImageResponseDict",false]],"segmentimagesourcedict (class in genai.types)":[[0,"genai.types.SegmentImageSourceDict",false]],"segmentmode (class in genai.types)":[[0,"genai.types.SegmentMode",false]],"semantic (genai.types.segmentmode attribute)":[[0,"genai.types.SegmentMode.SEMANTIC",false]],"send() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send",false]],"send_client_content() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send_client_content",false]],"send_realtime_input() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send_realtime_input",false]],"send_tool_response() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.send_tool_response",false]],"sensitive_data_modification (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.SENSITIVE_DATA_MODIFICATION",false]],"server_content (genai.types.livemusicservermessage attribute)":[[0,"genai.types.LiveMusicServerMessage.server_content",false]],"server_content (genai.types.livemusicservermessagedict attribute)":[[0,"genai.types.LiveMusicServerMessageDict.server_content",false]],"server_content (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.server_content",false]],"server_content (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.server_content",false]],"service_account (genai.types.authconfiggoogleserviceaccountconfig attribute)":[[0,"genai.types.AuthConfigGoogleServiceAccountConfig.service_account",false]],"service_account (genai.types.authconfiggoogleserviceaccountconfigdict attribute)":[[0,"genai.types.AuthConfigGoogleServiceAccountConfigDict.service_account",false]],"service_account (genai.types.authconfigoauthconfig attribute)":[[0,"genai.types.AuthConfigOauthConfig.service_account",false]],"service_account (genai.types.authconfigoauthconfigdict attribute)":[[0,"genai.types.AuthConfigOauthConfigDict.service_account",false]],"service_account (genai.types.authconfigoidcconfig attribute)":[[0,"genai.types.AuthConfigOidcConfig.service_account",false]],"service_account (genai.types.authconfigoidcconfigdict attribute)":[[0,"genai.types.AuthConfigOidcConfigDict.service_account",false]],"service_account (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.service_account",false]],"service_account (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.service_account",false]],"service_tier (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.service_tier",false]],"service_tier (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.service_tier",false]],"service_tier (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.service_tier",false]],"service_tier (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.service_tier",false]],"servicetier (class in genai.types)":[[0,"genai.types.ServiceTier",false]],"session_id (genai.types.liveserversetupcomplete attribute)":[[0,"genai.types.LiveServerSetupComplete.session_id",false]],"session_id (genai.types.liveserversetupcompletedict attribute)":[[0,"genai.types.LiveServerSetupCompleteDict.session_id",false]],"session_resumption (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.session_resumption",false]],"session_resumption (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.session_resumption",false]],"session_resumption (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.session_resumption",false]],"session_resumption (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.session_resumption",false]],"session_resumption_update (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.session_resumption_update",false]],"session_resumption_update (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.session_resumption_update",false]],"sessionresumptionconfigdict (class in genai.types)":[[0,"genai.types.SessionResumptionConfigDict",false]],"setup (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.setup",false]],"setup (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.setup",false]],"setup (genai.types.livemusicclientmessage attribute)":[[0,"genai.types.LiveMusicClientMessage.setup",false]],"setup (genai.types.livemusicclientmessagedict attribute)":[[0,"genai.types.LiveMusicClientMessageDict.setup",false]],"setup_complete (genai.types.livemusicservermessage attribute)":[[0,"genai.types.LiveMusicServerMessage.setup_complete",false]],"setup_complete (genai.types.livemusicservermessagedict attribute)":[[0,"genai.types.LiveMusicServerMessageDict.setup_complete",false]],"setup_complete (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.setup_complete",false]],"setup_complete (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.setup_complete",false]],"severity (genai.types.harmblockmethod attribute)":[[0,"genai.types.HarmBlockMethod.SEVERITY",false]],"severity (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.severity",false]],"severity (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.severity",false]],"severity_score (genai.types.safetyrating attribute)":[[0,"genai.types.SafetyRating.severity_score",false]],"severity_score (genai.types.safetyratingdict attribute)":[[0,"genai.types.SafetyRatingDict.severity_score",false]],"sft_loss_weight_multiplier (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.sft_loss_weight_multiplier",false]],"sft_loss_weight_multiplier (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.sft_loss_weight_multiplier",false]],"sha256_hash (genai.types.file attribute)":[[0,"genai.types.File.sha256_hash",false]],"sha256_hash (genai.types.filedict attribute)":[[0,"genai.types.FileDict.sha256_hash",false]],"should_return_http_response (genai.types.createfileconfig attribute)":[[0,"genai.types.CreateFileConfig.should_return_http_response",false]],"should_return_http_response (genai.types.createfileconfigdict attribute)":[[0,"genai.types.CreateFileConfigDict.should_return_http_response",false]],"should_return_http_response (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.should_return_http_response",false]],"should_return_http_response (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.should_return_http_response",false]],"should_return_http_response (genai.types.registerfilesconfig attribute)":[[0,"genai.types.RegisterFilesConfig.should_return_http_response",false]],"should_return_http_response (genai.types.registerfilesconfigdict attribute)":[[0,"genai.types.RegisterFilesConfigDict.should_return_http_response",false]],"should_return_http_response (genai.types.uploadtofilesearchstoreconfig attribute)":[[0,"genai.types.UploadToFileSearchStoreConfig.should_return_http_response",false]],"should_return_http_response (genai.types.uploadtofilesearchstoreconfigdict attribute)":[[0,"genai.types.UploadToFileSearchStoreConfigDict.should_return_http_response",false]],"show() (genai.types.image method)":[[0,"genai.types.Image.show",false]],"show() (genai.types.video method)":[[0,"genai.types.Video.show",false]],"signature (genai.types.voiceconsentsignature attribute)":[[0,"genai.types.VoiceConsentSignature.signature",false]],"signature (genai.types.voiceconsentsignaturedict attribute)":[[0,"genai.types.VoiceConsentSignatureDict.signature",false]],"silence_duration_ms (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.silence_duration_ms",false]],"silence_duration_ms (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.silence_duration_ms",false]],"silent (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.SILENT",false]],"similarity_top_k (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.similarity_top_k",false]],"similarity_top_k (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.similarity_top_k",false]],"simple_search (genai.types.apispec attribute)":[[0,"genai.types.ApiSpec.SIMPLE_SEARCH",false]],"simple_search_params (genai.types.externalapi attribute)":[[0,"genai.types.ExternalApi.simple_search_params",false]],"simple_search_params (genai.types.externalapidict attribute)":[[0,"genai.types.ExternalApiDict.simple_search_params",false]],"single_reward_config (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.single_reward_config",false]],"single_reward_config (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.single_reward_config",false]],"singleembedcontentresponsedict (class in genai.types)":[[0,"genai.types.SingleEmbedContentResponseDict",false]],"singlereinforcementtuningrewardconfigdict (class in genai.types)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict",false]],"size_bytes (genai.types.document attribute)":[[0,"genai.types.Document.size_bytes",false]],"size_bytes (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.size_bytes",false]],"size_bytes (genai.types.file attribute)":[[0,"genai.types.File.size_bytes",false]],"size_bytes (genai.types.filedict attribute)":[[0,"genai.types.FileDict.size_bytes",false]],"size_bytes (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.size_bytes",false]],"size_bytes (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.size_bytes",false]],"skip_in_api_mode (genai.types.testtableitem attribute)":[[0,"genai.types.TestTableItem.skip_in_api_mode",false]],"skip_in_api_mode (genai.types.testtableitemdict attribute)":[[0,"genai.types.TestTableItemDict.skip_in_api_mode",false]],"sliding_window (genai.types.contextwindowcompressionconfig attribute)":[[0,"genai.types.ContextWindowCompressionConfig.sliding_window",false]],"sliding_window (genai.types.contextwindowcompressionconfigdict attribute)":[[0,"genai.types.ContextWindowCompressionConfigDict.sliding_window",false]],"slidingwindowdict (class in genai.types)":[[0,"genai.types.SlidingWindowDict",false]],"source (genai.types.file attribute)":[[0,"genai.types.File.source",false]],"source (genai.types.filedict attribute)":[[0,"genai.types.FileDict.source",false]],"source_flagging_uris (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.source_flagging_uris",false]],"source_flagging_uris (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.source_flagging_uris",false]],"source_id (genai.types.groundingmetadatasourceflagginguri attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUri.source_id",false]],"source_id (genai.types.groundingmetadatasourceflagginguridict attribute)":[[0,"genai.types.GroundingMetadataSourceFlaggingUriDict.source_id",false]],"source_metadata (genai.types.audiochunk attribute)":[[0,"genai.types.AudioChunk.source_metadata",false]],"source_metadata (genai.types.audiochunkdict attribute)":[[0,"genai.types.AudioChunkDict.source_metadata",false]],"source_unspecified (genai.types.filesource attribute)":[[0,"genai.types.FileSource.SOURCE_UNSPECIFIED",false]],"source_uri (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.source_uri",false]],"source_uri (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.source_uri",false]],"speaker (genai.types.speakervoiceconfig attribute)":[[0,"genai.types.SpeakerVoiceConfig.speaker",false]],"speaker (genai.types.speakervoiceconfigdict attribute)":[[0,"genai.types.SpeakerVoiceConfigDict.speaker",false]],"speaker_label (genai.types.transcription attribute)":[[0,"genai.types.Transcription.speaker_label",false]],"speaker_label (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.speaker_label",false]],"speaker_voice_configs (genai.types.multispeakervoiceconfig attribute)":[[0,"genai.types.MultiSpeakerVoiceConfig.speaker_voice_configs",false]],"speaker_voice_configs (genai.types.multispeakervoiceconfigdict attribute)":[[0,"genai.types.MultiSpeakerVoiceConfigDict.speaker_voice_configs",false]],"speakervoiceconfigdict (class in genai.types)":[[0,"genai.types.SpeakerVoiceConfigDict",false]],"speech_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.speech_config",false]],"speech_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.speech_config",false]],"speech_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.speech_config",false]],"speech_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.speech_config",false]],"speech_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.speech_config",false]],"speech_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.speech_config",false]],"speechconfigdict (class in genai.types)":[[0,"genai.types.SpeechConfigDict",false]],"spii (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.SPII",false]],"split_summaries (genai.types.rougespec attribute)":[[0,"genai.types.RougeSpec.split_summaries",false]],"split_summaries (genai.types.rougespecdict attribute)":[[0,"genai.types.RougeSpecDict.split_summaries",false]],"src (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.src",false]],"src (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.src",false]],"sse_read_timeout (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.sse_read_timeout",false]],"sse_read_timeout (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.sse_read_timeout",false]],"stable (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.STABLE",false]],"standard (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.STANDARD",false]],"standard_deviation (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.STANDARD_DEVIATION",false]],"start_index (genai.types.citation attribute)":[[0,"genai.types.Citation.start_index",false]],"start_index (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.start_index",false]],"start_index (genai.types.segment attribute)":[[0,"genai.types.Segment.start_index",false]],"start_index (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.start_index",false]],"start_of_activity_interrupts (genai.types.activityhandling attribute)":[[0,"genai.types.ActivityHandling.START_OF_ACTIVITY_INTERRUPTS",false]],"start_of_speech_sensitivity (genai.types.automaticactivitydetection attribute)":[[0,"genai.types.AutomaticActivityDetection.start_of_speech_sensitivity",false]],"start_of_speech_sensitivity (genai.types.automaticactivitydetectiondict attribute)":[[0,"genai.types.AutomaticActivityDetectionDict.start_of_speech_sensitivity",false]],"start_offset (genai.types.videometadata attribute)":[[0,"genai.types.VideoMetadata.start_offset",false]],"start_offset (genai.types.videometadatadict attribute)":[[0,"genai.types.VideoMetadataDict.start_offset",false]],"start_offset (genai.types.wordinfo attribute)":[[0,"genai.types.WordInfo.start_offset",false]],"start_offset (genai.types.wordinfodict attribute)":[[0,"genai.types.WordInfoDict.start_offset",false]],"start_sensitivity_high (genai.types.startsensitivity attribute)":[[0,"genai.types.StartSensitivity.START_SENSITIVITY_HIGH",false]],"start_sensitivity_low (genai.types.startsensitivity attribute)":[[0,"genai.types.StartSensitivity.START_SENSITIVITY_LOW",false]],"start_sensitivity_unspecified (genai.types.startsensitivity attribute)":[[0,"genai.types.StartSensitivity.START_SENSITIVITY_UNSPECIFIED",false]],"start_stream() (genai.live.asyncsession method)":[[0,"genai.live.AsyncSession.start_stream",false]],"start_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.start_time",false]],"start_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.start_time",false]],"start_time (genai.types.interval attribute)":[[0,"genai.types.Interval.start_time",false]],"start_time (genai.types.intervaldict attribute)":[[0,"genai.types.IntervalDict.start_time",false]],"start_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.start_time",false]],"start_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.start_time",false]],"startsensitivity (class in genai.types)":[[0,"genai.types.StartSensitivity",false]],"state (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.state",false]],"state (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.state",false]],"state (genai.types.document attribute)":[[0,"genai.types.Document.state",false]],"state (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.state",false]],"state (genai.types.file attribute)":[[0,"genai.types.File.state",false]],"state (genai.types.filedict attribute)":[[0,"genai.types.FileDict.state",false]],"state (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.state",false]],"state (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.state",false]],"state_active (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_ACTIVE",false]],"state_failed (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_FAILED",false]],"state_pending (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_PENDING",false]],"state_unspecified (genai.types.documentstate attribute)":[[0,"genai.types.DocumentState.STATE_UNSPECIFIED",false]],"state_unspecified (genai.types.filestate attribute)":[[0,"genai.types.FileState.STATE_UNSPECIFIED",false]],"statistics (genai.types.contentembedding attribute)":[[0,"genai.types.ContentEmbedding.statistics",false]],"statistics (genai.types.contentembeddingdict attribute)":[[0,"genai.types.ContentEmbeddingDict.statistics",false]],"status_code (genai.types.replayresponse attribute)":[[0,"genai.types.ReplayResponse.status_code",false]],"status_code (genai.types.replayresponsedict attribute)":[[0,"genai.types.ReplayResponseDict.status_code",false]],"step (genai.types.checkpoint attribute)":[[0,"genai.types.Checkpoint.step",false]],"step (genai.types.checkpointdict attribute)":[[0,"genai.types.CheckpointDict.step",false]],"step (genai.types.tunedmodelcheckpoint attribute)":[[0,"genai.types.TunedModelCheckpoint.step",false]],"step (genai.types.tunedmodelcheckpointdict attribute)":[[0,"genai.types.TunedModelCheckpointDict.step",false]],"stop (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.STOP",false]],"stop (genai.types.livemusicplaybackcontrol attribute)":[[0,"genai.types.LiveMusicPlaybackControl.STOP",false]],"stop_sequences (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.stop_sequences",false]],"stop_sequences (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.stop_sequences",false]],"stop_sequences (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.stop_sequences",false]],"stop_sequences (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.stop_sequences",false]],"store_context (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.store_context",false]],"store_context (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.store_context",false]],"stream_function_call_arguments (genai.types.functioncallingconfig attribute)":[[0,"genai.types.FunctionCallingConfig.stream_function_call_arguments",false]],"stream_function_call_arguments (genai.types.functioncallingconfigdict attribute)":[[0,"genai.types.FunctionCallingConfigDict.stream_function_call_arguments",false]],"streamable_http_transport (genai.types.mcpserver attribute)":[[0,"genai.types.McpServer.streamable_http_transport",false]],"streamable_http_transport (genai.types.mcpserverdict attribute)":[[0,"genai.types.McpServerDict.streamable_http_transport",false]],"streamablehttptransportdict (class in genai.types)":[[0,"genai.types.StreamableHttpTransportDict",false]],"string (genai.types.jsonschematype attribute)":[[0,"genai.types.JSONSchemaType.STRING",false]],"string (genai.types.type attribute)":[[0,"genai.types.Type.STRING",false]],"string_list_value (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.string_list_value",false]],"string_list_value (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.string_list_value",false]],"string_list_value (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.string_list_value",false]],"string_list_value (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.string_list_value",false]],"string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.string_match_expression",false]],"string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.string_match_expression",false]],"string_match_reward_scorer (genai.types.singlereinforcementtuningrewardconfig attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfig.string_match_reward_scorer",false]],"string_match_reward_scorer (genai.types.singlereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.SingleReinforcementTuningRewardConfigDict.string_match_reward_scorer",false]],"string_value (genai.types.custommetadata attribute)":[[0,"genai.types.CustomMetadata.string_value",false]],"string_value (genai.types.custommetadatadict attribute)":[[0,"genai.types.CustomMetadataDict.string_value",false]],"string_value (genai.types.groundingchunkcustommetadata attribute)":[[0,"genai.types.GroundingChunkCustomMetadata.string_value",false]],"string_value (genai.types.groundingchunkcustommetadatadict attribute)":[[0,"genai.types.GroundingChunkCustomMetadataDict.string_value",false]],"string_value (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.string_value",false]],"string_value (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.string_value",false]],"stringlistdict (class in genai.types)":[[0,"genai.types.StringListDict",false]],"student_model (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.student_model",false]],"student_model (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.student_model",false]],"style (genai.types.videogenerationreferencetype attribute)":[[0,"genai.types.VideoGenerationReferenceType.STYLE",false]],"style_description (genai.types.stylereferenceconfig attribute)":[[0,"genai.types.StyleReferenceConfig.style_description",false]],"style_description (genai.types.stylereferenceconfigdict attribute)":[[0,"genai.types.StyleReferenceConfigDict.style_description",false]],"style_image_config (genai.types.stylereferenceimage attribute)":[[0,"genai.types.StyleReferenceImage.style_image_config",false]],"stylereferenceconfigdict (class in genai.types)":[[0,"genai.types.StyleReferenceConfigDict",false]],"stylereferenceimagedict (class in genai.types)":[[0,"genai.types.StyleReferenceImageDict",false]],"subject_description (genai.types.subjectreferenceconfig attribute)":[[0,"genai.types.SubjectReferenceConfig.subject_description",false]],"subject_description (genai.types.subjectreferenceconfigdict attribute)":[[0,"genai.types.SubjectReferenceConfigDict.subject_description",false]],"subject_image_config (genai.types.subjectreferenceimage attribute)":[[0,"genai.types.SubjectReferenceImage.subject_image_config",false]],"subject_type (genai.types.subjectreferenceconfig attribute)":[[0,"genai.types.SubjectReferenceConfig.subject_type",false]],"subject_type (genai.types.subjectreferenceconfigdict attribute)":[[0,"genai.types.SubjectReferenceConfigDict.subject_type",false]],"subject_type_animal (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_ANIMAL",false]],"subject_type_default (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_DEFAULT",false]],"subject_type_person (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_PERSON",false]],"subject_type_product (genai.types.subjectreferencetype attribute)":[[0,"genai.types.SubjectReferenceType.SUBJECT_TYPE_PRODUCT",false]],"subjectreferenceconfigdict (class in genai.types)":[[0,"genai.types.SubjectReferenceConfigDict",false]],"subjectreferenceimagedict (class in genai.types)":[[0,"genai.types.SubjectReferenceImageDict",false]],"subjectreferencetype (class in genai.types)":[[0,"genai.types.SubjectReferenceType",false]],"successful_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.successful_count",false]],"successful_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.successful_count",false]],"successful_forecast_point_count (genai.types.completionstats attribute)":[[0,"genai.types.CompletionStats.successful_forecast_point_count",false]],"successful_forecast_point_count (genai.types.completionstatsdict attribute)":[[0,"genai.types.CompletionStatsDict.successful_forecast_point_count",false]],"sum (genai.types.datasetdistribution attribute)":[[0,"genai.types.DatasetDistribution.sum",false]],"sum (genai.types.datasetdistributiondict attribute)":[[0,"genai.types.DatasetDistributionDict.sum",false]],"sum (genai.types.supervisedtuningdatasetdistribution attribute)":[[0,"genai.types.SupervisedTuningDatasetDistribution.sum",false]],"sum (genai.types.supervisedtuningdatasetdistributiondict attribute)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict.sum",false]],"supervised_fine_tuning (genai.types.tuningmethod attribute)":[[0,"genai.types.TuningMethod.SUPERVISED_FINE_TUNING",false]],"supervised_tuning_data_stats (genai.types.tuningdatastats attribute)":[[0,"genai.types.TuningDataStats.supervised_tuning_data_stats",false]],"supervised_tuning_data_stats (genai.types.tuningdatastatsdict attribute)":[[0,"genai.types.TuningDataStatsDict.supervised_tuning_data_stats",false]],"supervised_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.supervised_tuning_spec",false]],"supervised_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.supervised_tuning_spec",false]],"supervisedhyperparametersdict (class in genai.types)":[[0,"genai.types.SupervisedHyperParametersDict",false]],"supervisedtuningdatasetdistributiondatasetbucketdict (class in genai.types)":[[0,"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict",false]],"supervisedtuningdatasetdistributiondict (class in genai.types)":[[0,"genai.types.SupervisedTuningDatasetDistributionDict",false]],"supervisedtuningdatastatsdict (class in genai.types)":[[0,"genai.types.SupervisedTuningDataStatsDict",false]],"supervisedtuningspecdict (class in genai.types)":[[0,"genai.types.SupervisedTuningSpecDict",false]],"supported_actions (genai.types.model attribute)":[[0,"genai.types.Model.supported_actions",false]],"supported_actions (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.supported_actions",false]],"system_instruction (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.system_instruction",false]],"system_instruction (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.system_instruction",false]],"system_instruction (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.system_instruction",false]],"system_instruction (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.system_instruction",false]],"system_instruction (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.system_instruction",false]],"system_instruction (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.system_instruction",false]],"system_instruction (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.system_instruction",false]],"system_instruction (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.system_instruction",false]],"system_instruction (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.system_instruction",false]],"system_instruction (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.system_instruction",false]],"system_instruction (genai.types.llmbasedmetricspec attribute)":[[0,"genai.types.LLMBasedMetricSpec.system_instruction",false]],"system_instruction (genai.types.llmbasedmetricspecdict attribute)":[[0,"genai.types.LLMBasedMetricSpecDict.system_instruction",false]],"system_instruction (genai.types.pairwisemetricspec attribute)":[[0,"genai.types.PairwiseMetricSpec.system_instruction",false]],"system_instruction (genai.types.pairwisemetricspecdict attribute)":[[0,"genai.types.PairwiseMetricSpecDict.system_instruction",false]],"system_instruction (genai.types.pointwisemetricspec attribute)":[[0,"genai.types.PointwiseMetricSpec.system_instruction",false]],"system_instruction (genai.types.pointwisemetricspecdict attribute)":[[0,"genai.types.PointwiseMetricSpecDict.system_instruction",false]],"system_instruction (genai.types.reinforcementtuningexample attribute)":[[0,"genai.types.ReinforcementTuningExample.system_instruction",false]],"system_instruction (genai.types.reinforcementtuningexampledict attribute)":[[0,"genai.types.ReinforcementTuningExampleDict.system_instruction",false]],"target_language_code (genai.types.translationconfig attribute)":[[0,"genai.types.TranslationConfig.target_language_code",false]],"target_language_code (genai.types.translationconfigdict attribute)":[[0,"genai.types.TranslationConfigDict.target_language_code",false]],"target_tokens (genai.types.slidingwindow attribute)":[[0,"genai.types.SlidingWindow.target_tokens",false]],"target_tokens (genai.types.slidingwindowdict attribute)":[[0,"genai.types.SlidingWindowDict.target_tokens",false]],"task_type (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.task_type",false]],"task_type (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.task_type",false]],"temperature (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.temperature",false]],"temperature (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.temperature",false]],"temperature (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.temperature",false]],"temperature (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.temperature",false]],"temperature (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.temperature",false]],"temperature (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.temperature",false]],"temperature (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.temperature",false]],"temperature (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.temperature",false]],"temperature (genai.types.model attribute)":[[0,"genai.types.Model.temperature",false]],"temperature (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.temperature",false]],"terminate_on_close (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.terminate_on_close",false]],"terminate_on_close (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.terminate_on_close",false]],"test_method (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.test_method",false]],"test_method (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.test_method",false]],"test_table (genai.types.testtablefile attribute)":[[0,"genai.types.TestTableFile.test_table",false]],"test_table (genai.types.testtablefiledict attribute)":[[0,"genai.types.TestTableFileDict.test_table",false]],"testtablefiledict (class in genai.types)":[[0,"genai.types.TestTableFileDict",false]],"testtableitemdict (class in genai.types)":[[0,"genai.types.TestTableItemDict",false]],"text (genai.types.generatecontentresponse property)":[[0,"genai.types.GenerateContentResponse.text",false]],"text (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.text",false]],"text (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.text",false]],"text (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.text",false]],"text (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.text",false]],"text (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.text",false]],"text (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.text",false]],"text (genai.types.livemusicfilteredprompt attribute)":[[0,"genai.types.LiveMusicFilteredPrompt.text",false]],"text (genai.types.livemusicfilteredpromptdict attribute)":[[0,"genai.types.LiveMusicFilteredPromptDict.text",false]],"text (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.text",false]],"text (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.text",false]],"text (genai.types.liveservermessage property)":[[0,"genai.types.LiveServerMessage.text",false]],"text (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.TEXT",false]],"text (genai.types.modality attribute)":[[0,"genai.types.Modality.TEXT",false]],"text (genai.types.part attribute)":[[0,"genai.types.Part.text",false]],"text (genai.types.partdict attribute)":[[0,"genai.types.PartDict.text",false]],"text (genai.types.ragchunk attribute)":[[0,"genai.types.RagChunk.text",false]],"text (genai.types.ragchunkdict attribute)":[[0,"genai.types.RagChunkDict.text",false]],"text (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.text",false]],"text (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.text",false]],"text (genai.types.segment attribute)":[[0,"genai.types.Segment.text",false]],"text (genai.types.segmentdict attribute)":[[0,"genai.types.SegmentDict.text",false]],"text (genai.types.transcription attribute)":[[0,"genai.types.Transcription.text",false]],"text (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.text",false]],"text (genai.types.weightedprompt attribute)":[[0,"genai.types.WeightedPrompt.text",false]],"text (genai.types.weightedpromptdict attribute)":[[0,"genai.types.WeightedPromptDict.text",false]],"text_count (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.text_count",false]],"text_count (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.text_count",false]],"text_input (genai.types.tuningexample attribute)":[[0,"genai.types.TuningExample.text_input",false]],"text_input (genai.types.tuningexampledict attribute)":[[0,"genai.types.TuningExampleDict.text_input",false]],"textresponseformatdict (class in genai.types)":[[0,"genai.types.TextResponseFormatDict",false]],"thinking (genai.types.model attribute)":[[0,"genai.types.Model.thinking",false]],"thinking (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.thinking",false]],"thinking_budget (genai.types.generationconfigthinkingconfigdict attribute)":[[0,"genai.types.GenerationConfigThinkingConfigDict.thinking_budget",false]],"thinking_budget (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.thinking_budget",false]],"thinking_budget (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.thinking_budget",false]],"thinking_budget (genai.types.thinkingconfig attribute)":[[0,"genai.types.ThinkingConfig.thinking_budget",false]],"thinking_budget (genai.types.thinkingconfigdict attribute)":[[0,"genai.types.ThinkingConfigDict.thinking_budget",false]],"thinking_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.thinking_config",false]],"thinking_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.thinking_config",false]],"thinking_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.thinking_config",false]],"thinking_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.thinking_config",false]],"thinking_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.thinking_config",false]],"thinking_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.thinking_config",false]],"thinking_level (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.thinking_level",false]],"thinking_level (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.thinking_level",false]],"thinking_level (genai.types.generationconfigthinkingconfigdict attribute)":[[0,"genai.types.GenerationConfigThinkingConfigDict.thinking_level",false]],"thinking_level (genai.types.reinforcementtuninghyperparameters attribute)":[[0,"genai.types.ReinforcementTuningHyperParameters.thinking_level",false]],"thinking_level (genai.types.reinforcementtuninghyperparametersdict attribute)":[[0,"genai.types.ReinforcementTuningHyperParametersDict.thinking_level",false]],"thinking_level (genai.types.thinkingconfig attribute)":[[0,"genai.types.ThinkingConfig.thinking_level",false]],"thinking_level (genai.types.thinkingconfigdict attribute)":[[0,"genai.types.ThinkingConfigDict.thinking_level",false]],"thinking_level_unspecified (genai.types.thinkinglevel attribute)":[[0,"genai.types.ThinkingLevel.THINKING_LEVEL_UNSPECIFIED",false]],"thinkingconfigdict (class in genai.types)":[[0,"genai.types.ThinkingConfigDict",false]],"thinkinglevel (class in genai.types)":[[0,"genai.types.ThinkingLevel",false]],"thought (genai.types.part attribute)":[[0,"genai.types.Part.thought",false]],"thought (genai.types.partdict attribute)":[[0,"genai.types.PartDict.thought",false]],"thought_signature (genai.types.part attribute)":[[0,"genai.types.Part.thought_signature",false]],"thought_signature (genai.types.partdict attribute)":[[0,"genai.types.PartDict.thought_signature",false]],"thoughts_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.thoughts_token_count",false]],"thoughts_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.thoughts_token_count",false]],"thoughts_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.thoughts_token_count",false]],"thoughts_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.thoughts_token_count",false]],"threshold (genai.types.safetysetting attribute)":[[0,"genai.types.SafetySetting.threshold",false]],"threshold (genai.types.safetysettingdict attribute)":[[0,"genai.types.SafetySettingDict.threshold",false]],"tie (genai.types.pairwisechoice attribute)":[[0,"genai.types.PairwiseChoice.TIE",false]],"time_left (genai.types.liveservergoaway attribute)":[[0,"genai.types.LiveServerGoAway.time_left",false]],"time_left (genai.types.liveservergoawaydict attribute)":[[0,"genai.types.LiveServerGoAwayDict.time_left",false]],"time_range_filter (genai.types.googlesearch attribute)":[[0,"genai.types.GoogleSearch.time_range_filter",false]],"time_range_filter (genai.types.googlesearchdict attribute)":[[0,"genai.types.GoogleSearchDict.time_range_filter",false]],"timeout (genai.types.httpoptions attribute)":[[0,"genai.types.HttpOptions.timeout",false]],"timeout (genai.types.httpoptionsdict attribute)":[[0,"genai.types.HttpOptionsDict.timeout",false]],"timeout (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.timeout",false]],"timeout (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.timeout",false]],"title (genai.types.citation attribute)":[[0,"genai.types.Citation.title",false]],"title (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.title",false]],"title (genai.types.embedcontentconfig attribute)":[[0,"genai.types.EmbedContentConfig.title",false]],"title (genai.types.embedcontentconfigdict attribute)":[[0,"genai.types.EmbedContentConfigDict.title",false]],"title (genai.types.groundingchunkimage attribute)":[[0,"genai.types.GroundingChunkImage.title",false]],"title (genai.types.groundingchunkimagedict attribute)":[[0,"genai.types.GroundingChunkImageDict.title",false]],"title (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.title",false]],"title (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.title",false]],"title (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippet attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet.title",false]],"title (genai.types.groundingchunkmapsplaceanswersourcesreviewsnippetdict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict.title",false]],"title (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.title",false]],"title (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.title",false]],"title (genai.types.groundingchunkweb attribute)":[[0,"genai.types.GroundingChunkWeb.title",false]],"title (genai.types.groundingchunkwebdict attribute)":[[0,"genai.types.GroundingChunkWebDict.title",false]],"title (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.title",false]],"title (genai.types.schema attribute)":[[0,"genai.types.Schema.title",false]],"title (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.title",false]],"to_yaml_file() (genai.types.metric method)":[[0,"genai.types.Metric.to_yaml_file",false]],"token (genai.types.logprobsresultcandidate attribute)":[[0,"genai.types.LogprobsResultCandidate.token",false]],"token (genai.types.logprobsresultcandidatedict attribute)":[[0,"genai.types.LogprobsResultCandidateDict.token",false]],"token_count (genai.types.candidate attribute)":[[0,"genai.types.Candidate.token_count",false]],"token_count (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.token_count",false]],"token_count (genai.types.contentembeddingstatistics attribute)":[[0,"genai.types.ContentEmbeddingStatistics.token_count",false]],"token_count (genai.types.contentembeddingstatisticsdict attribute)":[[0,"genai.types.ContentEmbeddingStatisticsDict.token_count",false]],"token_count (genai.types.modalitytokencount attribute)":[[0,"genai.types.ModalityTokenCount.token_count",false]],"token_count (genai.types.modalitytokencountdict attribute)":[[0,"genai.types.ModalityTokenCountDict.token_count",false]],"token_count (genai.types.singleembedcontentresponse attribute)":[[0,"genai.types.SingleEmbedContentResponse.token_count",false]],"token_count (genai.types.singleembedcontentresponsedict attribute)":[[0,"genai.types.SingleEmbedContentResponseDict.token_count",false]],"token_id (genai.types.logprobsresultcandidate attribute)":[[0,"genai.types.LogprobsResultCandidate.token_id",false]],"token_id (genai.types.logprobsresultcandidatedict attribute)":[[0,"genai.types.LogprobsResultCandidateDict.token_id",false]],"token_ids (genai.types.tokensinfo attribute)":[[0,"genai.types.TokensInfo.token_ids",false]],"token_ids (genai.types.tokensinfodict attribute)":[[0,"genai.types.TokensInfoDict.token_ids",false]],"tokens (class in genai.tokens)":[[0,"genai.tokens.Tokens",false]],"tokens (genai.types.tokensinfo attribute)":[[0,"genai.types.TokensInfo.tokens",false]],"tokens (genai.types.tokensinfodict attribute)":[[0,"genai.types.TokensInfoDict.tokens",false]],"tokens_details (genai.types.contentembeddingstatistics attribute)":[[0,"genai.types.ContentEmbeddingStatistics.tokens_details",false]],"tokens_details (genai.types.contentembeddingstatisticsdict attribute)":[[0,"genai.types.ContentEmbeddingStatisticsDict.tokens_details",false]],"tokens_info (genai.types.computetokensresponse attribute)":[[0,"genai.types.ComputeTokensResponse.tokens_info",false]],"tokens_info (genai.types.computetokensresponsedict attribute)":[[0,"genai.types.ComputeTokensResponseDict.tokens_info",false]],"tokens_info (genai.types.computetokensresult attribute)":[[0,"genai.types.ComputeTokensResult.tokens_info",false]],"tokens_info (genai.types.computetokensresultdict attribute)":[[0,"genai.types.ComputeTokensResultDict.tokens_info",false]],"tokensinfodict (class in genai.types)":[[0,"genai.types.TokensInfoDict",false]],"too_many_tool_calls (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.TOO_MANY_TOOL_CALLS",false]],"tool_call (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.tool_call",false]],"tool_call (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.tool_call",false]],"tool_call (genai.types.part attribute)":[[0,"genai.types.Part.tool_call",false]],"tool_call (genai.types.partdict attribute)":[[0,"genai.types.PartDict.tool_call",false]],"tool_call_cancellation (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.tool_call_cancellation",false]],"tool_call_cancellation (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.tool_call_cancellation",false]],"tool_config (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.tool_config",false]],"tool_config (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.tool_config",false]],"tool_config (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.tool_config",false]],"tool_config (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.tool_config",false]],"tool_response (genai.types.liveclientmessage attribute)":[[0,"genai.types.LiveClientMessage.tool_response",false]],"tool_response (genai.types.liveclientmessagedict attribute)":[[0,"genai.types.LiveClientMessageDict.tool_response",false]],"tool_response (genai.types.part attribute)":[[0,"genai.types.Part.tool_response",false]],"tool_response (genai.types.partdict attribute)":[[0,"genai.types.PartDict.tool_response",false]],"tool_type (genai.types.toolcall attribute)":[[0,"genai.types.ToolCall.tool_type",false]],"tool_type (genai.types.toolcalldict attribute)":[[0,"genai.types.ToolCallDict.tool_type",false]],"tool_type (genai.types.toolresponse attribute)":[[0,"genai.types.ToolResponse.tool_type",false]],"tool_type (genai.types.toolresponsedict attribute)":[[0,"genai.types.ToolResponseDict.tool_type",false]],"tool_type_unspecified (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.TOOL_TYPE_UNSPECIFIED",false]],"tool_use_prompt_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.tool_use_prompt_token_count",false]],"tool_use_prompt_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.tool_use_prompt_token_count",false]],"tool_use_prompt_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.tool_use_prompt_token_count",false]],"tool_use_prompt_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.tool_use_prompt_token_count",false]],"tool_use_prompt_tokens_details (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.tool_use_prompt_tokens_details",false]],"tool_use_prompt_tokens_details (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.tool_use_prompt_tokens_details",false]],"tool_use_prompt_tokens_details (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.tool_use_prompt_tokens_details",false]],"tool_use_prompt_tokens_details (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.tool_use_prompt_tokens_details",false]],"toolcalldict (class in genai.types)":[[0,"genai.types.ToolCallDict",false]],"toolcodeexecutiondict (class in genai.types)":[[0,"genai.types.ToolCodeExecutionDict",false]],"toolconfigdict (class in genai.types)":[[0,"genai.types.ToolConfigDict",false]],"tooldict (class in genai.types)":[[0,"genai.types.ToolDict",false]],"toolexaaisearchdict (class in genai.types)":[[0,"genai.types.ToolExaAiSearchDict",false]],"toolparallelaisearchdict (class in genai.types)":[[0,"genai.types.ToolParallelAiSearchDict",false]],"toolresponsedict (class in genai.types)":[[0,"genai.types.ToolResponseDict",false]],"tools (genai.types.counttokensconfig attribute)":[[0,"genai.types.CountTokensConfig.tools",false]],"tools (genai.types.counttokensconfigdict attribute)":[[0,"genai.types.CountTokensConfigDict.tools",false]],"tools (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.tools",false]],"tools (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.tools",false]],"tools (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.tools",false]],"tools (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.tools",false]],"tools (genai.types.liveclientsetup attribute)":[[0,"genai.types.LiveClientSetup.tools",false]],"tools (genai.types.liveclientsetupdict attribute)":[[0,"genai.types.LiveClientSetupDict.tools",false]],"tools (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.tools",false]],"tools (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.tools",false]],"tooltype (class in genai.types)":[[0,"genai.types.ToolType",false]],"top_candidates (genai.types.logprobsresult attribute)":[[0,"genai.types.LogprobsResult.top_candidates",false]],"top_candidates (genai.types.logprobsresultdict attribute)":[[0,"genai.types.LogprobsResultDict.top_candidates",false]],"top_k (genai.types.filesearch attribute)":[[0,"genai.types.FileSearch.top_k",false]],"top_k (genai.types.filesearchdict attribute)":[[0,"genai.types.FileSearchDict.top_k",false]],"top_k (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.top_k",false]],"top_k (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.top_k",false]],"top_k (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.top_k",false]],"top_k (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.top_k",false]],"top_k (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.top_k",false]],"top_k (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.top_k",false]],"top_k (genai.types.livemusicgenerationconfig attribute)":[[0,"genai.types.LiveMusicGenerationConfig.top_k",false]],"top_k (genai.types.livemusicgenerationconfigdict attribute)":[[0,"genai.types.LiveMusicGenerationConfigDict.top_k",false]],"top_k (genai.types.model attribute)":[[0,"genai.types.Model.top_k",false]],"top_k (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.top_k",false]],"top_k (genai.types.ragretrievalconfig attribute)":[[0,"genai.types.RagRetrievalConfig.top_k",false]],"top_k (genai.types.ragretrievalconfigdict attribute)":[[0,"genai.types.RagRetrievalConfigDict.top_k",false]],"top_p (genai.types.generatecontentconfig attribute)":[[0,"genai.types.GenerateContentConfig.top_p",false]],"top_p (genai.types.generatecontentconfigdict attribute)":[[0,"genai.types.GenerateContentConfigDict.top_p",false]],"top_p (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.top_p",false]],"top_p (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.top_p",false]],"top_p (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.top_p",false]],"top_p (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.top_p",false]],"top_p (genai.types.model attribute)":[[0,"genai.types.Model.top_p",false]],"top_p (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.top_p",false]],"total_billable_character_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.total_billable_character_count",false]],"total_billable_character_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.total_billable_character_count",false]],"total_billable_character_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_billable_character_count",false]],"total_billable_character_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_billable_character_count",false]],"total_billable_token_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.total_billable_token_count",false]],"total_billable_token_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.total_billable_token_count",false]],"total_billable_token_count (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.total_billable_token_count",false]],"total_billable_token_count (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.total_billable_token_count",false]],"total_billable_token_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_billable_token_count",false]],"total_billable_token_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_billable_token_count",false]],"total_token_count (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.total_token_count",false]],"total_token_count (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.total_token_count",false]],"total_token_count (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.total_token_count",false]],"total_token_count (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.total_token_count",false]],"total_token_count (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.total_token_count",false]],"total_token_count (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.total_token_count",false]],"total_tokens (genai.types.counttokensresponse attribute)":[[0,"genai.types.CountTokensResponse.total_tokens",false]],"total_tokens (genai.types.counttokensresponsedict attribute)":[[0,"genai.types.CountTokensResponseDict.total_tokens",false]],"total_tokens (genai.types.counttokensresult attribute)":[[0,"genai.types.CountTokensResult.total_tokens",false]],"total_tokens (genai.types.counttokensresultdict attribute)":[[0,"genai.types.CountTokensResultDict.total_tokens",false]],"total_truncated_example_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_truncated_example_count",false]],"total_truncated_example_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_truncated_example_count",false]],"total_tuning_character_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.total_tuning_character_count",false]],"total_tuning_character_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.total_tuning_character_count",false]],"total_tuning_character_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.total_tuning_character_count",false]],"total_tuning_character_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.total_tuning_character_count",false]],"traffic_type (genai.types.generatecontentresponseusagemetadata attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadata.traffic_type",false]],"traffic_type (genai.types.generatecontentresponseusagemetadatadict attribute)":[[0,"genai.types.GenerateContentResponseUsageMetadataDict.traffic_type",false]],"traffic_type (genai.types.usagemetadata attribute)":[[0,"genai.types.UsageMetadata.traffic_type",false]],"traffic_type (genai.types.usagemetadatadict attribute)":[[0,"genai.types.UsageMetadataDict.traffic_type",false]],"traffic_type_unspecified (genai.types.traffictype attribute)":[[0,"genai.types.TrafficType.TRAFFIC_TYPE_UNSPECIFIED",false]],"traffictype (class in genai.types)":[[0,"genai.types.TrafficType",false]],"training_dataset (genai.types.createtuningjobparameters attribute)":[[0,"genai.types.CreateTuningJobParameters.training_dataset",false]],"training_dataset (genai.types.createtuningjobparametersdict attribute)":[[0,"genai.types.CreateTuningJobParametersDict.training_dataset",false]],"training_dataset_stats (genai.types.distillationdatastats attribute)":[[0,"genai.types.DistillationDataStats.training_dataset_stats",false]],"training_dataset_stats (genai.types.distillationdatastatsdict attribute)":[[0,"genai.types.DistillationDataStatsDict.training_dataset_stats",false]],"training_dataset_uri (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.fullfinetuningspec attribute)":[[0,"genai.types.FullFineTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.fullfinetuningspecdict attribute)":[[0,"genai.types.FullFineTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.partnermodeltuningspec attribute)":[[0,"genai.types.PartnerModelTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.partnermodeltuningspecdict attribute)":[[0,"genai.types.PartnerModelTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.training_dataset_uri",false]],"training_dataset_uri (genai.types.veotuningspec attribute)":[[0,"genai.types.VeoTuningSpec.training_dataset_uri",false]],"training_dataset_uri (genai.types.veotuningspecdict attribute)":[[0,"genai.types.VeoTuningSpecDict.training_dataset_uri",false]],"transcriptiondict (class in genai.types)":[[0,"genai.types.TranscriptionDict",false]],"translation_config (genai.types.generationconfig attribute)":[[0,"genai.types.GenerationConfig.translation_config",false]],"translation_config (genai.types.generationconfigdict attribute)":[[0,"genai.types.GenerationConfigDict.translation_config",false]],"translation_config (genai.types.liveconnectconfig attribute)":[[0,"genai.types.LiveConnectConfig.translation_config",false]],"translation_config (genai.types.liveconnectconfigdict attribute)":[[0,"genai.types.LiveConnectConfigDict.translation_config",false]],"translationconfigdict (class in genai.types)":[[0,"genai.types.TranslationConfigDict",false]],"transparent (genai.types.sessionresumptionconfig attribute)":[[0,"genai.types.SessionResumptionConfig.transparent",false]],"transparent (genai.types.sessionresumptionconfigdict attribute)":[[0,"genai.types.SessionResumptionConfigDict.transparent",false]],"trigger_tokens (genai.types.contextwindowcompressionconfig attribute)":[[0,"genai.types.ContextWindowCompressionConfig.trigger_tokens",false]],"trigger_tokens (genai.types.contextwindowcompressionconfigdict attribute)":[[0,"genai.types.ContextWindowCompressionConfigDict.trigger_tokens",false]],"triggers (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.triggers",false]],"triggers (genai.client.client property)":[[0,"genai.client.Client.triggers",false]],"truncated (genai.types.contentembeddingstatistics attribute)":[[0,"genai.types.ContentEmbeddingStatistics.truncated",false]],"truncated (genai.types.contentembeddingstatisticsdict attribute)":[[0,"genai.types.ContentEmbeddingStatisticsDict.truncated",false]],"truncated_example_indices (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.truncated_example_indices",false]],"truncated_example_indices (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.truncated_example_indices",false]],"ttl (genai.types.createcachedcontentconfig attribute)":[[0,"genai.types.CreateCachedContentConfig.ttl",false]],"ttl (genai.types.createcachedcontentconfigdict attribute)":[[0,"genai.types.CreateCachedContentConfigDict.ttl",false]],"ttl (genai.types.updatecachedcontentconfig attribute)":[[0,"genai.types.UpdateCachedContentConfig.ttl",false]],"ttl (genai.types.updatecachedcontentconfigdict attribute)":[[0,"genai.types.UpdateCachedContentConfigDict.ttl",false]],"tune() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.tune",false]],"tune() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.tune",false]],"tuned_model (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuned_model",false]],"tuned_model (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuned_model",false]],"tuned_model_display_name (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.tuned_model_display_name",false]],"tuned_model_display_name (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.tuned_model_display_name",false]],"tuned_model_display_name (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuned_model_display_name",false]],"tuned_model_display_name (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuned_model_display_name",false]],"tuned_model_info (genai.types.model attribute)":[[0,"genai.types.Model.tuned_model_info",false]],"tuned_model_info (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.tuned_model_info",false]],"tuned_model_name (genai.types.pretunedmodel attribute)":[[0,"genai.types.PreTunedModel.tuned_model_name",false]],"tuned_model_name (genai.types.pretunedmodeldict attribute)":[[0,"genai.types.PreTunedModelDict.tuned_model_name",false]],"tuned_teacher_model_source (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.tuned_teacher_model_source",false]],"tuned_teacher_model_source (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.tuned_teacher_model_source",false]],"tunedmodelcheckpointdict (class in genai.types)":[[0,"genai.types.TunedModelCheckpointDict",false]],"tunedmodeldict (class in genai.types)":[[0,"genai.types.TunedModelDict",false]],"tunedmodelinfodict (class in genai.types)":[[0,"genai.types.TunedModelInfoDict",false]],"tuning_data_stats (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuning_data_stats",false]],"tuning_data_stats (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuning_data_stats",false]],"tuning_dataset_example_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.tuning_dataset_example_count",false]],"tuning_dataset_example_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.tuning_dataset_example_count",false]],"tuning_job_metadata (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuning_job_metadata",false]],"tuning_job_metadata (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuning_job_metadata",false]],"tuning_job_state (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.tuning_job_state",false]],"tuning_job_state (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.tuning_job_state",false]],"tuning_job_state_post_processing (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_POST_PROCESSING",false]],"tuning_job_state_processing_dataset (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_PROCESSING_DATASET",false]],"tuning_job_state_tuning (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_TUNING",false]],"tuning_job_state_unspecified (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_UNSPECIFIED",false]],"tuning_job_state_waiting_for_capacity (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_WAITING_FOR_CAPACITY",false]],"tuning_job_state_waiting_for_quota (genai.types.tuningjobstate attribute)":[[0,"genai.types.TuningJobState.TUNING_JOB_STATE_WAITING_FOR_QUOTA",false]],"tuning_jobs (genai.types.listtuningjobsresponse attribute)":[[0,"genai.types.ListTuningJobsResponse.tuning_jobs",false]],"tuning_jobs (genai.types.listtuningjobsresponsedict attribute)":[[0,"genai.types.ListTuningJobsResponseDict.tuning_jobs",false]],"tuning_mode (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.tuning_mode",false]],"tuning_mode (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.tuning_mode",false]],"tuning_mode (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.tuning_mode",false]],"tuning_mode (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.tuning_mode",false]],"tuning_mode (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.tuning_mode",false]],"tuning_mode (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.tuning_mode",false]],"tuning_mode_full (genai.types.tuningmode attribute)":[[0,"genai.types.TuningMode.TUNING_MODE_FULL",false]],"tuning_mode_peft_adapter (genai.types.tuningmode attribute)":[[0,"genai.types.TuningMode.TUNING_MODE_PEFT_ADAPTER",false]],"tuning_mode_unspecified (genai.types.tuningmode attribute)":[[0,"genai.types.TuningMode.TUNING_MODE_UNSPECIFIED",false]],"tuning_speed (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.tuning_speed",false]],"tuning_speed (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.tuning_speed",false]],"tuning_speed_unspecified (genai.types.tuningspeed attribute)":[[0,"genai.types.TuningSpeed.TUNING_SPEED_UNSPECIFIED",false]],"tuning_step_count (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.tuning_step_count",false]],"tuning_step_count (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.tuning_step_count",false]],"tuning_step_count (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.tuning_step_count",false]],"tuning_step_count (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.tuning_step_count",false]],"tuning_step_count (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.tuning_step_count",false]],"tuning_step_count (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.tuning_step_count",false]],"tuning_task (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.tuning_task",false]],"tuning_task (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.tuning_task",false]],"tuning_task_i2v (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_I2V",false]],"tuning_task_r2v (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_R2V",false]],"tuning_task_t2v (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_T2V",false]],"tuning_task_unspecified (genai.types.tuningtask attribute)":[[0,"genai.types.TuningTask.TUNING_TASK_UNSPECIFIED",false]],"tuningdatasetdict (class in genai.types)":[[0,"genai.types.TuningDatasetDict",false]],"tuningdatastatsdict (class in genai.types)":[[0,"genai.types.TuningDataStatsDict",false]],"tuningexampledict (class in genai.types)":[[0,"genai.types.TuningExampleDict",false]],"tuningjobdict (class in genai.types)":[[0,"genai.types.TuningJobDict",false]],"tuningjobmetadatadict (class in genai.types)":[[0,"genai.types.TuningJobMetadataDict",false]],"tuningjobstate (class in genai.types)":[[0,"genai.types.TuningJobState",false]],"tuningmethod (class in genai.types)":[[0,"genai.types.TuningMethod",false]],"tuningmode (class in genai.types)":[[0,"genai.types.TuningMode",false]],"tuningoperationdict (class in genai.types)":[[0,"genai.types.TuningOperationDict",false]],"tunings (class in genai.tunings)":[[0,"genai.tunings.Tunings",false]],"tunings (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.tunings",false]],"tunings (genai.client.client property)":[[0,"genai.client.Client.tunings",false]],"tuningspeed (class in genai.types)":[[0,"genai.types.TuningSpeed",false]],"tuningtask (class in genai.types)":[[0,"genai.types.TuningTask",false]],"tuningvalidationdatasetdict (class in genai.types)":[[0,"genai.types.TuningValidationDatasetDict",false]],"turn_complete (genai.types.liveclientcontent attribute)":[[0,"genai.types.LiveClientContent.turn_complete",false]],"turn_complete (genai.types.liveclientcontentdict attribute)":[[0,"genai.types.LiveClientContentDict.turn_complete",false]],"turn_complete (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.turn_complete",false]],"turn_complete (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.turn_complete",false]],"turn_complete_reason (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.turn_complete_reason",false]],"turn_complete_reason (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.turn_complete_reason",false]],"turn_complete_reason_unspecified (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.TURN_COMPLETE_REASON_UNSPECIFIED",false]],"turn_coverage (genai.types.realtimeinputconfig attribute)":[[0,"genai.types.RealtimeInputConfig.turn_coverage",false]],"turn_coverage (genai.types.realtimeinputconfigdict attribute)":[[0,"genai.types.RealtimeInputConfigDict.turn_coverage",false]],"turn_coverage_unspecified (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_COVERAGE_UNSPECIFIED",false]],"turn_includes_all_input (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_INCLUDES_ALL_INPUT",false]],"turn_includes_audio_activity_and_all_video (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO",false]],"turn_includes_only_activity (genai.types.turncoverage attribute)":[[0,"genai.types.TurnCoverage.TURN_INCLUDES_ONLY_ACTIVITY",false]],"turncompletereason (class in genai.types)":[[0,"genai.types.TurnCompleteReason",false]],"turncoverage (class in genai.types)":[[0,"genai.types.TurnCoverage",false]],"turns (genai.types.liveclientcontent attribute)":[[0,"genai.types.LiveClientContent.turns",false]],"turns (genai.types.liveclientcontentdict attribute)":[[0,"genai.types.LiveClientContentDict.turns",false]],"type (class in genai.types)":[[0,"genai.types.Type",false]],"type (genai.types.computationbasedmetricspec attribute)":[[0,"genai.types.ComputationBasedMetricSpec.type",false]],"type (genai.types.computationbasedmetricspecdict attribute)":[[0,"genai.types.ComputationBasedMetricSpecDict.type",false]],"type (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.type",false]],"type (genai.types.schema attribute)":[[0,"genai.types.Schema.type",false]],"type (genai.types.schemadict attribute)":[[0,"genai.types.SchemaDict.type",false]],"type_unspecified (genai.types.type attribute)":[[0,"genai.types.Type.TYPE_UNSPECIFIED",false]],"type_unspecified (genai.types.voiceactivitytype attribute)":[[0,"genai.types.VoiceActivityType.TYPE_UNSPECIFIED",false]],"unexpected_tool_call (genai.types.finishreason attribute)":[[0,"genai.types.FinishReason.UNEXPECTED_TOOL_CALL",false]],"unifiedmetricdict (class in genai.types)":[[0,"genai.types.UnifiedMetricDict",false]],"unique_items (genai.types.jsonschema attribute)":[[0,"genai.types.JSONSchema.unique_items",false]],"unsafe_prompt_for_image_generation (genai.types.turncompletereason attribute)":[[0,"genai.types.TurnCompleteReason.UNSAFE_PROMPT_FOR_IMAGE_GENERATION",false]],"unspecified (genai.types.behavior attribute)":[[0,"genai.types.Behavior.UNSPECIFIED",false]],"unspecified (genai.types.servicetier attribute)":[[0,"genai.types.ServiceTier.UNSPECIFIED",false]],"unstable_experimental (genai.types.modelstage attribute)":[[0,"genai.types.ModelStage.UNSTABLE_EXPERIMENTAL",false]],"update() (genai._gaos.google_genai.asyncgemininextgentriggers method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.update",false]],"update() (genai._gaos.google_genai.asyncgemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.update",false]],"update() (genai._gaos.google_genai.gemininextgentriggers method)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.update",false]],"update() (genai._gaos.google_genai.gemininextgenwebhooks method)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.update",false]],"update() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.update",false]],"update() (genai.models.models method)":[[0,"genai.models.Models.update",false]],"update_time (genai.types.batchjob attribute)":[[0,"genai.types.BatchJob.update_time",false]],"update_time (genai.types.batchjobdict attribute)":[[0,"genai.types.BatchJobDict.update_time",false]],"update_time (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.update_time",false]],"update_time (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.update_time",false]],"update_time (genai.types.document attribute)":[[0,"genai.types.Document.update_time",false]],"update_time (genai.types.documentdict attribute)":[[0,"genai.types.DocumentDict.update_time",false]],"update_time (genai.types.file attribute)":[[0,"genai.types.File.update_time",false]],"update_time (genai.types.filedict attribute)":[[0,"genai.types.FileDict.update_time",false]],"update_time (genai.types.filesearchstore attribute)":[[0,"genai.types.FileSearchStore.update_time",false]],"update_time (genai.types.filesearchstoredict attribute)":[[0,"genai.types.FileSearchStoreDict.update_time",false]],"update_time (genai.types.tunedmodelinfo attribute)":[[0,"genai.types.TunedModelInfo.update_time",false]],"update_time (genai.types.tunedmodelinfodict attribute)":[[0,"genai.types.TunedModelInfoDict.update_time",false]],"update_time (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.update_time",false]],"update_time (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.update_time",false]],"updatecachedcontentconfigdict (class in genai.types)":[[0,"genai.types.UpdateCachedContentConfigDict",false]],"updatemodelconfigdict (class in genai.types)":[[0,"genai.types.UpdateModelConfigDict",false]],"uploaded (genai.types.filesource attribute)":[[0,"genai.types.FileSource.UPLOADED",false]],"uploadfileconfigdict (class in genai.types)":[[0,"genai.types.UploadFileConfigDict",false]],"uploadtofilesearchstoreconfigdict (class in genai.types)":[[0,"genai.types.UploadToFileSearchStoreConfigDict",false]],"uploadtofilesearchstoreresponsedict (class in genai.types)":[[0,"genai.types.UploadToFileSearchStoreResponseDict",false]],"uploadtofilesearchstoreresumableresponsedict (class in genai.types)":[[0,"genai.types.UploadToFileSearchStoreResumableResponseDict",false]],"upscale_factor (genai.types.upscaleimageparameters attribute)":[[0,"genai.types.UpscaleImageParameters.upscale_factor",false]],"upscale_factor (genai.types.upscaleimageparametersdict attribute)":[[0,"genai.types.UpscaleImageParametersDict.upscale_factor",false]],"upscale_image() (genai.models.asyncmodels method)":[[0,"genai.models.AsyncModels.upscale_image",false]],"upscale_image() (genai.models.models method)":[[0,"genai.models.Models.upscale_image",false]],"upscaleimageconfigdict (class in genai.types)":[[0,"genai.types.UpscaleImageConfigDict",false]],"upscaleimageparametersdict (class in genai.types)":[[0,"genai.types.UpscaleImageParametersDict",false]],"upscaleimageresponsedict (class in genai.types)":[[0,"genai.types.UpscaleImageResponseDict",false]],"uri (genai.types.citation attribute)":[[0,"genai.types.Citation.uri",false]],"uri (genai.types.citationdict attribute)":[[0,"genai.types.CitationDict.uri",false]],"uri (genai.types.delivery attribute)":[[0,"genai.types.Delivery.URI",false]],"uri (genai.types.file attribute)":[[0,"genai.types.File.uri",false]],"uri (genai.types.filedict attribute)":[[0,"genai.types.FileDict.uri",false]],"uri (genai.types.groundingchunkmaps attribute)":[[0,"genai.types.GroundingChunkMaps.uri",false]],"uri (genai.types.groundingchunkmapsdict attribute)":[[0,"genai.types.GroundingChunkMapsDict.uri",false]],"uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattribution attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution.uri",false]],"uri (genai.types.groundingchunkmapsplaceanswersourcesauthorattributiondict attribute)":[[0,"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict.uri",false]],"uri (genai.types.groundingchunkretrievedcontext attribute)":[[0,"genai.types.GroundingChunkRetrievedContext.uri",false]],"uri (genai.types.groundingchunkretrievedcontextdict attribute)":[[0,"genai.types.GroundingChunkRetrievedContextDict.uri",false]],"uri (genai.types.groundingchunkweb attribute)":[[0,"genai.types.GroundingChunkWeb.uri",false]],"uri (genai.types.groundingchunkwebdict attribute)":[[0,"genai.types.GroundingChunkWebDict.uri",false]],"uri (genai.types.video attribute)":[[0,"genai.types.Video.uri",false]],"uri (genai.types.videodict attribute)":[[0,"genai.types.VideoDict.uri",false]],"uris (genai.types.gcssource attribute)":[[0,"genai.types.GcsSource.uris",false]],"uris (genai.types.gcssourcedict attribute)":[[0,"genai.types.GcsSourceDict.uris",false]],"uris (genai.types.webhookconfig attribute)":[[0,"genai.types.WebhookConfig.uris",false]],"uris (genai.types.webhookconfigdict attribute)":[[0,"genai.types.WebhookConfigDict.uris",false]],"url (genai.types.replayrequest attribute)":[[0,"genai.types.ReplayRequest.url",false]],"url (genai.types.replayrequestdict attribute)":[[0,"genai.types.ReplayRequestDict.url",false]],"url (genai.types.streamablehttptransport attribute)":[[0,"genai.types.StreamableHttpTransport.url",false]],"url (genai.types.streamablehttptransportdict attribute)":[[0,"genai.types.StreamableHttpTransportDict.url",false]],"url_context (genai.types.tool attribute)":[[0,"genai.types.Tool.url_context",false]],"url_context (genai.types.tooldict attribute)":[[0,"genai.types.ToolDict.url_context",false]],"url_context (genai.types.tooltype attribute)":[[0,"genai.types.ToolType.URL_CONTEXT",false]],"url_context_metadata (genai.types.candidate attribute)":[[0,"genai.types.Candidate.url_context_metadata",false]],"url_context_metadata (genai.types.candidatedict attribute)":[[0,"genai.types.CandidateDict.url_context_metadata",false]],"url_context_metadata (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.url_context_metadata",false]],"url_context_metadata (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.url_context_metadata",false]],"url_metadata (genai.types.urlcontextmetadata attribute)":[[0,"genai.types.UrlContextMetadata.url_metadata",false]],"url_metadata (genai.types.urlcontextmetadatadict attribute)":[[0,"genai.types.UrlContextMetadataDict.url_metadata",false]],"url_retrieval_status (genai.types.urlmetadata attribute)":[[0,"genai.types.UrlMetadata.url_retrieval_status",false]],"url_retrieval_status (genai.types.urlmetadatadict attribute)":[[0,"genai.types.UrlMetadataDict.url_retrieval_status",false]],"url_retrieval_status_error (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_ERROR",false]],"url_retrieval_status_paywall (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_PAYWALL",false]],"url_retrieval_status_success (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_SUCCESS",false]],"url_retrieval_status_unsafe (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_UNSAFE",false]],"url_retrieval_status_unspecified (genai.types.urlretrievalstatus attribute)":[[0,"genai.types.UrlRetrievalStatus.URL_RETRIEVAL_STATUS_UNSPECIFIED",false]],"urlcontextdict (class in genai.types)":[[0,"genai.types.UrlContextDict",false]],"urlcontextmetadatadict (class in genai.types)":[[0,"genai.types.UrlContextMetadataDict",false]],"urlmetadatadict (class in genai.types)":[[0,"genai.types.UrlMetadataDict",false]],"urlretrievalstatus (class in genai.types)":[[0,"genai.types.UrlRetrievalStatus",false]],"usage_metadata (genai.types.cachedcontent attribute)":[[0,"genai.types.CachedContent.usage_metadata",false]],"usage_metadata (genai.types.cachedcontentdict attribute)":[[0,"genai.types.CachedContentDict.usage_metadata",false]],"usage_metadata (genai.types.generatecontentresponse attribute)":[[0,"genai.types.GenerateContentResponse.usage_metadata",false]],"usage_metadata (genai.types.generatecontentresponsedict attribute)":[[0,"genai.types.GenerateContentResponseDict.usage_metadata",false]],"usage_metadata (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.usage_metadata",false]],"usage_metadata (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.usage_metadata",false]],"usagemetadatadict (class in genai.types)":[[0,"genai.types.UsageMetadataDict",false]],"use_effective_order (genai.types.bleuspec attribute)":[[0,"genai.types.BleuSpec.use_effective_order",false]],"use_effective_order (genai.types.bleuspecdict attribute)":[[0,"genai.types.BleuSpecDict.use_effective_order",false]],"use_stemmer (genai.types.rougespec attribute)":[[0,"genai.types.RougeSpec.use_stemmer",false]],"use_stemmer (genai.types.rougespecdict attribute)":[[0,"genai.types.RougeSpecDict.use_stemmer",false]],"user_consent_management (genai.types.safetypolicy attribute)":[[0,"genai.types.SafetyPolicy.USER_CONSENT_MANAGEMENT",false]],"user_dataset_examples (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_dataset_examples",false]],"user_dataset_examples (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_dataset_examples",false]],"user_dataset_examples (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.user_dataset_examples",false]],"user_dataset_examples (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.user_dataset_examples",false]],"user_dataset_examples (genai.types.reinforcementtuninguserdatasetexamples attribute)":[[0,"genai.types.ReinforcementTuningUserDatasetExamples.user_dataset_examples",false]],"user_dataset_examples (genai.types.reinforcementtuninguserdatasetexamplesdict attribute)":[[0,"genai.types.ReinforcementTuningUserDatasetExamplesDict.user_dataset_examples",false]],"user_dataset_examples (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_dataset_examples",false]],"user_dataset_examples (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_dataset_examples",false]],"user_input_token_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_input_token_distribution",false]],"user_input_token_distribution (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_input_token_distribution",false]],"user_message_per_example_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_message_per_example_distribution",false]],"user_message_per_example_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_message_per_example_distribution",false]],"user_message_per_example_distribution (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_message_per_example_distribution",false]],"user_message_per_example_distribution (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_message_per_example_distribution",false]],"user_metadata (genai.types.webhookconfig attribute)":[[0,"genai.types.WebhookConfig.user_metadata",false]],"user_metadata (genai.types.webhookconfigdict attribute)":[[0,"genai.types.WebhookConfigDict.user_metadata",false]],"user_output_token_distribution (genai.types.datasetstats attribute)":[[0,"genai.types.DatasetStats.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.datasetstatsdict attribute)":[[0,"genai.types.DatasetStatsDict.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.preferenceoptimizationdatastats attribute)":[[0,"genai.types.PreferenceOptimizationDataStats.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.preferenceoptimizationdatastatsdict attribute)":[[0,"genai.types.PreferenceOptimizationDataStatsDict.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.supervisedtuningdatastats attribute)":[[0,"genai.types.SupervisedTuningDataStats.user_output_token_distribution",false]],"user_output_token_distribution (genai.types.supervisedtuningdatastatsdict attribute)":[[0,"genai.types.SupervisedTuningDataStatsDict.user_output_token_distribution",false]],"user_requested_aux_info (genai.types.reinforcementtuningrewardinfo attribute)":[[0,"genai.types.ReinforcementTuningRewardInfo.user_requested_aux_info",false]],"user_requested_aux_info (genai.types.reinforcementtuningrewardinfodict attribute)":[[0,"genai.types.ReinforcementTuningRewardInfoDict.user_requested_aux_info",false]],"uses (genai.types.createauthtokenconfig attribute)":[[0,"genai.types.CreateAuthTokenConfig.uses",false]],"uses (genai.types.createauthtokenconfigdict attribute)":[[0,"genai.types.CreateAuthTokenConfigDict.uses",false]],"vad_signal_type (genai.types.voiceactivitydetectionsignal attribute)":[[0,"genai.types.VoiceActivityDetectionSignal.vad_signal_type",false]],"vad_signal_type (genai.types.voiceactivitydetectionsignaldict attribute)":[[0,"genai.types.VoiceActivityDetectionSignalDict.vad_signal_type",false]],"vad_signal_type_eos (genai.types.vadsignaltype attribute)":[[0,"genai.types.VadSignalType.VAD_SIGNAL_TYPE_EOS",false]],"vad_signal_type_sos (genai.types.vadsignaltype attribute)":[[0,"genai.types.VadSignalType.VAD_SIGNAL_TYPE_SOS",false]],"vad_signal_type_unspecified (genai.types.vadsignaltype attribute)":[[0,"genai.types.VadSignalType.VAD_SIGNAL_TYPE_UNSPECIFIED",false]],"vadsignaltype (class in genai.types)":[[0,"genai.types.VadSignalType",false]],"validate_name() (genai.types.metric method)":[[0,"genai.types.Metric.validate_name",false]],"validate_reward() (genai.tunings.asynctunings method)":[[0,"genai.tunings.AsyncTunings.validate_reward",false]],"validate_reward() (genai.tunings.tunings method)":[[0,"genai.tunings.Tunings.validate_reward",false]],"validated (genai.types.functioncallingconfigmode attribute)":[[0,"genai.types.FunctionCallingConfigMode.VALIDATED",false]],"validaterewardconfigdict (class in genai.types)":[[0,"genai.types.ValidateRewardConfigDict",false]],"validaterewardresponsedict (class in genai.types)":[[0,"genai.types.ValidateRewardResponseDict",false]],"validation_dataset (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.validation_dataset",false]],"validation_dataset (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.validation_dataset",false]],"validation_dataset_uri (genai.types.createtuningjobconfig attribute)":[[0,"genai.types.CreateTuningJobConfig.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.createtuningjobconfigdict attribute)":[[0,"genai.types.CreateTuningJobConfigDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationsamplingspec attribute)":[[0,"genai.types.DistillationSamplingSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationsamplingspecdict attribute)":[[0,"genai.types.DistillationSamplingSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationspec attribute)":[[0,"genai.types.DistillationSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.distillationspecdict attribute)":[[0,"genai.types.DistillationSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.fullfinetuningspec attribute)":[[0,"genai.types.FullFineTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.fullfinetuningspecdict attribute)":[[0,"genai.types.FullFineTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.partnermodeltuningspec attribute)":[[0,"genai.types.PartnerModelTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.partnermodeltuningspecdict attribute)":[[0,"genai.types.PartnerModelTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.preferenceoptimizationspec attribute)":[[0,"genai.types.PreferenceOptimizationSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.preferenceoptimizationspecdict attribute)":[[0,"genai.types.PreferenceOptimizationSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.reinforcementtuningspec attribute)":[[0,"genai.types.ReinforcementTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.reinforcementtuningspecdict attribute)":[[0,"genai.types.ReinforcementTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.supervisedtuningspec attribute)":[[0,"genai.types.SupervisedTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.supervisedtuningspecdict attribute)":[[0,"genai.types.SupervisedTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veotuningspec attribute)":[[0,"genai.types.VeoTuningSpec.validation_dataset_uri",false]],"validation_dataset_uri (genai.types.veotuningspecdict attribute)":[[0,"genai.types.VeoTuningSpecDict.validation_dataset_uri",false]],"value_string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpression attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpression.value_string_match_expression",false]],"value_string_match_expression (genai.types.reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict.value_string_match_expression",false]],"values (genai.types.contentembedding attribute)":[[0,"genai.types.ContentEmbedding.values",false]],"values (genai.types.groundingchunkstringlist attribute)":[[0,"genai.types.GroundingChunkStringList.values",false]],"values (genai.types.stringlist attribute)":[[0,"genai.types.StringList.values",false]],"variance (genai.types.aggregationmetric attribute)":[[0,"genai.types.AggregationMetric.VARIANCE",false]],"vector_distance_threshold (genai.types.ragretrievalconfigfilter attribute)":[[0,"genai.types.RagRetrievalConfigFilter.vector_distance_threshold",false]],"vector_distance_threshold (genai.types.ragretrievalconfigfilterdict attribute)":[[0,"genai.types.RagRetrievalConfigFilterDict.vector_distance_threshold",false]],"vector_distance_threshold (genai.types.vertexragstore attribute)":[[0,"genai.types.VertexRagStore.vector_distance_threshold",false]],"vector_distance_threshold (genai.types.vertexragstoredict attribute)":[[0,"genai.types.VertexRagStoreDict.vector_distance_threshold",false]],"vector_similarity_threshold (genai.types.ragretrievalconfigfilter attribute)":[[0,"genai.types.RagRetrievalConfigFilter.vector_similarity_threshold",false]],"vector_similarity_threshold (genai.types.ragretrievalconfigfilterdict attribute)":[[0,"genai.types.RagRetrievalConfigFilterDict.vector_similarity_threshold",false]],"veo_data_mixture_ratio (genai.types.veohyperparameters attribute)":[[0,"genai.types.VeoHyperParameters.veo_data_mixture_ratio",false]],"veo_data_mixture_ratio (genai.types.veohyperparametersdict attribute)":[[0,"genai.types.VeoHyperParametersDict.veo_data_mixture_ratio",false]],"veo_lora_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.veo_lora_tuning_spec",false]],"veo_lora_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.veo_lora_tuning_spec",false]],"veo_tuning_spec (genai.types.tuningjob attribute)":[[0,"genai.types.TuningJob.veo_tuning_spec",false]],"veo_tuning_spec (genai.types.tuningjobdict attribute)":[[0,"genai.types.TuningJobDict.veo_tuning_spec",false]],"veohyperparametersdict (class in genai.types)":[[0,"genai.types.VeoHyperParametersDict",false]],"veoloratuningspecdict (class in genai.types)":[[0,"genai.types.VeoLoraTuningSpecDict",false]],"veotuningspecdict (class in genai.types)":[[0,"genai.types.VeoTuningSpecDict",false]],"version (genai.types.model attribute)":[[0,"genai.types.Model.version",false]],"version (genai.types.modeldict attribute)":[[0,"genai.types.ModelDict.version",false]],"vertex_ai_search (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.vertex_ai_search",false]],"vertex_ai_search (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.vertex_ai_search",false]],"vertex_dataset (genai.types.batchjobdestination attribute)":[[0,"genai.types.BatchJobDestination.vertex_dataset",false]],"vertex_dataset (genai.types.batchjobdestinationdict attribute)":[[0,"genai.types.BatchJobDestinationDict.vertex_dataset",false]],"vertex_dataset_name (genai.types.batchjobsource attribute)":[[0,"genai.types.BatchJobSource.vertex_dataset_name",false]],"vertex_dataset_name (genai.types.batchjobsourcedict attribute)":[[0,"genai.types.BatchJobSourceDict.vertex_dataset_name",false]],"vertex_dataset_resource (genai.types.tuningdataset attribute)":[[0,"genai.types.TuningDataset.vertex_dataset_resource",false]],"vertex_dataset_resource (genai.types.tuningdatasetdict attribute)":[[0,"genai.types.TuningDatasetDict.vertex_dataset_resource",false]],"vertex_dataset_resource (genai.types.tuningvalidationdataset attribute)":[[0,"genai.types.TuningValidationDataset.vertex_dataset_resource",false]],"vertex_dataset_resource (genai.types.tuningvalidationdatasetdict attribute)":[[0,"genai.types.TuningValidationDatasetDict.vertex_dataset_resource",false]],"vertex_multimodal_dataset_name (genai.types.batchjoboutputinfo attribute)":[[0,"genai.types.BatchJobOutputInfo.vertex_multimodal_dataset_name",false]],"vertex_multimodal_dataset_name (genai.types.batchjoboutputinfodict attribute)":[[0,"genai.types.BatchJobOutputInfoDict.vertex_multimodal_dataset_name",false]],"vertex_rag_store (genai.types.retrieval attribute)":[[0,"genai.types.Retrieval.vertex_rag_store",false]],"vertex_rag_store (genai.types.retrievaldict attribute)":[[0,"genai.types.RetrievalDict.vertex_rag_store",false]],"vertexai (genai.client.client attribute)":[[0,"genai.client.Client.vertexai",false]],"vertexai (genai.client.client property)":[[0,"id0",false]],"vertexaisearchdatastorespecdict (class in genai.types)":[[0,"genai.types.VertexAISearchDataStoreSpecDict",false]],"vertexaisearchdict (class in genai.types)":[[0,"genai.types.VertexAISearchDict",false]],"vertexmultimodaldatasetdestinationdict (class in genai.types)":[[0,"genai.types.VertexMultimodalDatasetDestinationDict",false]],"vertexragstoredict (class in genai.types)":[[0,"genai.types.VertexRagStoreDict",false]],"vertexragstoreragresourcedict (class in genai.types)":[[0,"genai.types.VertexRagStoreRagResourceDict",false]],"video (genai.types.generatedvideo attribute)":[[0,"genai.types.GeneratedVideo.video",false]],"video (genai.types.generatedvideodict attribute)":[[0,"genai.types.GeneratedVideoDict.video",false]],"video (genai.types.generatevideossource attribute)":[[0,"genai.types.GenerateVideosSource.video",false]],"video (genai.types.generatevideossourcedict attribute)":[[0,"genai.types.GenerateVideosSourceDict.video",false]],"video (genai.types.liveclientrealtimeinput attribute)":[[0,"genai.types.LiveClientRealtimeInput.video",false]],"video (genai.types.liveclientrealtimeinputdict attribute)":[[0,"genai.types.LiveClientRealtimeInputDict.video",false]],"video (genai.types.livesendrealtimeinputparameters attribute)":[[0,"genai.types.LiveSendRealtimeInputParameters.video",false]],"video (genai.types.livesendrealtimeinputparametersdict attribute)":[[0,"genai.types.LiveSendRealtimeInputParametersDict.video",false]],"video (genai.types.mediamodality attribute)":[[0,"genai.types.MediaModality.VIDEO",false]],"video (genai.types.modality attribute)":[[0,"genai.types.Modality.VIDEO",false]],"video (genai.types.responseformat attribute)":[[0,"genai.types.ResponseFormat.video",false]],"video (genai.types.responseformatdict attribute)":[[0,"genai.types.ResponseFormatDict.video",false]],"video_bitrate_bps (genai.types.avatarconfig attribute)":[[0,"genai.types.AvatarConfig.video_bitrate_bps",false]],"video_bitrate_bps (genai.types.avatarconfigdict attribute)":[[0,"genai.types.AvatarConfigDict.video_bitrate_bps",false]],"video_bytes (genai.types.video attribute)":[[0,"genai.types.Video.video_bytes",false]],"video_bytes (genai.types.videodict attribute)":[[0,"genai.types.VideoDict.video_bytes",false]],"video_duration_seconds (genai.types.cachedcontentusagemetadata attribute)":[[0,"genai.types.CachedContentUsageMetadata.video_duration_seconds",false]],"video_duration_seconds (genai.types.cachedcontentusagemetadatadict attribute)":[[0,"genai.types.CachedContentUsageMetadataDict.video_duration_seconds",false]],"video_metadata (genai.types.file attribute)":[[0,"genai.types.File.video_metadata",false]],"video_metadata (genai.types.filedict attribute)":[[0,"genai.types.FileDict.video_metadata",false]],"video_metadata (genai.types.part attribute)":[[0,"genai.types.Part.video_metadata",false]],"video_metadata (genai.types.partdict attribute)":[[0,"genai.types.PartDict.video_metadata",false]],"video_orientation (genai.types.veoloratuningspec attribute)":[[0,"genai.types.VeoLoraTuningSpec.video_orientation",false]],"video_orientation (genai.types.veoloratuningspecdict attribute)":[[0,"genai.types.VeoLoraTuningSpecDict.video_orientation",false]],"video_orientation_unspecified (genai.types.videoorientation attribute)":[[0,"genai.types.VideoOrientation.VIDEO_ORIENTATION_UNSPECIFIED",false]],"videocompressionquality (class in genai.types)":[[0,"genai.types.VideoCompressionQuality",false]],"videodict (class in genai.types)":[[0,"genai.types.VideoDict",false]],"videogenerationmaskdict (class in genai.types)":[[0,"genai.types.VideoGenerationMaskDict",false]],"videogenerationmaskmode (class in genai.types)":[[0,"genai.types.VideoGenerationMaskMode",false]],"videogenerationreferenceimagedict (class in genai.types)":[[0,"genai.types.VideoGenerationReferenceImageDict",false]],"videogenerationreferencetype (class in genai.types)":[[0,"genai.types.VideoGenerationReferenceType",false]],"videometadatadict (class in genai.types)":[[0,"genai.types.VideoMetadataDict",false]],"videoorientation (class in genai.types)":[[0,"genai.types.VideoOrientation",false]],"videoresponseformatdict (class in genai.types)":[[0,"genai.types.VideoResponseFormatDict",false]],"vocalization (genai.types.musicgenerationmode attribute)":[[0,"genai.types.MusicGenerationMode.VOCALIZATION",false]],"voice_activity (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.voice_activity",false]],"voice_activity (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.voice_activity",false]],"voice_activity_detection_signal (genai.types.liveservermessage attribute)":[[0,"genai.types.LiveServerMessage.voice_activity_detection_signal",false]],"voice_activity_detection_signal (genai.types.liveservermessagedict attribute)":[[0,"genai.types.LiveServerMessageDict.voice_activity_detection_signal",false]],"voice_activity_type (genai.types.voiceactivity attribute)":[[0,"genai.types.VoiceActivity.voice_activity_type",false]],"voice_activity_type (genai.types.voiceactivitydict attribute)":[[0,"genai.types.VoiceActivityDict.voice_activity_type",false]],"voice_config (genai.types.speakervoiceconfig attribute)":[[0,"genai.types.SpeakerVoiceConfig.voice_config",false]],"voice_config (genai.types.speakervoiceconfigdict attribute)":[[0,"genai.types.SpeakerVoiceConfigDict.voice_config",false]],"voice_config (genai.types.speechconfig attribute)":[[0,"genai.types.SpeechConfig.voice_config",false]],"voice_config (genai.types.speechconfigdict attribute)":[[0,"genai.types.SpeechConfigDict.voice_config",false]],"voice_consent_signature (genai.types.liveserversetupcomplete attribute)":[[0,"genai.types.LiveServerSetupComplete.voice_consent_signature",false]],"voice_consent_signature (genai.types.liveserversetupcompletedict attribute)":[[0,"genai.types.LiveServerSetupCompleteDict.voice_consent_signature",false]],"voice_consent_signature (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.voice_consent_signature",false]],"voice_consent_signature (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.voice_consent_signature",false]],"voice_name (genai.types.prebuiltvoiceconfig attribute)":[[0,"genai.types.PrebuiltVoiceConfig.voice_name",false]],"voice_name (genai.types.prebuiltvoiceconfigdict attribute)":[[0,"genai.types.PrebuiltVoiceConfigDict.voice_name",false]],"voice_sample_audio (genai.types.replicatedvoiceconfig attribute)":[[0,"genai.types.ReplicatedVoiceConfig.voice_sample_audio",false]],"voice_sample_audio (genai.types.replicatedvoiceconfigdict attribute)":[[0,"genai.types.ReplicatedVoiceConfigDict.voice_sample_audio",false]],"voiceactivitydetectionsignaldict (class in genai.types)":[[0,"genai.types.VoiceActivityDetectionSignalDict",false]],"voiceactivitydict (class in genai.types)":[[0,"genai.types.VoiceActivityDict",false]],"voiceactivitytype (class in genai.types)":[[0,"genai.types.VoiceActivityType",false]],"voiceconfigdict (class in genai.types)":[[0,"genai.types.VoiceConfigDict",false]],"voiceconsentsignaturedict (class in genai.types)":[[0,"genai.types.VoiceConsentSignatureDict",false]],"waiting_for_input (genai.types.liveservercontent attribute)":[[0,"genai.types.LiveServerContent.waiting_for_input",false]],"waiting_for_input (genai.types.liveservercontentdict attribute)":[[0,"genai.types.LiveServerContentDict.waiting_for_input",false]],"web (genai.types.groundingchunk attribute)":[[0,"genai.types.GroundingChunk.web",false]],"web (genai.types.groundingchunkdict attribute)":[[0,"genai.types.GroundingChunkDict.web",false]],"web_search (genai.types.searchtypes attribute)":[[0,"genai.types.SearchTypes.web_search",false]],"web_search (genai.types.searchtypesdict attribute)":[[0,"genai.types.SearchTypesDict.web_search",false]],"web_search_queries (genai.types.groundingmetadata attribute)":[[0,"genai.types.GroundingMetadata.web_search_queries",false]],"web_search_queries (genai.types.groundingmetadatadict attribute)":[[0,"genai.types.GroundingMetadataDict.web_search_queries",false]],"webhook_config (genai.types.createbatchjobconfig attribute)":[[0,"genai.types.CreateBatchJobConfig.webhook_config",false]],"webhook_config (genai.types.createbatchjobconfigdict attribute)":[[0,"genai.types.CreateBatchJobConfigDict.webhook_config",false]],"webhook_config (genai.types.generatevideosconfig attribute)":[[0,"genai.types.GenerateVideosConfig.webhook_config",false]],"webhook_config (genai.types.generatevideosconfigdict attribute)":[[0,"genai.types.GenerateVideosConfigDict.webhook_config",false]],"webhookconfigdict (class in genai.types)":[[0,"genai.types.WebhookConfigDict",false]],"webhooks (genai.client.asyncclient property)":[[0,"genai.client.AsyncClient.webhooks",false]],"webhooks (genai.client.client property)":[[0,"genai.client.Client.webhooks",false]],"websearchdict (class in genai.types)":[[0,"genai.types.WebSearchDict",false]],"weight (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfig attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfig.weight",false]],"weight (genai.types.compositereinforcementtuningrewardconfigweightedrewardconfigdict attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict.weight",false]],"weight (genai.types.weightedprompt attribute)":[[0,"genai.types.WeightedPrompt.weight",false]],"weight (genai.types.weightedpromptdict attribute)":[[0,"genai.types.WeightedPromptDict.weight",false]],"weighted_prompts (genai.types.livemusicclientcontent attribute)":[[0,"genai.types.LiveMusicClientContent.weighted_prompts",false]],"weighted_prompts (genai.types.livemusicclientcontentdict attribute)":[[0,"genai.types.LiveMusicClientContentDict.weighted_prompts",false]],"weighted_prompts (genai.types.livemusicsetweightedpromptsparameters attribute)":[[0,"genai.types.LiveMusicSetWeightedPromptsParameters.weighted_prompts",false]],"weighted_prompts (genai.types.livemusicsetweightedpromptsparametersdict attribute)":[[0,"genai.types.LiveMusicSetWeightedPromptsParametersDict.weighted_prompts",false]],"weighted_reward_configs (genai.types.compositereinforcementtuningrewardconfig attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfig.weighted_reward_configs",false]],"weighted_reward_configs (genai.types.compositereinforcementtuningrewardconfigdict attribute)":[[0,"genai.types.CompositeReinforcementTuningRewardConfigDict.weighted_reward_configs",false]],"weightedpromptdict (class in genai.types)":[[0,"genai.types.WeightedPromptDict",false]],"when_idle (genai.types.functionresponsescheduling attribute)":[[0,"genai.types.FunctionResponseScheduling.WHEN_IDLE",false]],"white_space_config (genai.types.chunkingconfig attribute)":[[0,"genai.types.ChunkingConfig.white_space_config",false]],"white_space_config (genai.types.chunkingconfigdict attribute)":[[0,"genai.types.ChunkingConfigDict.white_space_config",false]],"whitespaceconfigdict (class in genai.types)":[[0,"genai.types.WhiteSpaceConfigDict",false]],"will_continue (genai.types.functioncall attribute)":[[0,"genai.types.FunctionCall.will_continue",false]],"will_continue (genai.types.functioncalldict attribute)":[[0,"genai.types.FunctionCallDict.will_continue",false]],"will_continue (genai.types.functionresponse attribute)":[[0,"genai.types.FunctionResponse.will_continue",false]],"will_continue (genai.types.functionresponsedict attribute)":[[0,"genai.types.FunctionResponseDict.will_continue",false]],"will_continue (genai.types.partialarg attribute)":[[0,"genai.types.PartialArg.will_continue",false]],"will_continue (genai.types.partialargdict attribute)":[[0,"genai.types.PartialArgDict.will_continue",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgenagents property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgenenvironments property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgeninteractions property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgentriggers property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.asyncgemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgenagents property)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgenenvironments property)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgeninteractions property)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgentriggers property)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.with_raw_response",false]],"with_raw_response (genai._gaos.google_genai.gemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.with_raw_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgenagents property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenAgents.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgenenvironments property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgeninteractions property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenInteractions.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgentriggers property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenTriggers.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.asyncgemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgenagents property)":[[0,"genai._gaos.google_genai.GeminiNextGenAgents.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgenenvironments property)":[[0,"genai._gaos.google_genai.GeminiNextGenEnvironments.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgeninteractions property)":[[0,"genai._gaos.google_genai.GeminiNextGenInteractions.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgentriggers property)":[[0,"genai._gaos.google_genai.GeminiNextGenTriggers.with_streaming_response",false]],"with_streaming_response (genai._gaos.google_genai.gemininextgenwebhooks property)":[[0,"genai._gaos.google_genai.GeminiNextGenWebhooks.with_streaming_response",false]],"word (genai.types.wordinfo attribute)":[[0,"genai.types.WordInfo.word",false]],"word (genai.types.wordinfodict attribute)":[[0,"genai.types.WordInfoDict.word",false]],"word_timestamp (genai.types.audiotranscriptionconfig attribute)":[[0,"genai.types.AudioTranscriptionConfig.word_timestamp",false]],"word_timestamp (genai.types.audiotranscriptionconfigdict attribute)":[[0,"genai.types.AudioTranscriptionConfigDict.word_timestamp",false]],"wordinfodict (class in genai.types)":[[0,"genai.types.WordInfoDict",false]],"words (genai.types.transcription attribute)":[[0,"genai.types.Transcription.words",false]],"words (genai.types.transcriptiondict attribute)":[[0,"genai.types.TranscriptionDict.words",false]],"wrong_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorer attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer.wrong_answer_reward",false]],"wrong_answer_reward (genai.types.reinforcementtuningautoraterscorerexactmatchscorerdict attribute)":[[0,"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict.wrong_answer_reward",false]],"wrong_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorer attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorer.wrong_answer_reward",false]],"wrong_answer_reward (genai.types.reinforcementtuningstringmatchrewardscorerdict attribute)":[[0,"genai.types.ReinforcementTuningStringMatchRewardScorerDict.wrong_answer_reward",false]],"year (genai.types.googletypedate attribute)":[[0,"genai.types.GoogleTypeDate.year",false]],"year (genai.types.googletypedatedict attribute)":[[0,"genai.types.GoogleTypeDateDict.year",false]],"zh (genai.types.imagepromptlanguage attribute)":[[0,"genai.types.ImagePromptLanguage.zh",false]]},"objects":{"genai":[[0,3,0,"-","client"],[0,3,0,"-","live"],[0,3,0,"-","models"],[0,3,0,"-","tokens"],[0,3,0,"-","tunings"],[0,3,0,"-","types"]],"genai._gaos.google_genai":[[0,0,1,"","AsyncGeminiNextGenAgents"],[0,0,1,"","AsyncGeminiNextGenEnvironments"],[0,0,1,"","AsyncGeminiNextGenInteractions"],[0,0,1,"","AsyncGeminiNextGenTriggers"],[0,0,1,"","AsyncGeminiNextGenWebhooks"],[0,0,1,"","GeminiNextGenAgents"],[0,0,1,"","GeminiNextGenEnvironments"],[0,0,1,"","GeminiNextGenInteractions"],[0,0,1,"","GeminiNextGenTriggers"],[0,0,1,"","GeminiNextGenWebhooks"]],"genai._gaos.google_genai.AsyncGeminiNextGenAgents":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenEnvironments":[[0,1,1,"","create"],[0,1,1,"","create_environment"],[0,1,1,"","delete"],[0,1,1,"","delete_environment"],[0,1,1,"","get"],[0,1,1,"","get_environment"],[0,1,1,"","get_environment_files"],[0,1,1,"","list"],[0,1,1,"","list_environments"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenInteractions":[[0,1,1,"","cancel"],[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenTriggers":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","list_executions"],[0,1,1,"","run"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.AsyncGeminiNextGenWebhooks":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","ping"],[0,1,1,"","rotate_signing_secret"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenAgents":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenEnvironments":[[0,1,1,"","create"],[0,1,1,"","create_environment"],[0,1,1,"","delete"],[0,1,1,"","delete_environment"],[0,1,1,"","get"],[0,1,1,"","get_environment"],[0,1,1,"","get_environment_files"],[0,1,1,"","list"],[0,1,1,"","list_environments"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenInteractions":[[0,1,1,"","cancel"],[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenTriggers":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","list_executions"],[0,1,1,"","run"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai._gaos.google_genai.GeminiNextGenWebhooks":[[0,1,1,"","create"],[0,1,1,"","delete"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","ping"],[0,1,1,"","rotate_signing_secret"],[0,1,1,"","update"],[0,2,1,"","with_raw_response"],[0,2,1,"","with_streaming_response"]],"genai.client":[[0,0,1,"","AsyncClient"],[0,0,1,"","Client"],[0,5,1,"","DebugConfig"]],"genai.client.AsyncClient":[[0,1,1,"","aclose"],[0,2,1,"","agents"],[0,2,1,"","auth_tokens"],[0,2,1,"","batches"],[0,2,1,"","caches"],[0,2,1,"","chats"],[0,2,1,"","environments"],[0,2,1,"","file_search_stores"],[0,2,1,"","files"],[0,2,1,"","interactions"],[0,2,1,"","live"],[0,2,1,"","models"],[0,2,1,"","operations"],[0,2,1,"","triggers"],[0,2,1,"","tunings"],[0,2,1,"","webhooks"]],"genai.client.Client":[[0,2,1,"","agents"],[0,2,1,"","aio"],[0,4,1,"","api_key"],[0,2,1,"","auth_tokens"],[0,2,1,"","batches"],[0,2,1,"","caches"],[0,2,1,"","chats"],[0,1,1,"","close"],[0,4,1,"","credentials"],[0,4,1,"","debug_config"],[0,4,1,"","enterprise"],[0,2,1,"","environments"],[0,2,1,"","file_search_stores"],[0,2,1,"","files"],[0,4,1,"","http_options"],[0,2,1,"","interactions"],[0,4,1,"","location"],[0,2,1,"","models"],[0,2,1,"","operations"],[0,4,1,"","project"],[0,2,1,"","triggers"],[0,2,1,"","tunings"],[0,2,1,"id0","vertexai"],[0,2,1,"","webhooks"]],"genai.client.DebugConfig":[[0,6,1,"","client_mode"],[0,6,1,"","replay_id"],[0,6,1,"","replays_directory"]],"genai.live":[[0,0,1,"","AsyncLive"],[0,0,1,"","AsyncSession"]],"genai.live.AsyncLive":[[0,1,1,"","connect"],[0,2,1,"","music"]],"genai.live.AsyncSession":[[0,1,1,"","close"],[0,1,1,"","receive"],[0,1,1,"","send"],[0,1,1,"","send_client_content"],[0,1,1,"","send_realtime_input"],[0,1,1,"","send_tool_response"],[0,1,1,"","start_stream"]],"genai.models":[[0,0,1,"","AsyncModels"],[0,0,1,"","Models"]],"genai.models.AsyncModels":[[0,1,1,"","compute_tokens"],[0,1,1,"","count_tokens"],[0,1,1,"","delete"],[0,1,1,"","edit_image"],[0,1,1,"","embed_content"],[0,1,1,"","generate_content"],[0,1,1,"","generate_content_stream"],[0,1,1,"","generate_images"],[0,1,1,"","generate_videos"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","recontext_image"],[0,1,1,"","segment_image"],[0,1,1,"","update"],[0,1,1,"","upscale_image"]],"genai.models.Models":[[0,1,1,"","compute_tokens"],[0,1,1,"","count_tokens"],[0,1,1,"","delete"],[0,1,1,"","edit_image"],[0,1,1,"","embed_content"],[0,1,1,"","generate_content"],[0,1,1,"","generate_content_stream"],[0,1,1,"","generate_images"],[0,1,1,"","generate_videos"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","recontext_image"],[0,1,1,"","segment_image"],[0,1,1,"","update"],[0,1,1,"","upscale_image"]],"genai.tokens":[[0,0,1,"","AsyncTokens"],[0,0,1,"","Tokens"]],"genai.tokens.AsyncTokens":[[0,1,1,"","create"]],"genai.tokens.Tokens":[[0,1,1,"","create"]],"genai.tunings":[[0,0,1,"","AsyncTunings"],[0,0,1,"","Tunings"]],"genai.tunings.AsyncTunings":[[0,1,1,"","cancel"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","tune"],[0,1,1,"","validate_reward"]],"genai.tunings.Tunings":[[0,1,1,"","cancel"],[0,1,1,"","get"],[0,1,1,"","list"],[0,1,1,"","tune"],[0,1,1,"","validate_reward"]],"genai.types":[[0,5,1,"","ActivityEnd"],[0,0,1,"","ActivityEndDict"],[0,0,1,"","ActivityHandling"],[0,5,1,"","ActivityStart"],[0,0,1,"","ActivityStartDict"],[0,0,1,"","AdapterSize"],[0,0,1,"","AggregationMetric"],[0,5,1,"","AggregationOutput"],[0,0,1,"","AggregationOutputDict"],[0,5,1,"","AggregationResult"],[0,0,1,"","AggregationResultDict"],[0,5,1,"","ApiAuth"],[0,5,1,"","ApiAuthApiKeyConfig"],[0,0,1,"","ApiAuthApiKeyConfigDict"],[0,0,1,"","ApiAuthDict"],[0,5,1,"","ApiKeyConfig"],[0,0,1,"","ApiKeyConfigDict"],[0,0,1,"","ApiSpec"],[0,0,1,"","AspectRatio"],[0,5,1,"","AudioChunk"],[0,0,1,"","AudioChunkDict"],[0,5,1,"","AudioResponseFormat"],[0,0,1,"","AudioResponseFormatDict"],[0,5,1,"","AudioTranscriptionConfig"],[0,0,1,"","AudioTranscriptionConfigDict"],[0,5,1,"","AuthConfig"],[0,0,1,"","AuthConfigDict"],[0,5,1,"","AuthConfigGoogleServiceAccountConfig"],[0,0,1,"","AuthConfigGoogleServiceAccountConfigDict"],[0,5,1,"","AuthConfigHttpBasicAuthConfig"],[0,0,1,"","AuthConfigHttpBasicAuthConfigDict"],[0,5,1,"","AuthConfigOauthConfig"],[0,0,1,"","AuthConfigOauthConfigDict"],[0,5,1,"","AuthConfigOidcConfig"],[0,0,1,"","AuthConfigOidcConfigDict"],[0,5,1,"","AuthToken"],[0,0,1,"","AuthTokenDict"],[0,0,1,"","AuthType"],[0,5,1,"","AutomaticActivityDetection"],[0,0,1,"","AutomaticActivityDetectionDict"],[0,5,1,"","AutomaticFunctionCallingConfig"],[0,0,1,"","AutomaticFunctionCallingConfigDict"],[0,5,1,"","AutoraterConfig"],[0,0,1,"","AutoraterConfigDict"],[0,5,1,"","AvatarConfig"],[0,0,1,"","AvatarConfigDict"],[0,5,1,"","BatchJob"],[0,5,1,"","BatchJobDestination"],[0,0,1,"","BatchJobDestinationDict"],[0,0,1,"","BatchJobDict"],[0,5,1,"","BatchJobOutputInfo"],[0,0,1,"","BatchJobOutputInfoDict"],[0,5,1,"","BatchJobSource"],[0,0,1,"","BatchJobSourceDict"],[0,0,1,"","Behavior"],[0,5,1,"","BigQuerySource"],[0,0,1,"","BigQuerySourceDict"],[0,5,1,"","BleuMetricValue"],[0,0,1,"","BleuMetricValueDict"],[0,5,1,"","BleuSpec"],[0,0,1,"","BleuSpecDict"],[0,5,1,"","Blob"],[0,0,1,"","BlobDict"],[0,0,1,"","BlockedReason"],[0,5,1,"","CachedContent"],[0,0,1,"","CachedContentDict"],[0,5,1,"","CachedContentUsageMetadata"],[0,0,1,"","CachedContentUsageMetadataDict"],[0,5,1,"","CancelBatchJobConfig"],[0,0,1,"","CancelBatchJobConfigDict"],[0,5,1,"","CancelTuningJobConfig"],[0,0,1,"","CancelTuningJobConfigDict"],[0,5,1,"","CancelTuningJobResponse"],[0,0,1,"","CancelTuningJobResponseDict"],[0,5,1,"","Candidate"],[0,0,1,"","CandidateDict"],[0,5,1,"","Checkpoint"],[0,0,1,"","CheckpointDict"],[0,5,1,"","ChunkingConfig"],[0,0,1,"","ChunkingConfigDict"],[0,5,1,"","Citation"],[0,0,1,"","CitationDict"],[0,5,1,"","CitationMetadata"],[0,0,1,"","CitationMetadataDict"],[0,5,1,"","CodeExecutionResult"],[0,0,1,"","CodeExecutionResultDict"],[0,5,1,"","CompletionStats"],[0,0,1,"","CompletionStatsDict"],[0,5,1,"","CompositeReinforcementTuningRewardConfig"],[0,0,1,"","CompositeReinforcementTuningRewardConfigDict"],[0,5,1,"","CompositeReinforcementTuningRewardConfigWeightedRewardConfig"],[0,0,1,"","CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict"],[0,5,1,"","ComputationBasedMetricSpec"],[0,0,1,"","ComputationBasedMetricSpecDict"],[0,0,1,"","ComputationBasedMetricType"],[0,5,1,"","ComputeTokensConfig"],[0,0,1,"","ComputeTokensConfigDict"],[0,5,1,"","ComputeTokensResponse"],[0,0,1,"","ComputeTokensResponseDict"],[0,5,1,"","ComputeTokensResult"],[0,0,1,"","ComputeTokensResultDict"],[0,5,1,"","ComputerUse"],[0,0,1,"","ComputerUseDict"],[0,5,1,"","Content"],[0,0,1,"","ContentDict"],[0,5,1,"","ContentEmbedding"],[0,0,1,"","ContentEmbeddingDict"],[0,5,1,"","ContentEmbeddingStatistics"],[0,0,1,"","ContentEmbeddingStatisticsDict"],[0,5,1,"","ContentReferenceImage"],[0,0,1,"","ContentReferenceImageDict"],[0,5,1,"","ContextWindowCompressionConfig"],[0,0,1,"","ContextWindowCompressionConfigDict"],[0,5,1,"","ControlReferenceConfig"],[0,0,1,"","ControlReferenceConfigDict"],[0,5,1,"","ControlReferenceImage"],[0,0,1,"","ControlReferenceImageDict"],[0,0,1,"","ControlReferenceType"],[0,5,1,"","CountTokensConfig"],[0,0,1,"","CountTokensConfigDict"],[0,5,1,"","CountTokensResponse"],[0,0,1,"","CountTokensResponseDict"],[0,5,1,"","CountTokensResult"],[0,0,1,"","CountTokensResultDict"],[0,5,1,"","CreateAuthTokenConfig"],[0,0,1,"","CreateAuthTokenConfigDict"],[0,5,1,"","CreateAuthTokenParameters"],[0,0,1,"","CreateAuthTokenParametersDict"],[0,5,1,"","CreateBatchJobConfig"],[0,0,1,"","CreateBatchJobConfigDict"],[0,5,1,"","CreateCachedContentConfig"],[0,0,1,"","CreateCachedContentConfigDict"],[0,5,1,"","CreateEmbeddingsBatchJobConfig"],[0,0,1,"","CreateEmbeddingsBatchJobConfigDict"],[0,5,1,"","CreateFileConfig"],[0,0,1,"","CreateFileConfigDict"],[0,5,1,"","CreateFileResponse"],[0,0,1,"","CreateFileResponseDict"],[0,5,1,"","CreateFileSearchStoreConfig"],[0,0,1,"","CreateFileSearchStoreConfigDict"],[0,5,1,"","CreateTuningJobConfig"],[0,0,1,"","CreateTuningJobConfigDict"],[0,5,1,"","CreateTuningJobParameters"],[0,0,1,"","CreateTuningJobParametersDict"],[0,5,1,"","CustomCodeExecutionResult"],[0,0,1,"","CustomCodeExecutionResultDict"],[0,5,1,"","CustomCodeExecutionSpec"],[0,0,1,"","CustomCodeExecutionSpecDict"],[0,5,1,"","CustomMetadata"],[0,0,1,"","CustomMetadataDict"],[0,5,1,"","CustomOutput"],[0,0,1,"","CustomOutputDict"],[0,5,1,"","CustomOutputFormatConfig"],[0,0,1,"","CustomOutputFormatConfigDict"],[0,5,1,"","CustomizedAvatar"],[0,0,1,"","CustomizedAvatarDict"],[0,5,1,"","DatasetDistribution"],[0,0,1,"","DatasetDistributionDict"],[0,5,1,"","DatasetDistributionDistributionBucket"],[0,0,1,"","DatasetDistributionDistributionBucketDict"],[0,5,1,"","DatasetStats"],[0,0,1,"","DatasetStatsDict"],[0,5,1,"","DeleteBatchJobConfig"],[0,0,1,"","DeleteBatchJobConfigDict"],[0,5,1,"","DeleteCachedContentConfig"],[0,0,1,"","DeleteCachedContentConfigDict"],[0,5,1,"","DeleteCachedContentResponse"],[0,0,1,"","DeleteCachedContentResponseDict"],[0,5,1,"","DeleteDocumentConfig"],[0,0,1,"","DeleteDocumentConfigDict"],[0,5,1,"","DeleteFileConfig"],[0,0,1,"","DeleteFileConfigDict"],[0,5,1,"","DeleteFileResponse"],[0,0,1,"","DeleteFileResponseDict"],[0,5,1,"","DeleteFileSearchStoreConfig"],[0,0,1,"","DeleteFileSearchStoreConfigDict"],[0,5,1,"","DeleteModelConfig"],[0,0,1,"","DeleteModelConfigDict"],[0,5,1,"","DeleteModelResponse"],[0,0,1,"","DeleteModelResponseDict"],[0,5,1,"","DeleteResourceJob"],[0,0,1,"","DeleteResourceJobDict"],[0,0,1,"","Delivery"],[0,5,1,"","DistillationDataStats"],[0,0,1,"","DistillationDataStatsDict"],[0,5,1,"","DistillationHyperParameters"],[0,0,1,"","DistillationHyperParametersDict"],[0,5,1,"","DistillationSamplingSpec"],[0,0,1,"","DistillationSamplingSpecDict"],[0,5,1,"","DistillationSpec"],[0,0,1,"","DistillationSpecDict"],[0,5,1,"","Document"],[0,0,1,"","DocumentDict"],[0,0,1,"","DocumentState"],[0,5,1,"","DownloadFileConfig"],[0,0,1,"","DownloadFileConfigDict"],[0,5,1,"","DownloadMediaConfig"],[0,0,1,"","DownloadMediaConfigDict"],[0,5,1,"","DynamicRetrievalConfig"],[0,0,1,"","DynamicRetrievalConfigDict"],[0,0,1,"","DynamicRetrievalConfigMode"],[0,5,1,"","EditImageConfig"],[0,0,1,"","EditImageConfigDict"],[0,5,1,"","EditImageResponse"],[0,0,1,"","EditImageResponseDict"],[0,0,1,"","EditMode"],[0,5,1,"","EmbedContentBatch"],[0,0,1,"","EmbedContentBatchDict"],[0,5,1,"","EmbedContentConfig"],[0,0,1,"","EmbedContentConfigDict"],[0,5,1,"","EmbedContentMetadata"],[0,0,1,"","EmbedContentMetadataDict"],[0,5,1,"","EmbedContentParameters"],[0,0,1,"","EmbedContentParametersDict"],[0,5,1,"","EmbedContentResponse"],[0,0,1,"","EmbedContentResponseDict"],[0,0,1,"","EmbeddingApiType"],[0,5,1,"","EmbeddingsBatchJobSource"],[0,0,1,"","EmbeddingsBatchJobSourceDict"],[0,5,1,"","EncryptionSpec"],[0,0,1,"","EncryptionSpecDict"],[0,0,1,"","EndSensitivity"],[0,5,1,"","Endpoint"],[0,0,1,"","EndpointDict"],[0,5,1,"","EnterpriseWebSearch"],[0,0,1,"","EnterpriseWebSearchDict"],[0,5,1,"","EntityLabel"],[0,0,1,"","EntityLabelDict"],[0,0,1,"","Environment"],[0,5,1,"","EvaluateDatasetResponse"],[0,0,1,"","EvaluateDatasetResponseDict"],[0,5,1,"","EvaluateDatasetRun"],[0,0,1,"","EvaluateDatasetRunDict"],[0,5,1,"","EvaluationConfig"],[0,0,1,"","EvaluationConfigDict"],[0,5,1,"","EvaluationDataset"],[0,0,1,"","EvaluationDatasetDict"],[0,5,1,"","EvaluationParserConfig"],[0,5,1,"","EvaluationParserConfigCustomCodeParserConfig"],[0,0,1,"","EvaluationParserConfigCustomCodeParserConfigDict"],[0,0,1,"","EvaluationParserConfigDict"],[0,5,1,"","ExactMatchMetricValue"],[0,0,1,"","ExactMatchMetricValueDict"],[0,5,1,"","ExecutableCode"],[0,0,1,"","ExecutableCodeDict"],[0,5,1,"","ExternalApi"],[0,0,1,"","ExternalApiDict"],[0,5,1,"","ExternalApiElasticSearchParams"],[0,0,1,"","ExternalApiElasticSearchParamsDict"],[0,5,1,"","ExternalApiSimpleSearchParams"],[0,0,1,"","ExternalApiSimpleSearchParamsDict"],[0,0,1,"","FeatureSelectionPreference"],[0,5,1,"","FetchPredictOperationConfig"],[0,0,1,"","FetchPredictOperationConfigDict"],[0,5,1,"","File"],[0,5,1,"","FileData"],[0,0,1,"","FileDataDict"],[0,0,1,"","FileDict"],[0,5,1,"","FileSearch"],[0,0,1,"","FileSearchDict"],[0,5,1,"","FileSearchStore"],[0,0,1,"","FileSearchStoreDict"],[0,0,1,"","FileSource"],[0,0,1,"","FileState"],[0,5,1,"","FileStatus"],[0,0,1,"","FileStatusDict"],[0,0,1,"","FinishReason"],[0,5,1,"","FullFineTuningSpec"],[0,0,1,"","FullFineTuningSpecDict"],[0,5,1,"","FunctionCall"],[0,0,1,"","FunctionCallDict"],[0,5,1,"","FunctionCallingConfig"],[0,0,1,"","FunctionCallingConfigDict"],[0,0,1,"","FunctionCallingConfigMode"],[0,5,1,"","FunctionDeclaration"],[0,0,1,"","FunctionDeclarationDict"],[0,5,1,"","FunctionResponse"],[0,5,1,"","FunctionResponseBlob"],[0,0,1,"","FunctionResponseBlobDict"],[0,0,1,"","FunctionResponseDict"],[0,5,1,"","FunctionResponseFileData"],[0,0,1,"","FunctionResponseFileDataDict"],[0,5,1,"","FunctionResponsePart"],[0,0,1,"","FunctionResponsePartDict"],[0,0,1,"","FunctionResponseScheduling"],[0,5,1,"","GcsDestination"],[0,0,1,"","GcsDestinationDict"],[0,5,1,"","GcsSource"],[0,0,1,"","GcsSourceDict"],[0,5,1,"","GeminiPreferenceExample"],[0,5,1,"","GeminiPreferenceExampleCompletion"],[0,0,1,"","GeminiPreferenceExampleCompletionDict"],[0,0,1,"","GeminiPreferenceExampleDict"],[0,5,1,"","GenerateContentConfig"],[0,0,1,"","GenerateContentConfigDict"],[0,5,1,"","GenerateContentResponse"],[0,0,1,"","GenerateContentResponseDict"],[0,5,1,"","GenerateContentResponsePromptFeedback"],[0,0,1,"","GenerateContentResponsePromptFeedbackDict"],[0,5,1,"","GenerateContentResponseUsageMetadata"],[0,0,1,"","GenerateContentResponseUsageMetadataDict"],[0,5,1,"","GenerateImagesConfig"],[0,0,1,"","GenerateImagesConfigDict"],[0,5,1,"","GenerateImagesResponse"],[0,0,1,"","GenerateImagesResponseDict"],[0,5,1,"","GenerateVideosConfig"],[0,0,1,"","GenerateVideosConfigDict"],[0,5,1,"","GenerateVideosOperation"],[0,5,1,"","GenerateVideosResponse"],[0,0,1,"","GenerateVideosResponseDict"],[0,5,1,"","GenerateVideosSource"],[0,0,1,"","GenerateVideosSourceDict"],[0,5,1,"","GeneratedImage"],[0,0,1,"","GeneratedImageDict"],[0,5,1,"","GeneratedImageMask"],[0,0,1,"","GeneratedImageMaskDict"],[0,5,1,"","GeneratedVideo"],[0,0,1,"","GeneratedVideoDict"],[0,5,1,"","GenerationConfig"],[0,0,1,"","GenerationConfigDict"],[0,5,1,"","GenerationConfigRoutingConfig"],[0,5,1,"","GenerationConfigRoutingConfigAutoRoutingMode"],[0,0,1,"","GenerationConfigRoutingConfigAutoRoutingModeDict"],[0,0,1,"","GenerationConfigRoutingConfigDict"],[0,5,1,"","GenerationConfigRoutingConfigManualRoutingMode"],[0,0,1,"","GenerationConfigRoutingConfigManualRoutingModeDict"],[0,5,1,"","GenerationConfigThinkingConfig"],[0,0,1,"","GenerationConfigThinkingConfigDict"],[0,5,1,"","GetBatchJobConfig"],[0,0,1,"","GetBatchJobConfigDict"],[0,5,1,"","GetCachedContentConfig"],[0,0,1,"","GetCachedContentConfigDict"],[0,5,1,"","GetDocumentConfig"],[0,0,1,"","GetDocumentConfigDict"],[0,5,1,"","GetFileConfig"],[0,0,1,"","GetFileConfigDict"],[0,5,1,"","GetFileSearchStoreConfig"],[0,0,1,"","GetFileSearchStoreConfigDict"],[0,5,1,"","GetModelConfig"],[0,0,1,"","GetModelConfigDict"],[0,5,1,"","GetOperationConfig"],[0,0,1,"","GetOperationConfigDict"],[0,5,1,"","GetTuningJobConfig"],[0,0,1,"","GetTuningJobConfigDict"],[0,5,1,"","GoogleMaps"],[0,0,1,"","GoogleMapsDict"],[0,5,1,"","GoogleMapsGroundingTypes"],[0,0,1,"","GoogleMapsGroundingTypesDict"],[0,5,1,"","GoogleMapsPlaces"],[0,0,1,"","GoogleMapsPlacesDict"],[0,5,1,"","GoogleMapsRouting"],[0,0,1,"","GoogleMapsRoutingDict"],[0,5,1,"","GoogleRpcStatus"],[0,0,1,"","GoogleRpcStatusDict"],[0,5,1,"","GoogleSearch"],[0,0,1,"","GoogleSearchDict"],[0,5,1,"","GoogleSearchRetrieval"],[0,0,1,"","GoogleSearchRetrievalDict"],[0,5,1,"","GoogleTypeDate"],[0,0,1,"","GoogleTypeDateDict"],[0,5,1,"","GroundingChunk"],[0,5,1,"","GroundingChunkCustomMetadata"],[0,0,1,"","GroundingChunkCustomMetadataDict"],[0,0,1,"","GroundingChunkDict"],[0,5,1,"","GroundingChunkImage"],[0,0,1,"","GroundingChunkImageDict"],[0,5,1,"","GroundingChunkMaps"],[0,0,1,"","GroundingChunkMapsDict"],[0,5,1,"","GroundingChunkMapsPlaceAnswerSources"],[0,5,1,"","GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution"],[0,0,1,"","GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict"],[0,0,1,"","GroundingChunkMapsPlaceAnswerSourcesDict"],[0,5,1,"","GroundingChunkMapsPlaceAnswerSourcesReviewSnippet"],[0,0,1,"","GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict"],[0,5,1,"","GroundingChunkMapsRoute"],[0,0,1,"","GroundingChunkMapsRouteDict"],[0,5,1,"","GroundingChunkRetrievedContext"],[0,0,1,"","GroundingChunkRetrievedContextDict"],[0,5,1,"","GroundingChunkStringList"],[0,0,1,"","GroundingChunkStringListDict"],[0,5,1,"","GroundingChunkWeb"],[0,0,1,"","GroundingChunkWebDict"],[0,5,1,"","GroundingMetadata"],[0,0,1,"","GroundingMetadataDict"],[0,5,1,"","GroundingMetadataSourceFlaggingUri"],[0,0,1,"","GroundingMetadataSourceFlaggingUriDict"],[0,5,1,"","GroundingSupport"],[0,0,1,"","GroundingSupportDict"],[0,0,1,"","HarmBlockMethod"],[0,0,1,"","HarmBlockThreshold"],[0,0,1,"","HarmCategory"],[0,0,1,"","HarmProbability"],[0,0,1,"","HarmSeverity"],[0,5,1,"","HistoryConfig"],[0,0,1,"","HistoryConfigDict"],[0,0,1,"","HttpElementLocation"],[0,5,1,"","HttpOptions"],[0,0,1,"","HttpOptionsDict"],[0,5,1,"","HttpResponse"],[0,0,1,"","HttpResponseDict"],[0,5,1,"","HttpRetryOptions"],[0,0,1,"","HttpRetryOptionsDict"],[0,5,1,"","Image"],[0,5,1,"","ImageConfig"],[0,0,1,"","ImageConfigDict"],[0,5,1,"","ImageConfigImageOutputOptions"],[0,0,1,"","ImageConfigImageOutputOptionsDict"],[0,0,1,"","ImageDict"],[0,0,1,"","ImagePromptLanguage"],[0,0,1,"","ImageResizeMode"],[0,5,1,"","ImageResponseFormat"],[0,0,1,"","ImageResponseFormatDict"],[0,5,1,"","ImageSearch"],[0,0,1,"","ImageSearchDict"],[0,0,1,"","ImageSize"],[0,5,1,"","ImportFileConfig"],[0,0,1,"","ImportFileConfigDict"],[0,5,1,"","ImportFileOperation"],[0,5,1,"","ImportFileResponse"],[0,0,1,"","ImportFileResponseDict"],[0,5,1,"","InlinedEmbedContentResponse"],[0,0,1,"","InlinedEmbedContentResponseDict"],[0,5,1,"","InlinedRequest"],[0,0,1,"","InlinedRequestDict"],[0,5,1,"","InlinedResponse"],[0,0,1,"","InlinedResponseDict"],[0,5,1,"","Interval"],[0,0,1,"","IntervalDict"],[0,5,1,"","JSONSchema"],[0,0,1,"","JSONSchemaType"],[0,5,1,"","JobError"],[0,0,1,"","JobErrorDict"],[0,0,1,"","JobState"],[0,5,1,"","LLMBasedMetricSpec"],[0,0,1,"","LLMBasedMetricSpecDict"],[0,0,1,"","Language"],[0,5,1,"","LanguageAuto"],[0,0,1,"","LanguageAutoDict"],[0,5,1,"","LanguageHints"],[0,0,1,"","LanguageHintsDict"],[0,5,1,"","LatLng"],[0,0,1,"","LatLngDict"],[0,5,1,"","ListBatchJobsConfig"],[0,0,1,"","ListBatchJobsConfigDict"],[0,5,1,"","ListBatchJobsResponse"],[0,0,1,"","ListBatchJobsResponseDict"],[0,5,1,"","ListCachedContentsConfig"],[0,0,1,"","ListCachedContentsConfigDict"],[0,5,1,"","ListCachedContentsResponse"],[0,0,1,"","ListCachedContentsResponseDict"],[0,5,1,"","ListDocumentsConfig"],[0,0,1,"","ListDocumentsConfigDict"],[0,5,1,"","ListDocumentsResponse"],[0,0,1,"","ListDocumentsResponseDict"],[0,5,1,"","ListFileSearchStoresConfig"],[0,0,1,"","ListFileSearchStoresConfigDict"],[0,5,1,"","ListFileSearchStoresResponse"],[0,0,1,"","ListFileSearchStoresResponseDict"],[0,5,1,"","ListFilesConfig"],[0,0,1,"","ListFilesConfigDict"],[0,5,1,"","ListFilesResponse"],[0,0,1,"","ListFilesResponseDict"],[0,5,1,"","ListModelsConfig"],[0,0,1,"","ListModelsConfigDict"],[0,5,1,"","ListModelsResponse"],[0,0,1,"","ListModelsResponseDict"],[0,5,1,"","ListTuningJobsConfig"],[0,0,1,"","ListTuningJobsConfigDict"],[0,5,1,"","ListTuningJobsResponse"],[0,0,1,"","ListTuningJobsResponseDict"],[0,5,1,"","LiveClientContent"],[0,0,1,"","LiveClientContentDict"],[0,5,1,"","LiveClientMessage"],[0,0,1,"","LiveClientMessageDict"],[0,5,1,"","LiveClientRealtimeInput"],[0,0,1,"","LiveClientRealtimeInputDict"],[0,5,1,"","LiveClientSetup"],[0,0,1,"","LiveClientSetupDict"],[0,5,1,"","LiveClientToolResponse"],[0,0,1,"","LiveClientToolResponseDict"],[0,5,1,"","LiveConnectConfig"],[0,0,1,"","LiveConnectConfigDict"],[0,5,1,"","LiveConnectConstraints"],[0,0,1,"","LiveConnectConstraintsDict"],[0,5,1,"","LiveConnectParameters"],[0,0,1,"","LiveConnectParametersDict"],[0,5,1,"","LiveMusicClientContent"],[0,0,1,"","LiveMusicClientContentDict"],[0,5,1,"","LiveMusicClientMessage"],[0,0,1,"","LiveMusicClientMessageDict"],[0,5,1,"","LiveMusicClientSetup"],[0,0,1,"","LiveMusicClientSetupDict"],[0,5,1,"","LiveMusicConnectParameters"],[0,0,1,"","LiveMusicConnectParametersDict"],[0,5,1,"","LiveMusicFilteredPrompt"],[0,0,1,"","LiveMusicFilteredPromptDict"],[0,5,1,"","LiveMusicGenerationConfig"],[0,0,1,"","LiveMusicGenerationConfigDict"],[0,0,1,"","LiveMusicPlaybackControl"],[0,5,1,"","LiveMusicServerContent"],[0,0,1,"","LiveMusicServerContentDict"],[0,5,1,"","LiveMusicServerMessage"],[0,0,1,"","LiveMusicServerMessageDict"],[0,5,1,"","LiveMusicServerSetupComplete"],[0,0,1,"","LiveMusicServerSetupCompleteDict"],[0,5,1,"","LiveMusicSetConfigParameters"],[0,0,1,"","LiveMusicSetConfigParametersDict"],[0,5,1,"","LiveMusicSetWeightedPromptsParameters"],[0,0,1,"","LiveMusicSetWeightedPromptsParametersDict"],[0,5,1,"","LiveMusicSourceMetadata"],[0,0,1,"","LiveMusicSourceMetadataDict"],[0,5,1,"","LiveSendRealtimeInputParameters"],[0,0,1,"","LiveSendRealtimeInputParametersDict"],[0,5,1,"","LiveServerContent"],[0,0,1,"","LiveServerContentDict"],[0,5,1,"","LiveServerGoAway"],[0,0,1,"","LiveServerGoAwayDict"],[0,5,1,"","LiveServerMessage"],[0,0,1,"","LiveServerMessageDict"],[0,5,1,"","LiveServerSessionResumptionUpdate"],[0,0,1,"","LiveServerSessionResumptionUpdateDict"],[0,5,1,"","LiveServerSetupComplete"],[0,0,1,"","LiveServerSetupCompleteDict"],[0,5,1,"","LiveServerToolCall"],[0,5,1,"","LiveServerToolCallCancellation"],[0,0,1,"","LiveServerToolCallCancellationDict"],[0,0,1,"","LiveServerToolCallDict"],[0,5,1,"","LogprobsResult"],[0,5,1,"","LogprobsResultCandidate"],[0,0,1,"","LogprobsResultCandidateDict"],[0,0,1,"","LogprobsResultDict"],[0,5,1,"","LogprobsResultTopCandidates"],[0,0,1,"","LogprobsResultTopCandidatesDict"],[0,5,1,"","MaskReferenceConfig"],[0,0,1,"","MaskReferenceConfigDict"],[0,5,1,"","MaskReferenceImage"],[0,0,1,"","MaskReferenceImageDict"],[0,0,1,"","MaskReferenceMode"],[0,0,1,"","MatchOperation"],[0,5,1,"","McpServer"],[0,0,1,"","McpServerDict"],[0,0,1,"","MediaModality"],[0,0,1,"","MediaResolution"],[0,5,1,"","Metric"],[0,0,1,"","MetricDict"],[0,0,1,"","Modality"],[0,5,1,"","ModalityTokenCount"],[0,0,1,"","ModalityTokenCountDict"],[0,5,1,"","Model"],[0,5,1,"","ModelArmorConfig"],[0,0,1,"","ModelArmorConfigDict"],[0,5,1,"","ModelContent"],[0,0,1,"","ModelDict"],[0,5,1,"","ModelSelectionConfig"],[0,0,1,"","ModelSelectionConfigDict"],[0,0,1,"","ModelStage"],[0,5,1,"","ModelStatus"],[0,0,1,"","ModelStatusDict"],[0,5,1,"","MultiSpeakerVoiceConfig"],[0,0,1,"","MultiSpeakerVoiceConfigDict"],[0,0,1,"","MusicGenerationMode"],[0,0,1,"","Operation"],[0,0,1,"","Outcome"],[0,5,1,"","OutputConfig"],[0,0,1,"","OutputConfigDict"],[0,5,1,"","OutputInfo"],[0,0,1,"","OutputInfoDict"],[0,0,1,"","PairwiseChoice"],[0,5,1,"","PairwiseMetricResult"],[0,0,1,"","PairwiseMetricResultDict"],[0,5,1,"","PairwiseMetricSpec"],[0,0,1,"","PairwiseMetricSpecDict"],[0,5,1,"","Part"],[0,0,1,"","PartDict"],[0,5,1,"","PartMediaResolution"],[0,0,1,"","PartMediaResolutionDict"],[0,0,1,"","PartMediaResolutionLevel"],[0,5,1,"","PartialArg"],[0,0,1,"","PartialArgDict"],[0,5,1,"","PartnerModelTuningSpec"],[0,0,1,"","PartnerModelTuningSpecDict"],[0,0,1,"","PersonGeneration"],[0,0,1,"","PhishBlockThreshold"],[0,5,1,"","PointwiseMetricResult"],[0,0,1,"","PointwiseMetricResultDict"],[0,5,1,"","PointwiseMetricSpec"],[0,0,1,"","PointwiseMetricSpecDict"],[0,5,1,"","PreTunedModel"],[0,0,1,"","PreTunedModelDict"],[0,5,1,"","PrebuiltVoiceConfig"],[0,0,1,"","PrebuiltVoiceConfigDict"],[0,5,1,"","PredefinedMetricSpec"],[0,0,1,"","PredefinedMetricSpecDict"],[0,5,1,"","PreferenceOptimizationDataStats"],[0,0,1,"","PreferenceOptimizationDataStatsDict"],[0,5,1,"","PreferenceOptimizationHyperParameters"],[0,0,1,"","PreferenceOptimizationHyperParametersDict"],[0,5,1,"","PreferenceOptimizationSpec"],[0,0,1,"","PreferenceOptimizationSpecDict"],[0,5,1,"","ProactivityConfig"],[0,0,1,"","ProactivityConfigDict"],[0,5,1,"","ProductImage"],[0,0,1,"","ProductImageDict"],[0,5,1,"","ProjectOperation"],[0,0,1,"","ProjectOperationDict"],[0,0,1,"","ProminentPeople"],[0,5,1,"","RagChunk"],[0,0,1,"","RagChunkDict"],[0,5,1,"","RagChunkPageSpan"],[0,0,1,"","RagChunkPageSpanDict"],[0,5,1,"","RagRetrievalConfig"],[0,0,1,"","RagRetrievalConfigDict"],[0,5,1,"","RagRetrievalConfigFilter"],[0,0,1,"","RagRetrievalConfigFilterDict"],[0,5,1,"","RagRetrievalConfigHybridSearch"],[0,0,1,"","RagRetrievalConfigHybridSearchDict"],[0,5,1,"","RagRetrievalConfigRanking"],[0,0,1,"","RagRetrievalConfigRankingDict"],[0,5,1,"","RagRetrievalConfigRankingLlmRanker"],[0,0,1,"","RagRetrievalConfigRankingLlmRankerDict"],[0,5,1,"","RagRetrievalConfigRankingRankService"],[0,0,1,"","RagRetrievalConfigRankingRankServiceDict"],[0,5,1,"","RawOutput"],[0,0,1,"","RawOutputDict"],[0,5,1,"","RawReferenceImage"],[0,0,1,"","RawReferenceImageDict"],[0,5,1,"","RealtimeInputConfig"],[0,0,1,"","RealtimeInputConfigDict"],[0,5,1,"","RecontextImageConfig"],[0,0,1,"","RecontextImageConfigDict"],[0,5,1,"","RecontextImageResponse"],[0,0,1,"","RecontextImageResponseDict"],[0,5,1,"","RecontextImageSource"],[0,0,1,"","RecontextImageSourceDict"],[0,5,1,"","RegisterFilesConfig"],[0,0,1,"","RegisterFilesConfigDict"],[0,5,1,"","RegisterFilesResponse"],[0,0,1,"","RegisterFilesResponseDict"],[0,5,1,"","ReinforcementTuningAutoraterScorer"],[0,0,1,"","ReinforcementTuningAutoraterScorerDict"],[0,5,1,"","ReinforcementTuningAutoraterScorerExactMatchScorer"],[0,0,1,"","ReinforcementTuningAutoraterScorerExactMatchScorerDict"],[0,5,1,"","ReinforcementTuningAutoraterScorerParsedResponseConversionScorer"],[0,0,1,"","ReinforcementTuningAutoraterScorerParsedResponseConversionScorerDict"],[0,5,1,"","ReinforcementTuningCloudRunRewardScorer"],[0,0,1,"","ReinforcementTuningCloudRunRewardScorerDict"],[0,5,1,"","ReinforcementTuningCodeExecutionRewardScorer"],[0,0,1,"","ReinforcementTuningCodeExecutionRewardScorerDict"],[0,5,1,"","ReinforcementTuningExample"],[0,0,1,"","ReinforcementTuningExampleDict"],[0,5,1,"","ReinforcementTuningHyperParameters"],[0,0,1,"","ReinforcementTuningHyperParametersDict"],[0,5,1,"","ReinforcementTuningParseResponseConfig"],[0,0,1,"","ReinforcementTuningParseResponseConfigDict"],[0,5,1,"","ReinforcementTuningRewardInfo"],[0,0,1,"","ReinforcementTuningRewardInfoDict"],[0,5,1,"","ReinforcementTuningSpec"],[0,0,1,"","ReinforcementTuningSpecDict"],[0,5,1,"","ReinforcementTuningStringMatchRewardScorer"],[0,0,1,"","ReinforcementTuningStringMatchRewardScorerDict"],[0,5,1,"","ReinforcementTuningStringMatchRewardScorerJsonMatchExpression"],[0,0,1,"","ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict"],[0,5,1,"","ReinforcementTuningStringMatchRewardScorerStringMatchExpression"],[0,0,1,"","ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict"],[0,0,1,"","ReinforcementTuningThinkingLevel"],[0,5,1,"","ReinforcementTuningUserDatasetExamples"],[0,0,1,"","ReinforcementTuningUserDatasetExamplesDict"],[0,5,1,"","ReplayFile"],[0,0,1,"","ReplayFileDict"],[0,5,1,"","ReplayInteraction"],[0,0,1,"","ReplayInteractionDict"],[0,5,1,"","ReplayRequest"],[0,0,1,"","ReplayRequestDict"],[0,5,1,"","ReplayResponse"],[0,0,1,"","ReplayResponseDict"],[0,5,1,"","ReplicatedVoiceConfig"],[0,0,1,"","ReplicatedVoiceConfigDict"],[0,0,1,"","ResourceScope"],[0,5,1,"","ResponseFormat"],[0,0,1,"","ResponseFormatDict"],[0,0,1,"","ResponseParseType"],[0,5,1,"","Retrieval"],[0,5,1,"","RetrievalConfig"],[0,0,1,"","RetrievalConfigDict"],[0,0,1,"","RetrievalDict"],[0,5,1,"","RetrievalMetadata"],[0,0,1,"","RetrievalMetadataDict"],[0,5,1,"","RougeMetricValue"],[0,0,1,"","RougeMetricValueDict"],[0,5,1,"","RougeSpec"],[0,0,1,"","RougeSpecDict"],[0,0,1,"","RubricContentType"],[0,5,1,"","RubricGenerationSpec"],[0,0,1,"","RubricGenerationSpecDict"],[0,5,1,"","SafetyAttributes"],[0,0,1,"","SafetyAttributesDict"],[0,0,1,"","SafetyFilterLevel"],[0,0,1,"","SafetyPolicy"],[0,5,1,"","SafetyRating"],[0,0,1,"","SafetyRatingDict"],[0,5,1,"","SafetySetting"],[0,0,1,"","SafetySettingDict"],[0,0,1,"","Scale"],[0,5,1,"","Schema"],[0,0,1,"","SchemaDict"],[0,5,1,"","ScribbleImage"],[0,0,1,"","ScribbleImageDict"],[0,5,1,"","SearchEntryPoint"],[0,0,1,"","SearchEntryPointDict"],[0,5,1,"","SearchTypes"],[0,0,1,"","SearchTypesDict"],[0,5,1,"","Segment"],[0,0,1,"","SegmentDict"],[0,5,1,"","SegmentImageConfig"],[0,0,1,"","SegmentImageConfigDict"],[0,5,1,"","SegmentImageResponse"],[0,0,1,"","SegmentImageResponseDict"],[0,5,1,"","SegmentImageSource"],[0,0,1,"","SegmentImageSourceDict"],[0,0,1,"","SegmentMode"],[0,0,1,"","ServiceTier"],[0,5,1,"","SessionResumptionConfig"],[0,0,1,"","SessionResumptionConfigDict"],[0,5,1,"","SingleEmbedContentResponse"],[0,0,1,"","SingleEmbedContentResponseDict"],[0,5,1,"","SingleReinforcementTuningRewardConfig"],[0,0,1,"","SingleReinforcementTuningRewardConfigDict"],[0,5,1,"","SlidingWindow"],[0,0,1,"","SlidingWindowDict"],[0,5,1,"","SpeakerVoiceConfig"],[0,0,1,"","SpeakerVoiceConfigDict"],[0,5,1,"","SpeechConfig"],[0,0,1,"","SpeechConfigDict"],[0,0,1,"","StartSensitivity"],[0,5,1,"","StreamableHttpTransport"],[0,0,1,"","StreamableHttpTransportDict"],[0,5,1,"","StringList"],[0,0,1,"","StringListDict"],[0,5,1,"","StyleReferenceConfig"],[0,0,1,"","StyleReferenceConfigDict"],[0,5,1,"","StyleReferenceImage"],[0,0,1,"","StyleReferenceImageDict"],[0,5,1,"","SubjectReferenceConfig"],[0,0,1,"","SubjectReferenceConfigDict"],[0,5,1,"","SubjectReferenceImage"],[0,0,1,"","SubjectReferenceImageDict"],[0,0,1,"","SubjectReferenceType"],[0,5,1,"","SupervisedHyperParameters"],[0,0,1,"","SupervisedHyperParametersDict"],[0,5,1,"","SupervisedTuningDataStats"],[0,0,1,"","SupervisedTuningDataStatsDict"],[0,5,1,"","SupervisedTuningDatasetDistribution"],[0,5,1,"","SupervisedTuningDatasetDistributionDatasetBucket"],[0,0,1,"","SupervisedTuningDatasetDistributionDatasetBucketDict"],[0,0,1,"","SupervisedTuningDatasetDistributionDict"],[0,5,1,"","SupervisedTuningSpec"],[0,0,1,"","SupervisedTuningSpecDict"],[0,5,1,"","TestTableFile"],[0,0,1,"","TestTableFileDict"],[0,5,1,"","TestTableItem"],[0,0,1,"","TestTableItemDict"],[0,5,1,"","TextResponseFormat"],[0,0,1,"","TextResponseFormatDict"],[0,5,1,"","ThinkingConfig"],[0,0,1,"","ThinkingConfigDict"],[0,0,1,"","ThinkingLevel"],[0,5,1,"","TokensInfo"],[0,0,1,"","TokensInfoDict"],[0,5,1,"","Tool"],[0,5,1,"","ToolCall"],[0,0,1,"","ToolCallDict"],[0,5,1,"","ToolCodeExecution"],[0,0,1,"","ToolCodeExecutionDict"],[0,5,1,"","ToolConfig"],[0,0,1,"","ToolConfigDict"],[0,0,1,"","ToolDict"],[0,5,1,"","ToolExaAiSearch"],[0,0,1,"","ToolExaAiSearchDict"],[0,5,1,"","ToolParallelAiSearch"],[0,0,1,"","ToolParallelAiSearchDict"],[0,5,1,"","ToolResponse"],[0,0,1,"","ToolResponseDict"],[0,0,1,"","ToolType"],[0,0,1,"","TrafficType"],[0,5,1,"","Transcription"],[0,0,1,"","TranscriptionDict"],[0,5,1,"","TranslationConfig"],[0,0,1,"","TranslationConfigDict"],[0,5,1,"","TunedModel"],[0,5,1,"","TunedModelCheckpoint"],[0,0,1,"","TunedModelCheckpointDict"],[0,0,1,"","TunedModelDict"],[0,5,1,"","TunedModelInfo"],[0,0,1,"","TunedModelInfoDict"],[0,5,1,"","TuningDataStats"],[0,0,1,"","TuningDataStatsDict"],[0,5,1,"","TuningDataset"],[0,0,1,"","TuningDatasetDict"],[0,5,1,"","TuningExample"],[0,0,1,"","TuningExampleDict"],[0,5,1,"","TuningJob"],[0,0,1,"","TuningJobDict"],[0,5,1,"","TuningJobMetadata"],[0,0,1,"","TuningJobMetadataDict"],[0,0,1,"","TuningJobState"],[0,0,1,"","TuningMethod"],[0,0,1,"","TuningMode"],[0,5,1,"","TuningOperation"],[0,0,1,"","TuningOperationDict"],[0,0,1,"","TuningSpeed"],[0,0,1,"","TuningTask"],[0,5,1,"","TuningValidationDataset"],[0,0,1,"","TuningValidationDatasetDict"],[0,0,1,"","TurnCompleteReason"],[0,0,1,"","TurnCoverage"],[0,0,1,"","Type"],[0,5,1,"","UnifiedMetric"],[0,0,1,"","UnifiedMetricDict"],[0,5,1,"","UpdateCachedContentConfig"],[0,0,1,"","UpdateCachedContentConfigDict"],[0,5,1,"","UpdateModelConfig"],[0,0,1,"","UpdateModelConfigDict"],[0,5,1,"","UploadFileConfig"],[0,0,1,"","UploadFileConfigDict"],[0,5,1,"","UploadToFileSearchStoreConfig"],[0,0,1,"","UploadToFileSearchStoreConfigDict"],[0,5,1,"","UploadToFileSearchStoreOperation"],[0,5,1,"","UploadToFileSearchStoreResponse"],[0,0,1,"","UploadToFileSearchStoreResponseDict"],[0,5,1,"","UploadToFileSearchStoreResumableResponse"],[0,0,1,"","UploadToFileSearchStoreResumableResponseDict"],[0,5,1,"","UpscaleImageConfig"],[0,0,1,"","UpscaleImageConfigDict"],[0,5,1,"","UpscaleImageParameters"],[0,0,1,"","UpscaleImageParametersDict"],[0,5,1,"","UpscaleImageResponse"],[0,0,1,"","UpscaleImageResponseDict"],[0,5,1,"","UrlContext"],[0,0,1,"","UrlContextDict"],[0,5,1,"","UrlContextMetadata"],[0,0,1,"","UrlContextMetadataDict"],[0,5,1,"","UrlMetadata"],[0,0,1,"","UrlMetadataDict"],[0,0,1,"","UrlRetrievalStatus"],[0,5,1,"","UsageMetadata"],[0,0,1,"","UsageMetadataDict"],[0,5,1,"","UserContent"],[0,0,1,"","VadSignalType"],[0,5,1,"","ValidateRewardConfig"],[0,0,1,"","ValidateRewardConfigDict"],[0,5,1,"","ValidateRewardResponse"],[0,0,1,"","ValidateRewardResponseDict"],[0,5,1,"","VeoHyperParameters"],[0,0,1,"","VeoHyperParametersDict"],[0,5,1,"","VeoLoraTuningSpec"],[0,0,1,"","VeoLoraTuningSpecDict"],[0,5,1,"","VeoTuningSpec"],[0,0,1,"","VeoTuningSpecDict"],[0,5,1,"","VertexAISearch"],[0,5,1,"","VertexAISearchDataStoreSpec"],[0,0,1,"","VertexAISearchDataStoreSpecDict"],[0,0,1,"","VertexAISearchDict"],[0,5,1,"","VertexMultimodalDatasetDestination"],[0,0,1,"","VertexMultimodalDatasetDestinationDict"],[0,5,1,"","VertexRagStore"],[0,0,1,"","VertexRagStoreDict"],[0,5,1,"","VertexRagStoreRagResource"],[0,0,1,"","VertexRagStoreRagResourceDict"],[0,5,1,"","Video"],[0,0,1,"","VideoCompressionQuality"],[0,0,1,"","VideoDict"],[0,5,1,"","VideoGenerationMask"],[0,0,1,"","VideoGenerationMaskDict"],[0,0,1,"","VideoGenerationMaskMode"],[0,5,1,"","VideoGenerationReferenceImage"],[0,0,1,"","VideoGenerationReferenceImageDict"],[0,0,1,"","VideoGenerationReferenceType"],[0,5,1,"","VideoMetadata"],[0,0,1,"","VideoMetadataDict"],[0,0,1,"","VideoOrientation"],[0,5,1,"","VideoResponseFormat"],[0,0,1,"","VideoResponseFormatDict"],[0,5,1,"","VoiceActivity"],[0,5,1,"","VoiceActivityDetectionSignal"],[0,0,1,"","VoiceActivityDetectionSignalDict"],[0,0,1,"","VoiceActivityDict"],[0,0,1,"","VoiceActivityType"],[0,5,1,"","VoiceConfig"],[0,0,1,"","VoiceConfigDict"],[0,5,1,"","VoiceConsentSignature"],[0,0,1,"","VoiceConsentSignatureDict"],[0,5,1,"","WebSearch"],[0,0,1,"","WebSearchDict"],[0,5,1,"","WebhookConfig"],[0,0,1,"","WebhookConfigDict"],[0,5,1,"","WeightedPrompt"],[0,0,1,"","WeightedPromptDict"],[0,5,1,"","WhiteSpaceConfig"],[0,0,1,"","WhiteSpaceConfigDict"],[0,5,1,"","WordInfo"],[0,0,1,"","WordInfoDict"]],"genai.types.ActivityHandling":[[0,4,1,"","ACTIVITY_HANDLING_UNSPECIFIED"],[0,4,1,"","NO_INTERRUPTION"],[0,4,1,"","START_OF_ACTIVITY_INTERRUPTS"]],"genai.types.AdapterSize":[[0,4,1,"","ADAPTER_SIZE_EIGHT"],[0,4,1,"","ADAPTER_SIZE_FOUR"],[0,4,1,"","ADAPTER_SIZE_ONE"],[0,4,1,"","ADAPTER_SIZE_SIXTEEN"],[0,4,1,"","ADAPTER_SIZE_THIRTY_TWO"],[0,4,1,"","ADAPTER_SIZE_TWO"],[0,4,1,"","ADAPTER_SIZE_UNSPECIFIED"]],"genai.types.AggregationMetric":[[0,4,1,"","AGGREGATION_METRIC_UNSPECIFIED"],[0,4,1,"","AVERAGE"],[0,4,1,"","MAXIMUM"],[0,4,1,"","MEDIAN"],[0,4,1,"","MINIMUM"],[0,4,1,"","MODE"],[0,4,1,"","PERCENTILE_P90"],[0,4,1,"","PERCENTILE_P95"],[0,4,1,"","PERCENTILE_P99"],[0,4,1,"","STANDARD_DEVIATION"],[0,4,1,"","VARIANCE"]],"genai.types.AggregationOutput":[[0,6,1,"","aggregation_results"],[0,6,1,"","dataset"]],"genai.types.AggregationOutputDict":[[0,4,1,"","aggregation_results"],[0,4,1,"","dataset"]],"genai.types.AggregationResult":[[0,6,1,"","aggregation_metric"],[0,6,1,"","bleu_metric_value"],[0,6,1,"","custom_code_execution_result"],[0,6,1,"","exact_match_metric_value"],[0,6,1,"","pairwise_metric_result"],[0,6,1,"","pointwise_metric_result"],[0,6,1,"","rouge_metric_value"]],"genai.types.AggregationResultDict":[[0,4,1,"","aggregation_metric"],[0,4,1,"","bleu_metric_value"],[0,4,1,"","custom_code_execution_result"],[0,4,1,"","exact_match_metric_value"],[0,4,1,"","pairwise_metric_result"],[0,4,1,"","pointwise_metric_result"],[0,4,1,"","rouge_metric_value"]],"genai.types.ApiAuth":[[0,6,1,"","api_key_config"]],"genai.types.ApiAuthApiKeyConfig":[[0,6,1,"","api_key_secret_version"],[0,6,1,"","api_key_string"]],"genai.types.ApiAuthApiKeyConfigDict":[[0,4,1,"","api_key_secret_version"],[0,4,1,"","api_key_string"]],"genai.types.ApiAuthDict":[[0,4,1,"","api_key_config"]],"genai.types.ApiKeyConfig":[[0,6,1,"","api_key_secret"],[0,6,1,"","api_key_string"],[0,6,1,"","http_element_location"],[0,6,1,"","name"]],"genai.types.ApiKeyConfigDict":[[0,4,1,"","api_key_secret"],[0,4,1,"","api_key_string"],[0,4,1,"","http_element_location"],[0,4,1,"","name"]],"genai.types.ApiSpec":[[0,4,1,"","API_SPEC_UNSPECIFIED"],[0,4,1,"","ELASTIC_SEARCH"],[0,4,1,"","SIMPLE_SEARCH"]],"genai.types.AspectRatio":[[0,4,1,"","ASPECT_RATIO_EIGHT_BY_ONE"],[0,4,1,"","ASPECT_RATIO_FIVE_BY_FOUR"],[0,4,1,"","ASPECT_RATIO_FOUR_BY_FIVE"],[0,4,1,"","ASPECT_RATIO_FOUR_BY_ONE"],[0,4,1,"","ASPECT_RATIO_FOUR_BY_THREE"],[0,4,1,"","ASPECT_RATIO_NINE_BY_SIXTEEN"],[0,4,1,"","ASPECT_RATIO_ONE_BY_EIGHT"],[0,4,1,"","ASPECT_RATIO_ONE_BY_FOUR"],[0,4,1,"","ASPECT_RATIO_ONE_BY_ONE"],[0,4,1,"","ASPECT_RATIO_SIXTEEN_BY_NINE"],[0,4,1,"","ASPECT_RATIO_THREE_BY_FOUR"],[0,4,1,"","ASPECT_RATIO_THREE_BY_TWO"],[0,4,1,"","ASPECT_RATIO_TWENTY_ONE_BY_NINE"],[0,4,1,"","ASPECT_RATIO_TWO_BY_THREE"],[0,4,1,"","ASPECT_RATIO_UNSPECIFIED"]],"genai.types.AudioChunk":[[0,6,1,"","data"],[0,6,1,"","mime_type"],[0,6,1,"","source_metadata"]],"genai.types.AudioChunkDict":[[0,4,1,"","data"],[0,4,1,"","mime_type"],[0,4,1,"","source_metadata"]],"genai.types.AudioResponseFormat":[[0,6,1,"","bit_rate"],[0,6,1,"","delivery"],[0,6,1,"","mime_type"],[0,6,1,"","sample_rate"]],"genai.types.AudioResponseFormatDict":[[0,4,1,"","bit_rate"],[0,4,1,"","delivery"],[0,4,1,"","mime_type"],[0,4,1,"","sample_rate"]],"genai.types.AudioTranscriptionConfig":[[0,6,1,"","adaptation_phrases"],[0,6,1,"","custom_vocabulary"],[0,6,1,"","diarization"],[0,6,1,"","language_auto"],[0,6,1,"","language_codes"],[0,6,1,"","language_hints"],[0,6,1,"","word_timestamp"]],"genai.types.AudioTranscriptionConfigDict":[[0,4,1,"","adaptation_phrases"],[0,4,1,"","custom_vocabulary"],[0,4,1,"","diarization"],[0,4,1,"","language_auto"],[0,4,1,"","language_codes"],[0,4,1,"","language_hints"],[0,4,1,"","word_timestamp"]],"genai.types.AuthConfig":[[0,6,1,"","api_key"],[0,6,1,"","api_key_config"],[0,6,1,"","auth_type"],[0,6,1,"","google_service_account_config"],[0,6,1,"","http_basic_auth_config"],[0,6,1,"","oauth_config"],[0,6,1,"","oidc_config"]],"genai.types.AuthConfigDict":[[0,4,1,"","api_key"],[0,4,1,"","api_key_config"],[0,4,1,"","auth_type"],[0,4,1,"","google_service_account_config"],[0,4,1,"","http_basic_auth_config"],[0,4,1,"","oauth_config"],[0,4,1,"","oidc_config"]],"genai.types.AuthConfigGoogleServiceAccountConfig":[[0,6,1,"","service_account"]],"genai.types.AuthConfigGoogleServiceAccountConfigDict":[[0,4,1,"","service_account"]],"genai.types.AuthConfigHttpBasicAuthConfig":[[0,6,1,"","credential_secret"]],"genai.types.AuthConfigHttpBasicAuthConfigDict":[[0,4,1,"","credential_secret"]],"genai.types.AuthConfigOauthConfig":[[0,6,1,"","access_token"],[0,6,1,"","service_account"]],"genai.types.AuthConfigOauthConfigDict":[[0,4,1,"","access_token"],[0,4,1,"","service_account"]],"genai.types.AuthConfigOidcConfig":[[0,6,1,"","id_token"],[0,6,1,"","service_account"]],"genai.types.AuthConfigOidcConfigDict":[[0,4,1,"","id_token"],[0,4,1,"","service_account"]],"genai.types.AuthToken":[[0,6,1,"","name"]],"genai.types.AuthTokenDict":[[0,4,1,"","name"]],"genai.types.AuthType":[[0,4,1,"","API_KEY_AUTH"],[0,4,1,"","AUTH_TYPE_UNSPECIFIED"],[0,4,1,"","GOOGLE_SERVICE_ACCOUNT_AUTH"],[0,4,1,"","HTTP_BASIC_AUTH"],[0,4,1,"","NO_AUTH"],[0,4,1,"","OAUTH"],[0,4,1,"","OIDC_AUTH"]],"genai.types.AutomaticActivityDetection":[[0,6,1,"","disabled"],[0,6,1,"","end_of_speech_sensitivity"],[0,6,1,"","prefix_padding_ms"],[0,6,1,"","silence_duration_ms"],[0,6,1,"","start_of_speech_sensitivity"]],"genai.types.AutomaticActivityDetectionDict":[[0,4,1,"","disabled"],[0,4,1,"","end_of_speech_sensitivity"],[0,4,1,"","prefix_padding_ms"],[0,4,1,"","silence_duration_ms"],[0,4,1,"","start_of_speech_sensitivity"]],"genai.types.AutomaticFunctionCallingConfig":[[0,6,1,"","disable"],[0,6,1,"","ignore_call_history"],[0,6,1,"","maximum_remote_calls"]],"genai.types.AutomaticFunctionCallingConfigDict":[[0,4,1,"","disable"],[0,4,1,"","ignore_call_history"],[0,4,1,"","maximum_remote_calls"]],"genai.types.AutoraterConfig":[[0,6,1,"","autorater_model"],[0,6,1,"","flip_enabled"],[0,6,1,"","generation_config"],[0,6,1,"","sampling_count"]],"genai.types.AutoraterConfigDict":[[0,4,1,"","autorater_model"],[0,4,1,"","flip_enabled"],[0,4,1,"","generation_config"],[0,4,1,"","sampling_count"]],"genai.types.AvatarConfig":[[0,6,1,"","audio_bitrate_bps"],[0,6,1,"","avatar_name"],[0,6,1,"","customized_avatar"],[0,6,1,"","video_bitrate_bps"]],"genai.types.AvatarConfigDict":[[0,4,1,"","audio_bitrate_bps"],[0,4,1,"","avatar_name"],[0,4,1,"","customized_avatar"],[0,4,1,"","video_bitrate_bps"]],"genai.types.BatchJob":[[0,6,1,"","completion_stats"],[0,6,1,"","create_time"],[0,6,1,"","dest"],[0,6,1,"","display_name"],[0,2,1,"","done"],[0,6,1,"","end_time"],[0,6,1,"","error"],[0,6,1,"","model"],[0,6,1,"","name"],[0,6,1,"","output_info"],[0,6,1,"","src"],[0,6,1,"","start_time"],[0,6,1,"","state"],[0,6,1,"","update_time"]],"genai.types.BatchJobDestination":[[0,6,1,"","bigquery_uri"],[0,6,1,"","file_name"],[0,6,1,"","format"],[0,6,1,"","gcs_uri"],[0,6,1,"","inlined_embed_content_responses"],[0,6,1,"","inlined_responses"],[0,6,1,"","vertex_dataset"]],"genai.types.BatchJobDestinationDict":[[0,4,1,"","bigquery_uri"],[0,4,1,"","file_name"],[0,4,1,"","format"],[0,4,1,"","gcs_uri"],[0,4,1,"","inlined_embed_content_responses"],[0,4,1,"","inlined_responses"],[0,4,1,"","vertex_dataset"]],"genai.types.BatchJobDict":[[0,4,1,"","completion_stats"],[0,4,1,"","create_time"],[0,4,1,"","dest"],[0,4,1,"","display_name"],[0,4,1,"","end_time"],[0,4,1,"","error"],[0,4,1,"","model"],[0,4,1,"","name"],[0,4,1,"","output_info"],[0,4,1,"","src"],[0,4,1,"","start_time"],[0,4,1,"","state"],[0,4,1,"","update_time"]],"genai.types.BatchJobOutputInfo":[[0,6,1,"","bigquery_output_table"],[0,6,1,"","gcs_output_directory"],[0,6,1,"","vertex_multimodal_dataset_name"]],"genai.types.BatchJobOutputInfoDict":[[0,4,1,"","bigquery_output_table"],[0,4,1,"","gcs_output_directory"],[0,4,1,"","vertex_multimodal_dataset_name"]],"genai.types.BatchJobSource":[[0,6,1,"","bigquery_uri"],[0,6,1,"","file_name"],[0,6,1,"","format"],[0,6,1,"","gcs_uri"],[0,6,1,"","inlined_requests"],[0,6,1,"","vertex_dataset_name"]],"genai.types.BatchJobSourceDict":[[0,4,1,"","bigquery_uri"],[0,4,1,"","file_name"],[0,4,1,"","format"],[0,4,1,"","gcs_uri"],[0,4,1,"","inlined_requests"],[0,4,1,"","vertex_dataset_name"]],"genai.types.Behavior":[[0,4,1,"","BLOCKING"],[0,4,1,"","NON_BLOCKING"],[0,4,1,"","UNSPECIFIED"]],"genai.types.BigQuerySource":[[0,6,1,"","input_uri"]],"genai.types.BigQuerySourceDict":[[0,4,1,"","input_uri"]],"genai.types.BleuMetricValue":[[0,6,1,"","score"]],"genai.types.BleuMetricValueDict":[[0,4,1,"","score"]],"genai.types.BleuSpec":[[0,6,1,"","use_effective_order"]],"genai.types.BleuSpecDict":[[0,4,1,"","use_effective_order"]],"genai.types.Blob":[[0,1,1,"","as_image"],[0,6,1,"","data"],[0,6,1,"","display_name"],[0,6,1,"","mime_type"]],"genai.types.BlobDict":[[0,4,1,"","data"],[0,4,1,"","display_name"],[0,4,1,"","mime_type"]],"genai.types.BlockedReason":[[0,4,1,"","BLOCKED_REASON_UNSPECIFIED"],[0,4,1,"","BLOCKLIST"],[0,4,1,"","IMAGE_SAFETY"],[0,4,1,"","JAILBREAK"],[0,4,1,"","MODEL_ARMOR"],[0,4,1,"","OTHER"],[0,4,1,"","PROHIBITED_CONTENT"],[0,4,1,"","SAFETY"]],"genai.types.CachedContent":[[0,6,1,"","create_time"],[0,6,1,"","display_name"],[0,6,1,"","expire_time"],[0,6,1,"","model"],[0,6,1,"","name"],[0,6,1,"","update_time"],[0,6,1,"","usage_metadata"]],"genai.types.CachedContentDict":[[0,4,1,"","create_time"],[0,4,1,"","display_name"],[0,4,1,"","expire_time"],[0,4,1,"","model"],[0,4,1,"","name"],[0,4,1,"","update_time"],[0,4,1,"","usage_metadata"]],"genai.types.CachedContentUsageMetadata":[[0,6,1,"","audio_duration_seconds"],[0,6,1,"","image_count"],[0,6,1,"","text_count"],[0,6,1,"","total_token_count"],[0,6,1,"","video_duration_seconds"]],"genai.types.CachedContentUsageMetadataDict":[[0,4,1,"","audio_duration_seconds"],[0,4,1,"","image_count"],[0,4,1,"","text_count"],[0,4,1,"","total_token_count"],[0,4,1,"","video_duration_seconds"]],"genai.types.CancelBatchJobConfig":[[0,6,1,"","http_options"]],"genai.types.CancelBatchJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.CancelTuningJobConfig":[[0,6,1,"","http_options"]],"genai.types.CancelTuningJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.CancelTuningJobResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.CancelTuningJobResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.Candidate":[[0,6,1,"","avg_logprobs"],[0,6,1,"","citation_metadata"],[0,6,1,"","content"],[0,6,1,"","finish_message"],[0,6,1,"","finish_reason"],[0,6,1,"","grounding_metadata"],[0,6,1,"","index"],[0,6,1,"","logprobs_result"],[0,6,1,"","safety_ratings"],[0,6,1,"","token_count"],[0,6,1,"","url_context_metadata"]],"genai.types.CandidateDict":[[0,4,1,"","avg_logprobs"],[0,4,1,"","citation_metadata"],[0,4,1,"","content"],[0,4,1,"","finish_message"],[0,4,1,"","finish_reason"],[0,4,1,"","grounding_metadata"],[0,4,1,"","index"],[0,4,1,"","logprobs_result"],[0,4,1,"","safety_ratings"],[0,4,1,"","token_count"],[0,4,1,"","url_context_metadata"]],"genai.types.Checkpoint":[[0,6,1,"","checkpoint_id"],[0,6,1,"","epoch"],[0,6,1,"","step"]],"genai.types.CheckpointDict":[[0,4,1,"","checkpoint_id"],[0,4,1,"","epoch"],[0,4,1,"","step"]],"genai.types.ChunkingConfig":[[0,6,1,"","white_space_config"]],"genai.types.ChunkingConfigDict":[[0,4,1,"","white_space_config"]],"genai.types.Citation":[[0,6,1,"","end_index"],[0,6,1,"","license"],[0,6,1,"","publication_date"],[0,6,1,"","start_index"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.CitationDict":[[0,4,1,"","end_index"],[0,4,1,"","license"],[0,4,1,"","publication_date"],[0,4,1,"","start_index"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.CitationMetadata":[[0,6,1,"","citations"]],"genai.types.CitationMetadataDict":[[0,4,1,"","citations"]],"genai.types.CodeExecutionResult":[[0,6,1,"","id"],[0,6,1,"","outcome"],[0,6,1,"","output"]],"genai.types.CodeExecutionResultDict":[[0,4,1,"","id"],[0,4,1,"","outcome"],[0,4,1,"","output"]],"genai.types.CompletionStats":[[0,6,1,"","failed_count"],[0,6,1,"","incomplete_count"],[0,6,1,"","successful_count"],[0,6,1,"","successful_forecast_point_count"]],"genai.types.CompletionStatsDict":[[0,4,1,"","failed_count"],[0,4,1,"","incomplete_count"],[0,4,1,"","successful_count"],[0,4,1,"","successful_forecast_point_count"]],"genai.types.CompositeReinforcementTuningRewardConfig":[[0,6,1,"","weighted_reward_configs"]],"genai.types.CompositeReinforcementTuningRewardConfigDict":[[0,4,1,"","weighted_reward_configs"]],"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfig":[[0,6,1,"","reward_config"],[0,6,1,"","weight"]],"genai.types.CompositeReinforcementTuningRewardConfigWeightedRewardConfigDict":[[0,4,1,"","reward_config"],[0,4,1,"","weight"]],"genai.types.ComputationBasedMetricSpec":[[0,6,1,"","parameters"],[0,6,1,"","type"]],"genai.types.ComputationBasedMetricSpecDict":[[0,4,1,"","parameters"],[0,4,1,"","type"]],"genai.types.ComputationBasedMetricType":[[0,4,1,"","BLEU"],[0,4,1,"","COMPUTATION_BASED_METRIC_TYPE_UNSPECIFIED"],[0,4,1,"","EXACT_MATCH"],[0,4,1,"","ROUGE"]],"genai.types.ComputeTokensConfig":[[0,6,1,"","http_options"]],"genai.types.ComputeTokensConfigDict":[[0,4,1,"","http_options"]],"genai.types.ComputeTokensResponse":[[0,6,1,"","sdk_http_response"],[0,6,1,"","tokens_info"]],"genai.types.ComputeTokensResponseDict":[[0,4,1,"","sdk_http_response"],[0,4,1,"","tokens_info"]],"genai.types.ComputeTokensResult":[[0,6,1,"","tokens_info"]],"genai.types.ComputeTokensResultDict":[[0,4,1,"","tokens_info"]],"genai.types.ComputerUse":[[0,6,1,"","disabled_safety_policies"],[0,6,1,"","enable_prompt_injection_detection"],[0,6,1,"","environment"],[0,6,1,"","excluded_predefined_functions"]],"genai.types.ComputerUseDict":[[0,4,1,"","disabled_safety_policies"],[0,4,1,"","enable_prompt_injection_detection"],[0,4,1,"","environment"],[0,4,1,"","excluded_predefined_functions"]],"genai.types.Content":[[0,6,1,"","parts"],[0,6,1,"","role"]],"genai.types.ContentDict":[[0,4,1,"","parts"],[0,4,1,"","role"]],"genai.types.ContentEmbedding":[[0,6,1,"","statistics"],[0,6,1,"","values"]],"genai.types.ContentEmbeddingDict":[[0,4,1,"","statistics"]],"genai.types.ContentEmbeddingStatistics":[[0,6,1,"","token_count"],[0,6,1,"","tokens_details"],[0,6,1,"","truncated"]],"genai.types.ContentEmbeddingStatisticsDict":[[0,4,1,"","token_count"],[0,4,1,"","tokens_details"],[0,4,1,"","truncated"]],"genai.types.ContentReferenceImage":[[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.ContentReferenceImageDict":[[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.ContextWindowCompressionConfig":[[0,6,1,"","sliding_window"],[0,6,1,"","trigger_tokens"]],"genai.types.ContextWindowCompressionConfigDict":[[0,4,1,"","sliding_window"],[0,4,1,"","trigger_tokens"]],"genai.types.ControlReferenceConfig":[[0,6,1,"","control_type"],[0,6,1,"","enable_control_image_computation"]],"genai.types.ControlReferenceConfigDict":[[0,4,1,"","control_type"],[0,4,1,"","enable_control_image_computation"]],"genai.types.ControlReferenceImage":[[0,6,1,"","config"],[0,6,1,"","control_image_config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.ControlReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.ControlReferenceType":[[0,4,1,"","CONTROL_TYPE_CANNY"],[0,4,1,"","CONTROL_TYPE_DEFAULT"],[0,4,1,"","CONTROL_TYPE_FACE_MESH"],[0,4,1,"","CONTROL_TYPE_SCRIBBLE"]],"genai.types.CountTokensConfig":[[0,6,1,"","generation_config"],[0,6,1,"","http_options"],[0,6,1,"","system_instruction"],[0,6,1,"","tools"]],"genai.types.CountTokensConfigDict":[[0,4,1,"","generation_config"],[0,4,1,"","http_options"],[0,4,1,"","system_instruction"],[0,4,1,"","tools"]],"genai.types.CountTokensResponse":[[0,6,1,"","cached_content_token_count"],[0,6,1,"","sdk_http_response"],[0,6,1,"","total_tokens"]],"genai.types.CountTokensResponseDict":[[0,4,1,"","cached_content_token_count"],[0,4,1,"","sdk_http_response"],[0,4,1,"","total_tokens"]],"genai.types.CountTokensResult":[[0,6,1,"","total_tokens"]],"genai.types.CountTokensResultDict":[[0,4,1,"","total_tokens"]],"genai.types.CreateAuthTokenConfig":[[0,6,1,"","expire_time"],[0,6,1,"","http_options"],[0,6,1,"","live_connect_constraints"],[0,6,1,"","lock_additional_fields"],[0,6,1,"","new_session_expire_time"],[0,6,1,"","uses"]],"genai.types.CreateAuthTokenConfigDict":[[0,4,1,"","expire_time"],[0,4,1,"","http_options"],[0,4,1,"","live_connect_constraints"],[0,4,1,"","lock_additional_fields"],[0,4,1,"","new_session_expire_time"],[0,4,1,"","uses"]],"genai.types.CreateAuthTokenParameters":[[0,6,1,"","config"]],"genai.types.CreateAuthTokenParametersDict":[[0,4,1,"","config"]],"genai.types.CreateBatchJobConfig":[[0,6,1,"","dest"],[0,6,1,"","display_name"],[0,6,1,"","http_options"],[0,6,1,"","webhook_config"]],"genai.types.CreateBatchJobConfigDict":[[0,4,1,"","dest"],[0,4,1,"","display_name"],[0,4,1,"","http_options"],[0,4,1,"","webhook_config"]],"genai.types.CreateCachedContentConfig":[[0,6,1,"","contents"],[0,6,1,"","display_name"],[0,6,1,"","expire_time"],[0,6,1,"","http_options"],[0,6,1,"","kms_key_name"],[0,6,1,"","system_instruction"],[0,6,1,"","tool_config"],[0,6,1,"","tools"],[0,6,1,"","ttl"]],"genai.types.CreateCachedContentConfigDict":[[0,4,1,"","contents"],[0,4,1,"","display_name"],[0,4,1,"","expire_time"],[0,4,1,"","http_options"],[0,4,1,"","kms_key_name"],[0,4,1,"","system_instruction"],[0,4,1,"","tool_config"],[0,4,1,"","tools"],[0,4,1,"","ttl"]],"genai.types.CreateEmbeddingsBatchJobConfig":[[0,6,1,"","display_name"],[0,6,1,"","http_options"]],"genai.types.CreateEmbeddingsBatchJobConfigDict":[[0,4,1,"","display_name"],[0,4,1,"","http_options"]],"genai.types.CreateFileConfig":[[0,6,1,"","http_options"],[0,6,1,"","should_return_http_response"]],"genai.types.CreateFileConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","should_return_http_response"]],"genai.types.CreateFileResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.CreateFileResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.CreateFileSearchStoreConfig":[[0,6,1,"","display_name"],[0,6,1,"","embedding_model"],[0,6,1,"","http_options"]],"genai.types.CreateFileSearchStoreConfigDict":[[0,4,1,"","display_name"],[0,4,1,"","embedding_model"],[0,4,1,"","http_options"]],"genai.types.CreateTuningJobConfig":[[0,6,1,"","adapter_size"],[0,6,1,"","base_teacher_model"],[0,6,1,"","batch_size"],[0,6,1,"","beta"],[0,6,1,"","checkpoint_interval"],[0,6,1,"","composite_reward_config"],[0,6,1,"","custom_base_model"],[0,6,1,"","description"],[0,6,1,"","encryption_spec"],[0,6,1,"","epoch_count"],[0,6,1,"","evaluate_interval"],[0,6,1,"","evaluation_config"],[0,6,1,"","export_last_checkpoint_only"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","learning_rate"],[0,6,1,"","learning_rate_multiplier"],[0,6,1,"","max_output_tokens"],[0,6,1,"","method"],[0,6,1,"","output_uri"],[0,6,1,"","pre_tuned_model_checkpoint_id"],[0,6,1,"","reward_config"],[0,6,1,"","samples_per_prompt"],[0,6,1,"","sft_loss_weight_multiplier"],[0,6,1,"","thinking_level"],[0,6,1,"","tuned_model_display_name"],[0,6,1,"","tuned_teacher_model_source"],[0,6,1,"","tuning_mode"],[0,6,1,"","validation_dataset"],[0,6,1,"","validation_dataset_uri"]],"genai.types.CreateTuningJobConfigDict":[[0,4,1,"","adapter_size"],[0,4,1,"","base_teacher_model"],[0,4,1,"","batch_size"],[0,4,1,"","beta"],[0,4,1,"","checkpoint_interval"],[0,4,1,"","composite_reward_config"],[0,4,1,"","custom_base_model"],[0,4,1,"","description"],[0,4,1,"","encryption_spec"],[0,4,1,"","epoch_count"],[0,4,1,"","evaluate_interval"],[0,4,1,"","evaluation_config"],[0,4,1,"","export_last_checkpoint_only"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","learning_rate"],[0,4,1,"","learning_rate_multiplier"],[0,4,1,"","max_output_tokens"],[0,4,1,"","method"],[0,4,1,"","output_uri"],[0,4,1,"","pre_tuned_model_checkpoint_id"],[0,4,1,"","reward_config"],[0,4,1,"","samples_per_prompt"],[0,4,1,"","sft_loss_weight_multiplier"],[0,4,1,"","thinking_level"],[0,4,1,"","tuned_model_display_name"],[0,4,1,"","tuned_teacher_model_source"],[0,4,1,"","tuning_mode"],[0,4,1,"","validation_dataset"],[0,4,1,"","validation_dataset_uri"]],"genai.types.CreateTuningJobParameters":[[0,6,1,"","base_model"],[0,6,1,"","config"],[0,6,1,"","training_dataset"]],"genai.types.CreateTuningJobParametersDict":[[0,4,1,"","base_model"],[0,4,1,"","config"],[0,4,1,"","training_dataset"]],"genai.types.CustomCodeExecutionResult":[[0,6,1,"","score"]],"genai.types.CustomCodeExecutionResultDict":[[0,4,1,"","score"]],"genai.types.CustomCodeExecutionSpec":[[0,6,1,"","evaluation_function"]],"genai.types.CustomCodeExecutionSpecDict":[[0,4,1,"","evaluation_function"]],"genai.types.CustomMetadata":[[0,6,1,"","key"],[0,6,1,"","numeric_value"],[0,6,1,"","string_list_value"],[0,6,1,"","string_value"]],"genai.types.CustomMetadataDict":[[0,4,1,"","key"],[0,4,1,"","numeric_value"],[0,4,1,"","string_list_value"],[0,4,1,"","string_value"]],"genai.types.CustomOutput":[[0,6,1,"","raw_outputs"]],"genai.types.CustomOutputDict":[[0,4,1,"","raw_outputs"]],"genai.types.CustomOutputFormatConfig":[[0,6,1,"","return_raw_output"]],"genai.types.CustomOutputFormatConfigDict":[[0,4,1,"","return_raw_output"]],"genai.types.CustomizedAvatar":[[0,6,1,"","image_data"],[0,6,1,"","image_mime_type"]],"genai.types.CustomizedAvatarDict":[[0,4,1,"","image_data"],[0,4,1,"","image_mime_type"]],"genai.types.DatasetDistribution":[[0,6,1,"","buckets"],[0,6,1,"","max"],[0,6,1,"","mean"],[0,6,1,"","median"],[0,6,1,"","min"],[0,6,1,"","p5"],[0,6,1,"","p95"],[0,6,1,"","sum"]],"genai.types.DatasetDistributionDict":[[0,4,1,"","buckets"],[0,4,1,"","max"],[0,4,1,"","mean"],[0,4,1,"","median"],[0,4,1,"","min"],[0,4,1,"","p5"],[0,4,1,"","p95"],[0,4,1,"","sum"]],"genai.types.DatasetDistributionDistributionBucket":[[0,6,1,"","count"],[0,6,1,"","left"],[0,6,1,"","right"]],"genai.types.DatasetDistributionDistributionBucketDict":[[0,4,1,"","count"],[0,4,1,"","left"],[0,4,1,"","right"]],"genai.types.DatasetStats":[[0,6,1,"","contents_per_example_distribution"],[0,6,1,"","dropped_example_indices"],[0,6,1,"","dropped_example_reasons"],[0,6,1,"","reinforcement_tuning_user_dataset_examples"],[0,6,1,"","total_billable_character_count"],[0,6,1,"","total_billable_token_count"],[0,6,1,"","total_tuning_character_count"],[0,6,1,"","tuning_dataset_example_count"],[0,6,1,"","tuning_step_count"],[0,6,1,"","user_dataset_examples"],[0,6,1,"","user_input_token_distribution"],[0,6,1,"","user_message_per_example_distribution"],[0,6,1,"","user_output_token_distribution"]],"genai.types.DatasetStatsDict":[[0,4,1,"","contents_per_example_distribution"],[0,4,1,"","dropped_example_indices"],[0,4,1,"","dropped_example_reasons"],[0,4,1,"","reinforcement_tuning_user_dataset_examples"],[0,4,1,"","total_billable_character_count"],[0,4,1,"","total_billable_token_count"],[0,4,1,"","total_tuning_character_count"],[0,4,1,"","tuning_dataset_example_count"],[0,4,1,"","tuning_step_count"],[0,4,1,"","user_dataset_examples"],[0,4,1,"","user_input_token_distribution"],[0,4,1,"","user_message_per_example_distribution"],[0,4,1,"","user_output_token_distribution"]],"genai.types.DeleteBatchJobConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteBatchJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteCachedContentConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteCachedContentConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteCachedContentResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.DeleteCachedContentResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.DeleteDocumentConfig":[[0,6,1,"","force"],[0,6,1,"","http_options"]],"genai.types.DeleteDocumentConfigDict":[[0,4,1,"","force"],[0,4,1,"","http_options"]],"genai.types.DeleteFileConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteFileConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteFileResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.DeleteFileResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.DeleteFileSearchStoreConfig":[[0,6,1,"","force"],[0,6,1,"","http_options"]],"genai.types.DeleteFileSearchStoreConfigDict":[[0,4,1,"","force"],[0,4,1,"","http_options"]],"genai.types.DeleteModelConfig":[[0,6,1,"","http_options"]],"genai.types.DeleteModelConfigDict":[[0,4,1,"","http_options"]],"genai.types.DeleteModelResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.DeleteModelResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.DeleteResourceJob":[[0,6,1,"","done"],[0,6,1,"","error"],[0,6,1,"","name"],[0,6,1,"","sdk_http_response"]],"genai.types.DeleteResourceJobDict":[[0,4,1,"","done"],[0,4,1,"","error"],[0,4,1,"","name"],[0,4,1,"","sdk_http_response"]],"genai.types.Delivery":[[0,4,1,"","DELIVERY_UNSPECIFIED"],[0,4,1,"","INLINE"],[0,4,1,"","URI"]],"genai.types.DistillationDataStats":[[0,6,1,"","training_dataset_stats"]],"genai.types.DistillationDataStatsDict":[[0,4,1,"","training_dataset_stats"]],"genai.types.DistillationHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","batch_size"],[0,6,1,"","epoch_count"],[0,6,1,"","generation_config"],[0,6,1,"","learning_rate"],[0,6,1,"","learning_rate_multiplier"]],"genai.types.DistillationHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","batch_size"],[0,4,1,"","epoch_count"],[0,4,1,"","generation_config"],[0,4,1,"","learning_rate"],[0,4,1,"","learning_rate_multiplier"]],"genai.types.DistillationSamplingSpec":[[0,6,1,"","base_teacher_model"],[0,6,1,"","hyperparameters"],[0,6,1,"","prompt_dataset_uri"],[0,6,1,"","tuned_teacher_model_source"],[0,6,1,"","validation_dataset_uri"]],"genai.types.DistillationSamplingSpecDict":[[0,4,1,"","base_teacher_model"],[0,4,1,"","hyperparameters"],[0,4,1,"","prompt_dataset_uri"],[0,4,1,"","tuned_teacher_model_source"],[0,4,1,"","validation_dataset_uri"]],"genai.types.DistillationSpec":[[0,6,1,"","base_teacher_model"],[0,6,1,"","hyper_parameters"],[0,6,1,"","pipeline_root_directory"],[0,6,1,"","prompt_dataset_uri"],[0,6,1,"","student_model"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","tuned_teacher_model_source"],[0,6,1,"","tuning_mode"],[0,6,1,"","validation_dataset_uri"]],"genai.types.DistillationSpecDict":[[0,4,1,"","base_teacher_model"],[0,4,1,"","hyper_parameters"],[0,4,1,"","pipeline_root_directory"],[0,4,1,"","prompt_dataset_uri"],[0,4,1,"","student_model"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","tuned_teacher_model_source"],[0,4,1,"","tuning_mode"],[0,4,1,"","validation_dataset_uri"]],"genai.types.Document":[[0,6,1,"","create_time"],[0,6,1,"","custom_metadata"],[0,6,1,"","display_name"],[0,6,1,"","mime_type"],[0,6,1,"","name"],[0,6,1,"","size_bytes"],[0,6,1,"","state"],[0,6,1,"","update_time"]],"genai.types.DocumentDict":[[0,4,1,"","create_time"],[0,4,1,"","custom_metadata"],[0,4,1,"","display_name"],[0,4,1,"","mime_type"],[0,4,1,"","name"],[0,4,1,"","size_bytes"],[0,4,1,"","state"],[0,4,1,"","update_time"]],"genai.types.DocumentState":[[0,4,1,"","STATE_ACTIVE"],[0,4,1,"","STATE_FAILED"],[0,4,1,"","STATE_PENDING"],[0,4,1,"","STATE_UNSPECIFIED"]],"genai.types.DownloadFileConfig":[[0,6,1,"","http_options"]],"genai.types.DownloadFileConfigDict":[[0,4,1,"","http_options"]],"genai.types.DownloadMediaConfig":[[0,6,1,"","http_options"]],"genai.types.DownloadMediaConfigDict":[[0,4,1,"","http_options"]],"genai.types.DynamicRetrievalConfig":[[0,6,1,"","dynamic_threshold"],[0,6,1,"","mode"]],"genai.types.DynamicRetrievalConfigDict":[[0,4,1,"","dynamic_threshold"],[0,4,1,"","mode"]],"genai.types.DynamicRetrievalConfigMode":[[0,4,1,"","MODE_DYNAMIC"],[0,4,1,"","MODE_UNSPECIFIED"]],"genai.types.EditImageConfig":[[0,6,1,"","add_watermark"],[0,6,1,"","aspect_ratio"],[0,6,1,"","base_steps"],[0,6,1,"","edit_mode"],[0,6,1,"","guidance_scale"],[0,6,1,"","http_options"],[0,6,1,"","include_rai_reason"],[0,6,1,"","include_safety_attributes"],[0,6,1,"","labels"],[0,6,1,"","language"],[0,6,1,"","negative_prompt"],[0,6,1,"","number_of_images"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"],[0,6,1,"","seed"]],"genai.types.EditImageConfigDict":[[0,4,1,"","add_watermark"],[0,4,1,"","aspect_ratio"],[0,4,1,"","base_steps"],[0,4,1,"","edit_mode"],[0,4,1,"","guidance_scale"],[0,4,1,"","http_options"],[0,4,1,"","include_rai_reason"],[0,4,1,"","include_safety_attributes"],[0,4,1,"","labels"],[0,4,1,"","language"],[0,4,1,"","negative_prompt"],[0,4,1,"","number_of_images"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"],[0,4,1,"","seed"]],"genai.types.EditImageResponse":[[0,6,1,"","generated_images"],[0,6,1,"","sdk_http_response"]],"genai.types.EditImageResponseDict":[[0,4,1,"","generated_images"],[0,4,1,"","sdk_http_response"]],"genai.types.EditMode":[[0,4,1,"","EDIT_MODE_BGSWAP"],[0,4,1,"","EDIT_MODE_CONTROLLED_EDITING"],[0,4,1,"","EDIT_MODE_DEFAULT"],[0,4,1,"","EDIT_MODE_INPAINT_INSERTION"],[0,4,1,"","EDIT_MODE_INPAINT_REMOVAL"],[0,4,1,"","EDIT_MODE_OUTPAINT"],[0,4,1,"","EDIT_MODE_PRODUCT_IMAGE"],[0,4,1,"","EDIT_MODE_STYLE"]],"genai.types.EmbedContentBatch":[[0,6,1,"","config"],[0,6,1,"","contents"]],"genai.types.EmbedContentBatchDict":[[0,4,1,"","config"],[0,4,1,"","contents"]],"genai.types.EmbedContentConfig":[[0,6,1,"","audio_track_extraction"],[0,6,1,"","auto_truncate"],[0,6,1,"","document_ocr"],[0,6,1,"","http_options"],[0,6,1,"","mime_type"],[0,6,1,"","output_dimensionality"],[0,6,1,"","task_type"],[0,6,1,"","title"]],"genai.types.EmbedContentConfigDict":[[0,4,1,"","audio_track_extraction"],[0,4,1,"","auto_truncate"],[0,4,1,"","document_ocr"],[0,4,1,"","http_options"],[0,4,1,"","mime_type"],[0,4,1,"","output_dimensionality"],[0,4,1,"","task_type"],[0,4,1,"","title"]],"genai.types.EmbedContentMetadata":[[0,6,1,"","billable_character_count"]],"genai.types.EmbedContentMetadataDict":[[0,4,1,"","billable_character_count"]],"genai.types.EmbedContentParameters":[[0,6,1,"","config"],[0,6,1,"","contents"],[0,6,1,"","model"]],"genai.types.EmbedContentParametersDict":[[0,4,1,"","config"],[0,4,1,"","contents"],[0,4,1,"","model"]],"genai.types.EmbedContentResponse":[[0,6,1,"","embeddings"],[0,6,1,"","metadata"],[0,6,1,"","sdk_http_response"]],"genai.types.EmbedContentResponseDict":[[0,4,1,"","embeddings"],[0,4,1,"","metadata"],[0,4,1,"","sdk_http_response"]],"genai.types.EmbeddingApiType":[[0,4,1,"","EMBED_CONTENT"],[0,4,1,"","PREDICT"]],"genai.types.EmbeddingsBatchJobSource":[[0,6,1,"","file_name"],[0,6,1,"","inlined_requests"]],"genai.types.EmbeddingsBatchJobSourceDict":[[0,4,1,"","file_name"],[0,4,1,"","inlined_requests"]],"genai.types.EncryptionSpec":[[0,6,1,"","kms_key_name"]],"genai.types.EncryptionSpecDict":[[0,4,1,"","kms_key_name"]],"genai.types.EndSensitivity":[[0,4,1,"","END_SENSITIVITY_HIGH"],[0,4,1,"","END_SENSITIVITY_LOW"],[0,4,1,"","END_SENSITIVITY_UNSPECIFIED"]],"genai.types.Endpoint":[[0,6,1,"","deployed_model_id"],[0,6,1,"","name"]],"genai.types.EndpointDict":[[0,4,1,"","deployed_model_id"],[0,4,1,"","name"]],"genai.types.EnterpriseWebSearch":[[0,6,1,"","blocking_confidence"],[0,6,1,"","exclude_domains"]],"genai.types.EnterpriseWebSearchDict":[[0,4,1,"","blocking_confidence"],[0,4,1,"","exclude_domains"]],"genai.types.EntityLabel":[[0,6,1,"","label"],[0,6,1,"","score"]],"genai.types.EntityLabelDict":[[0,4,1,"","label"],[0,4,1,"","score"]],"genai.types.Environment":[[0,4,1,"","ENVIRONMENT_BROWSER"],[0,4,1,"","ENVIRONMENT_DESKTOP"],[0,4,1,"","ENVIRONMENT_MOBILE"],[0,4,1,"","ENVIRONMENT_UNSPECIFIED"]],"genai.types.EvaluateDatasetResponse":[[0,6,1,"","aggregation_output"],[0,6,1,"","output_info"]],"genai.types.EvaluateDatasetResponseDict":[[0,4,1,"","aggregation_output"],[0,4,1,"","output_info"]],"genai.types.EvaluateDatasetRun":[[0,6,1,"","checkpoint_id"],[0,6,1,"","error"],[0,6,1,"","evaluate_dataset_response"],[0,6,1,"","evaluation_run"],[0,6,1,"","operation_name"]],"genai.types.EvaluateDatasetRunDict":[[0,4,1,"","checkpoint_id"],[0,4,1,"","error"],[0,4,1,"","evaluate_dataset_response"],[0,4,1,"","evaluation_run"],[0,4,1,"","operation_name"]],"genai.types.EvaluationConfig":[[0,6,1,"","autorater_config"],[0,6,1,"","inference_generation_config"],[0,6,1,"","metrics"],[0,6,1,"","output_config"]],"genai.types.EvaluationConfigDict":[[0,4,1,"","autorater_config"],[0,4,1,"","inference_generation_config"],[0,4,1,"","metrics"],[0,4,1,"","output_config"]],"genai.types.EvaluationDataset":[[0,6,1,"","bigquery_source"],[0,6,1,"","gcs_source"]],"genai.types.EvaluationDatasetDict":[[0,4,1,"","bigquery_source"],[0,4,1,"","gcs_source"]],"genai.types.EvaluationParserConfig":[[0,6,1,"","custom_code_parser_config"]],"genai.types.EvaluationParserConfigCustomCodeParserConfig":[[0,6,1,"","parsing_function"]],"genai.types.EvaluationParserConfigCustomCodeParserConfigDict":[[0,4,1,"","parsing_function"]],"genai.types.EvaluationParserConfigDict":[[0,4,1,"","custom_code_parser_config"]],"genai.types.ExactMatchMetricValue":[[0,6,1,"","score"]],"genai.types.ExactMatchMetricValueDict":[[0,4,1,"","score"]],"genai.types.ExecutableCode":[[0,6,1,"","code"],[0,6,1,"","id"],[0,6,1,"","language"]],"genai.types.ExecutableCodeDict":[[0,4,1,"","code"],[0,4,1,"","id"],[0,4,1,"","language"]],"genai.types.ExternalApi":[[0,6,1,"","api_auth"],[0,6,1,"","api_spec"],[0,6,1,"","auth_config"],[0,6,1,"","elastic_search_params"],[0,6,1,"","endpoint"],[0,6,1,"","simple_search_params"]],"genai.types.ExternalApiDict":[[0,4,1,"","api_auth"],[0,4,1,"","api_spec"],[0,4,1,"","auth_config"],[0,4,1,"","elastic_search_params"],[0,4,1,"","endpoint"],[0,4,1,"","simple_search_params"]],"genai.types.ExternalApiElasticSearchParams":[[0,6,1,"","index"],[0,6,1,"","num_hits"],[0,6,1,"","search_template"]],"genai.types.ExternalApiElasticSearchParamsDict":[[0,4,1,"","index"],[0,4,1,"","num_hits"],[0,4,1,"","search_template"]],"genai.types.FeatureSelectionPreference":[[0,4,1,"","BALANCED"],[0,4,1,"","FEATURE_SELECTION_PREFERENCE_UNSPECIFIED"],[0,4,1,"","PRIORITIZE_COST"],[0,4,1,"","PRIORITIZE_QUALITY"]],"genai.types.FetchPredictOperationConfig":[[0,6,1,"","http_options"]],"genai.types.FetchPredictOperationConfigDict":[[0,4,1,"","http_options"]],"genai.types.File":[[0,6,1,"","create_time"],[0,6,1,"","display_name"],[0,6,1,"","download_uri"],[0,6,1,"","error"],[0,6,1,"","expiration_time"],[0,6,1,"","mime_type"],[0,6,1,"","name"],[0,6,1,"","sha256_hash"],[0,6,1,"","size_bytes"],[0,6,1,"","source"],[0,6,1,"","state"],[0,6,1,"","update_time"],[0,6,1,"","uri"],[0,6,1,"","video_metadata"]],"genai.types.FileData":[[0,6,1,"","display_name"],[0,6,1,"","file_uri"],[0,6,1,"","mime_type"]],"genai.types.FileDataDict":[[0,4,1,"","display_name"],[0,4,1,"","file_uri"],[0,4,1,"","mime_type"]],"genai.types.FileDict":[[0,4,1,"","create_time"],[0,4,1,"","display_name"],[0,4,1,"","download_uri"],[0,4,1,"","error"],[0,4,1,"","expiration_time"],[0,4,1,"","mime_type"],[0,4,1,"","name"],[0,4,1,"","sha256_hash"],[0,4,1,"","size_bytes"],[0,4,1,"","source"],[0,4,1,"","state"],[0,4,1,"","update_time"],[0,4,1,"","uri"],[0,4,1,"","video_metadata"]],"genai.types.FileSearch":[[0,6,1,"","file_search_store_names"],[0,6,1,"","metadata_filter"],[0,6,1,"","top_k"]],"genai.types.FileSearchDict":[[0,4,1,"","file_search_store_names"],[0,4,1,"","metadata_filter"],[0,4,1,"","top_k"]],"genai.types.FileSearchStore":[[0,6,1,"","active_documents_count"],[0,6,1,"","create_time"],[0,6,1,"","display_name"],[0,6,1,"","embedding_model"],[0,6,1,"","failed_documents_count"],[0,6,1,"","name"],[0,6,1,"","pending_documents_count"],[0,6,1,"","size_bytes"],[0,6,1,"","update_time"]],"genai.types.FileSearchStoreDict":[[0,4,1,"","active_documents_count"],[0,4,1,"","create_time"],[0,4,1,"","display_name"],[0,4,1,"","embedding_model"],[0,4,1,"","failed_documents_count"],[0,4,1,"","name"],[0,4,1,"","pending_documents_count"],[0,4,1,"","size_bytes"],[0,4,1,"","update_time"]],"genai.types.FileSource":[[0,4,1,"","GENERATED"],[0,4,1,"","REGISTERED"],[0,4,1,"","SOURCE_UNSPECIFIED"],[0,4,1,"","UPLOADED"]],"genai.types.FileState":[[0,4,1,"","ACTIVE"],[0,4,1,"","FAILED"],[0,4,1,"","PROCESSING"],[0,4,1,"","STATE_UNSPECIFIED"]],"genai.types.FileStatus":[[0,6,1,"","code"],[0,6,1,"","details"],[0,6,1,"","message"]],"genai.types.FileStatusDict":[[0,4,1,"","code"],[0,4,1,"","details"],[0,4,1,"","message"]],"genai.types.FinishReason":[[0,4,1,"","BLOCKLIST"],[0,4,1,"","FINISH_REASON_UNSPECIFIED"],[0,4,1,"","IMAGE_OTHER"],[0,4,1,"","IMAGE_PROHIBITED_CONTENT"],[0,4,1,"","IMAGE_RECITATION"],[0,4,1,"","IMAGE_SAFETY"],[0,4,1,"","LANGUAGE"],[0,4,1,"","MALFORMED_FUNCTION_CALL"],[0,4,1,"","MAX_TOKENS"],[0,4,1,"","NO_IMAGE"],[0,4,1,"","OTHER"],[0,4,1,"","PROHIBITED_CONTENT"],[0,4,1,"","RECITATION"],[0,4,1,"","SAFETY"],[0,4,1,"","SPII"],[0,4,1,"","STOP"],[0,4,1,"","TOO_MANY_TOOL_CALLS"],[0,4,1,"","UNEXPECTED_TOOL_CALL"]],"genai.types.FullFineTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.FullFineTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.FunctionCall":[[0,6,1,"","args"],[0,6,1,"","id"],[0,6,1,"","name"],[0,6,1,"","partial_args"],[0,6,1,"","will_continue"]],"genai.types.FunctionCallDict":[[0,4,1,"","args"],[0,4,1,"","id"],[0,4,1,"","name"],[0,4,1,"","partial_args"],[0,4,1,"","will_continue"]],"genai.types.FunctionCallingConfig":[[0,6,1,"","allowed_function_names"],[0,6,1,"","mode"],[0,6,1,"","stream_function_call_arguments"]],"genai.types.FunctionCallingConfigDict":[[0,4,1,"","allowed_function_names"],[0,4,1,"","mode"],[0,4,1,"","stream_function_call_arguments"]],"genai.types.FunctionCallingConfigMode":[[0,4,1,"","ANY"],[0,4,1,"","AUTO"],[0,4,1,"","MODE_UNSPECIFIED"],[0,4,1,"","NONE"],[0,4,1,"","VALIDATED"]],"genai.types.FunctionDeclaration":[[0,6,1,"","behavior"],[0,6,1,"","description"],[0,1,1,"","from_callable"],[0,1,1,"","from_callable_with_api_option"],[0,6,1,"","name"],[0,6,1,"","parameters"],[0,6,1,"","parameters_json_schema"],[0,6,1,"","response"],[0,6,1,"","response_json_schema"]],"genai.types.FunctionDeclarationDict":[[0,4,1,"","behavior"],[0,4,1,"","description"],[0,4,1,"","name"],[0,4,1,"","parameters"],[0,4,1,"","parameters_json_schema"],[0,4,1,"","response"],[0,4,1,"","response_json_schema"]],"genai.types.FunctionResponse":[[0,1,1,"","from_mcp_response"],[0,6,1,"","id"],[0,6,1,"","name"],[0,6,1,"","parts"],[0,6,1,"","response"],[0,6,1,"","scheduling"],[0,6,1,"","will_continue"]],"genai.types.FunctionResponseBlob":[[0,6,1,"","data"],[0,6,1,"","display_name"],[0,6,1,"","mime_type"]],"genai.types.FunctionResponseBlobDict":[[0,4,1,"","data"],[0,4,1,"","display_name"],[0,4,1,"","mime_type"]],"genai.types.FunctionResponseDict":[[0,4,1,"","id"],[0,4,1,"","name"],[0,4,1,"","parts"],[0,4,1,"","response"],[0,4,1,"","scheduling"],[0,4,1,"","will_continue"]],"genai.types.FunctionResponseFileData":[[0,6,1,"","display_name"],[0,6,1,"","file_uri"],[0,6,1,"","mime_type"]],"genai.types.FunctionResponseFileDataDict":[[0,4,1,"","display_name"],[0,4,1,"","file_uri"],[0,4,1,"","mime_type"]],"genai.types.FunctionResponsePart":[[0,6,1,"","file_data"],[0,1,1,"","from_bytes"],[0,1,1,"","from_uri"],[0,6,1,"","inline_data"]],"genai.types.FunctionResponsePartDict":[[0,4,1,"","file_data"],[0,4,1,"","inline_data"]],"genai.types.FunctionResponseScheduling":[[0,4,1,"","INTERRUPT"],[0,4,1,"","SCHEDULING_UNSPECIFIED"],[0,4,1,"","SILENT"],[0,4,1,"","WHEN_IDLE"]],"genai.types.GcsDestination":[[0,6,1,"","output_uri_prefix"]],"genai.types.GcsDestinationDict":[[0,4,1,"","output_uri_prefix"]],"genai.types.GcsSource":[[0,6,1,"","uris"]],"genai.types.GcsSourceDict":[[0,4,1,"","uris"]],"genai.types.GeminiPreferenceExample":[[0,6,1,"","completions"],[0,6,1,"","contents"]],"genai.types.GeminiPreferenceExampleCompletion":[[0,6,1,"","completion"],[0,6,1,"","score"]],"genai.types.GeminiPreferenceExampleCompletionDict":[[0,4,1,"","completion"],[0,4,1,"","score"]],"genai.types.GeminiPreferenceExampleDict":[[0,4,1,"","completions"],[0,4,1,"","contents"]],"genai.types.GenerateContentConfig":[[0,6,1,"","audio_timestamp"],[0,6,1,"","audio_transcription_config"],[0,6,1,"","automatic_function_calling"],[0,6,1,"","cached_content"],[0,6,1,"","candidate_count"],[0,6,1,"","enable_enhanced_civic_answers"],[0,6,1,"","frequency_penalty"],[0,6,1,"","http_options"],[0,6,1,"","image_config"],[0,6,1,"","labels"],[0,6,1,"","logprobs"],[0,6,1,"","max_output_tokens"],[0,6,1,"","media_resolution"],[0,6,1,"","model_armor_config"],[0,6,1,"","model_selection_config"],[0,6,1,"","presence_penalty"],[0,6,1,"","response_json_schema"],[0,6,1,"","response_logprobs"],[0,6,1,"","response_mime_type"],[0,6,1,"","response_modalities"],[0,6,1,"","response_schema"],[0,6,1,"","routing_config"],[0,6,1,"","safety_settings"],[0,6,1,"","seed"],[0,6,1,"","service_tier"],[0,6,1,"","should_return_http_response"],[0,6,1,"","speech_config"],[0,6,1,"","stop_sequences"],[0,6,1,"","system_instruction"],[0,6,1,"","temperature"],[0,6,1,"","thinking_config"],[0,6,1,"","tool_config"],[0,6,1,"","tools"],[0,6,1,"","top_k"],[0,6,1,"","top_p"]],"genai.types.GenerateContentConfigDict":[[0,4,1,"","audio_timestamp"],[0,4,1,"","audio_transcription_config"],[0,4,1,"","automatic_function_calling"],[0,4,1,"","cached_content"],[0,4,1,"","candidate_count"],[0,4,1,"","enable_enhanced_civic_answers"],[0,4,1,"","frequency_penalty"],[0,4,1,"","http_options"],[0,4,1,"","image_config"],[0,4,1,"","labels"],[0,4,1,"","logprobs"],[0,4,1,"","max_output_tokens"],[0,4,1,"","media_resolution"],[0,4,1,"","model_armor_config"],[0,4,1,"","model_selection_config"],[0,4,1,"","presence_penalty"],[0,4,1,"","response_json_schema"],[0,4,1,"","response_logprobs"],[0,4,1,"","response_mime_type"],[0,4,1,"","response_modalities"],[0,4,1,"","response_schema"],[0,4,1,"","routing_config"],[0,4,1,"","safety_settings"],[0,4,1,"","seed"],[0,4,1,"","service_tier"],[0,4,1,"","should_return_http_response"],[0,4,1,"","speech_config"],[0,4,1,"","stop_sequences"],[0,4,1,"","system_instruction"],[0,4,1,"","temperature"],[0,4,1,"","thinking_config"],[0,4,1,"","tool_config"],[0,4,1,"","tools"],[0,4,1,"","top_k"],[0,4,1,"","top_p"]],"genai.types.GenerateContentResponse":[[0,6,1,"","automatic_function_calling_history"],[0,6,1,"","candidates"],[0,2,1,"","code_execution_result"],[0,6,1,"","create_time"],[0,2,1,"","executable_code"],[0,2,1,"","function_calls"],[0,6,1,"","model_status"],[0,6,1,"","model_version"],[0,6,1,"","parsed"],[0,2,1,"","parts"],[0,6,1,"","prompt_feedback"],[0,6,1,"","response_id"],[0,6,1,"","sdk_http_response"],[0,2,1,"","text"],[0,6,1,"","usage_metadata"]],"genai.types.GenerateContentResponseDict":[[0,4,1,"","candidates"],[0,4,1,"","create_time"],[0,4,1,"","model_status"],[0,4,1,"","model_version"],[0,4,1,"","prompt_feedback"],[0,4,1,"","response_id"],[0,4,1,"","sdk_http_response"],[0,4,1,"","usage_metadata"]],"genai.types.GenerateContentResponsePromptFeedback":[[0,6,1,"","block_reason"],[0,6,1,"","block_reason_message"],[0,6,1,"","safety_ratings"]],"genai.types.GenerateContentResponsePromptFeedbackDict":[[0,4,1,"","block_reason"],[0,4,1,"","block_reason_message"],[0,4,1,"","safety_ratings"]],"genai.types.GenerateContentResponseUsageMetadata":[[0,6,1,"","cache_tokens_details"],[0,6,1,"","cached_content_token_count"],[0,6,1,"","candidates_token_count"],[0,6,1,"","candidates_tokens_details"],[0,6,1,"","prompt_token_count"],[0,6,1,"","prompt_tokens_details"],[0,6,1,"","thoughts_token_count"],[0,6,1,"","tool_use_prompt_token_count"],[0,6,1,"","tool_use_prompt_tokens_details"],[0,6,1,"","total_token_count"],[0,6,1,"","traffic_type"]],"genai.types.GenerateContentResponseUsageMetadataDict":[[0,4,1,"","cache_tokens_details"],[0,4,1,"","cached_content_token_count"],[0,4,1,"","candidates_token_count"],[0,4,1,"","candidates_tokens_details"],[0,4,1,"","prompt_token_count"],[0,4,1,"","prompt_tokens_details"],[0,4,1,"","thoughts_token_count"],[0,4,1,"","tool_use_prompt_token_count"],[0,4,1,"","tool_use_prompt_tokens_details"],[0,4,1,"","total_token_count"],[0,4,1,"","traffic_type"]],"genai.types.GenerateImagesConfig":[[0,6,1,"","add_watermark"],[0,6,1,"","aspect_ratio"],[0,6,1,"","enhance_prompt"],[0,6,1,"","guidance_scale"],[0,6,1,"","http_options"],[0,6,1,"","image_size"],[0,6,1,"","include_rai_reason"],[0,6,1,"","include_safety_attributes"],[0,6,1,"","labels"],[0,6,1,"","language"],[0,6,1,"","negative_prompt"],[0,6,1,"","number_of_images"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"],[0,6,1,"","seed"]],"genai.types.GenerateImagesConfigDict":[[0,4,1,"","add_watermark"],[0,4,1,"","aspect_ratio"],[0,4,1,"","enhance_prompt"],[0,4,1,"","guidance_scale"],[0,4,1,"","http_options"],[0,4,1,"","image_size"],[0,4,1,"","include_rai_reason"],[0,4,1,"","include_safety_attributes"],[0,4,1,"","labels"],[0,4,1,"","language"],[0,4,1,"","negative_prompt"],[0,4,1,"","number_of_images"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"],[0,4,1,"","seed"]],"genai.types.GenerateImagesResponse":[[0,6,1,"","generated_images"],[0,2,1,"","images"],[0,6,1,"","positive_prompt_safety_attributes"],[0,6,1,"","sdk_http_response"]],"genai.types.GenerateImagesResponseDict":[[0,4,1,"","generated_images"],[0,4,1,"","positive_prompt_safety_attributes"],[0,4,1,"","sdk_http_response"]],"genai.types.GenerateVideosConfig":[[0,6,1,"","aspect_ratio"],[0,6,1,"","compression_quality"],[0,6,1,"","duration_seconds"],[0,6,1,"","enhance_prompt"],[0,6,1,"","fps"],[0,6,1,"","generate_audio"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","last_frame"],[0,6,1,"","mask"],[0,6,1,"","negative_prompt"],[0,6,1,"","number_of_videos"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","person_generation"],[0,6,1,"","pubsub_topic"],[0,6,1,"","reference_images"],[0,6,1,"","resize_mode"],[0,6,1,"","resolution"],[0,6,1,"","seed"],[0,6,1,"","webhook_config"]],"genai.types.GenerateVideosConfigDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","compression_quality"],[0,4,1,"","duration_seconds"],[0,4,1,"","enhance_prompt"],[0,4,1,"","fps"],[0,4,1,"","generate_audio"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","last_frame"],[0,4,1,"","mask"],[0,4,1,"","negative_prompt"],[0,4,1,"","number_of_videos"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","person_generation"],[0,4,1,"","pubsub_topic"],[0,4,1,"","reference_images"],[0,4,1,"","resize_mode"],[0,4,1,"","resolution"],[0,4,1,"","seed"],[0,4,1,"","webhook_config"]],"genai.types.GenerateVideosOperation":[[0,1,1,"","from_api_response"],[0,6,1,"","response"],[0,6,1,"","result"]],"genai.types.GenerateVideosResponse":[[0,6,1,"","generated_videos"],[0,6,1,"","rai_media_filtered_count"],[0,6,1,"","rai_media_filtered_reasons"]],"genai.types.GenerateVideosResponseDict":[[0,4,1,"","generated_videos"],[0,4,1,"","rai_media_filtered_count"],[0,4,1,"","rai_media_filtered_reasons"]],"genai.types.GenerateVideosSource":[[0,6,1,"","image"],[0,6,1,"","prompt"],[0,6,1,"","video"]],"genai.types.GenerateVideosSourceDict":[[0,4,1,"","image"],[0,4,1,"","prompt"],[0,4,1,"","video"]],"genai.types.GeneratedImage":[[0,6,1,"","enhanced_prompt"],[0,6,1,"","image"],[0,6,1,"","rai_filtered_reason"],[0,6,1,"","safety_attributes"]],"genai.types.GeneratedImageDict":[[0,4,1,"","enhanced_prompt"],[0,4,1,"","image"],[0,4,1,"","rai_filtered_reason"],[0,4,1,"","safety_attributes"]],"genai.types.GeneratedImageMask":[[0,6,1,"","labels"],[0,6,1,"","mask"]],"genai.types.GeneratedImageMaskDict":[[0,4,1,"","labels"],[0,4,1,"","mask"]],"genai.types.GeneratedVideo":[[0,6,1,"","video"]],"genai.types.GeneratedVideoDict":[[0,4,1,"","video"]],"genai.types.GenerationConfig":[[0,6,1,"","audio_timestamp"],[0,6,1,"","audio_transcription_config"],[0,6,1,"","candidate_count"],[0,6,1,"","enable_affective_dialog"],[0,6,1,"","enable_enhanced_civic_answers"],[0,6,1,"","frequency_penalty"],[0,6,1,"","logprobs"],[0,6,1,"","max_output_tokens"],[0,6,1,"","media_resolution"],[0,6,1,"","model_selection_config"],[0,6,1,"","presence_penalty"],[0,6,1,"","response_format"],[0,6,1,"","response_json_schema"],[0,6,1,"","response_logprobs"],[0,6,1,"","response_mime_type"],[0,6,1,"","response_modalities"],[0,6,1,"","response_schema"],[0,6,1,"","routing_config"],[0,6,1,"","seed"],[0,6,1,"","speech_config"],[0,6,1,"","stop_sequences"],[0,6,1,"","temperature"],[0,6,1,"","thinking_config"],[0,6,1,"","top_k"],[0,6,1,"","top_p"],[0,6,1,"","translation_config"]],"genai.types.GenerationConfigDict":[[0,4,1,"","audio_timestamp"],[0,4,1,"","audio_transcription_config"],[0,4,1,"","candidate_count"],[0,4,1,"","enable_affective_dialog"],[0,4,1,"","enable_enhanced_civic_answers"],[0,4,1,"","frequency_penalty"],[0,4,1,"","logprobs"],[0,4,1,"","max_output_tokens"],[0,4,1,"","media_resolution"],[0,4,1,"","model_selection_config"],[0,4,1,"","presence_penalty"],[0,4,1,"","response_format"],[0,4,1,"","response_json_schema"],[0,4,1,"","response_logprobs"],[0,4,1,"","response_mime_type"],[0,4,1,"","response_modalities"],[0,4,1,"","response_schema"],[0,4,1,"","routing_config"],[0,4,1,"","seed"],[0,4,1,"","speech_config"],[0,4,1,"","stop_sequences"],[0,4,1,"","temperature"],[0,4,1,"","thinking_config"],[0,4,1,"","top_k"],[0,4,1,"","top_p"],[0,4,1,"","translation_config"]],"genai.types.GenerationConfigRoutingConfig":[[0,6,1,"","auto_mode"],[0,6,1,"","manual_mode"]],"genai.types.GenerationConfigRoutingConfigAutoRoutingMode":[[0,6,1,"","model_routing_preference"]],"genai.types.GenerationConfigRoutingConfigAutoRoutingModeDict":[[0,4,1,"","model_routing_preference"]],"genai.types.GenerationConfigRoutingConfigDict":[[0,4,1,"","auto_mode"],[0,4,1,"","manual_mode"]],"genai.types.GenerationConfigRoutingConfigManualRoutingMode":[[0,6,1,"","model_name"]],"genai.types.GenerationConfigRoutingConfigManualRoutingModeDict":[[0,4,1,"","model_name"]],"genai.types.GenerationConfigThinkingConfigDict":[[0,4,1,"","include_thoughts"],[0,4,1,"","thinking_budget"],[0,4,1,"","thinking_level"]],"genai.types.GetBatchJobConfig":[[0,6,1,"","http_options"]],"genai.types.GetBatchJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetCachedContentConfig":[[0,6,1,"","http_options"]],"genai.types.GetCachedContentConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetDocumentConfig":[[0,6,1,"","http_options"]],"genai.types.GetDocumentConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetFileConfig":[[0,6,1,"","http_options"]],"genai.types.GetFileConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetFileSearchStoreConfig":[[0,6,1,"","http_options"]],"genai.types.GetFileSearchStoreConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetModelConfig":[[0,6,1,"","http_options"]],"genai.types.GetModelConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetOperationConfig":[[0,6,1,"","http_options"]],"genai.types.GetOperationConfigDict":[[0,4,1,"","http_options"]],"genai.types.GetTuningJobConfig":[[0,6,1,"","http_options"]],"genai.types.GetTuningJobConfigDict":[[0,4,1,"","http_options"]],"genai.types.GoogleMaps":[[0,6,1,"","auth_config"],[0,6,1,"","enable_widget"],[0,6,1,"","grounding_types"]],"genai.types.GoogleMapsDict":[[0,4,1,"","auth_config"],[0,4,1,"","enable_widget"],[0,4,1,"","grounding_types"]],"genai.types.GoogleMapsGroundingTypes":[[0,6,1,"","places"],[0,6,1,"","routing"]],"genai.types.GoogleMapsGroundingTypesDict":[[0,4,1,"","places"],[0,4,1,"","routing"]],"genai.types.GoogleRpcStatus":[[0,6,1,"","code"],[0,6,1,"","details"],[0,6,1,"","message"]],"genai.types.GoogleRpcStatusDict":[[0,4,1,"","code"],[0,4,1,"","details"],[0,4,1,"","message"]],"genai.types.GoogleSearch":[[0,6,1,"","blocking_confidence"],[0,6,1,"","exclude_domains"],[0,6,1,"","search_types"],[0,6,1,"","time_range_filter"]],"genai.types.GoogleSearchDict":[[0,4,1,"","blocking_confidence"],[0,4,1,"","exclude_domains"],[0,4,1,"","search_types"],[0,4,1,"","time_range_filter"]],"genai.types.GoogleSearchRetrieval":[[0,6,1,"","dynamic_retrieval_config"]],"genai.types.GoogleSearchRetrievalDict":[[0,4,1,"","dynamic_retrieval_config"]],"genai.types.GoogleTypeDate":[[0,6,1,"","day"],[0,6,1,"","month"],[0,6,1,"","year"]],"genai.types.GoogleTypeDateDict":[[0,4,1,"","day"],[0,4,1,"","month"],[0,4,1,"","year"]],"genai.types.GroundingChunk":[[0,6,1,"","image"],[0,6,1,"","maps"],[0,6,1,"","retrieved_context"],[0,6,1,"","web"]],"genai.types.GroundingChunkCustomMetadata":[[0,6,1,"","key"],[0,6,1,"","numeric_value"],[0,6,1,"","string_list_value"],[0,6,1,"","string_value"]],"genai.types.GroundingChunkCustomMetadataDict":[[0,4,1,"","key"],[0,4,1,"","numeric_value"],[0,4,1,"","string_list_value"],[0,4,1,"","string_value"]],"genai.types.GroundingChunkDict":[[0,4,1,"","image"],[0,4,1,"","maps"],[0,4,1,"","retrieved_context"],[0,4,1,"","web"]],"genai.types.GroundingChunkImage":[[0,6,1,"","domain"],[0,6,1,"","image_uri"],[0,6,1,"","source_uri"],[0,6,1,"","title"]],"genai.types.GroundingChunkImageDict":[[0,4,1,"","domain"],[0,4,1,"","image_uri"],[0,4,1,"","source_uri"],[0,4,1,"","title"]],"genai.types.GroundingChunkMaps":[[0,6,1,"","place_answer_sources"],[0,6,1,"","place_id"],[0,6,1,"","route"],[0,6,1,"","text"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.GroundingChunkMapsDict":[[0,4,1,"","place_answer_sources"],[0,4,1,"","place_id"],[0,4,1,"","route"],[0,4,1,"","text"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.GroundingChunkMapsPlaceAnswerSources":[[0,6,1,"","flag_content_uri"],[0,6,1,"","review_snippet"],[0,6,1,"","review_snippets"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution":[[0,6,1,"","display_name"],[0,6,1,"","photo_uri"],[0,6,1,"","uri"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesAuthorAttributionDict":[[0,4,1,"","display_name"],[0,4,1,"","photo_uri"],[0,4,1,"","uri"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesDict":[[0,4,1,"","flag_content_uri"],[0,4,1,"","review_snippet"],[0,4,1,"","review_snippets"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippet":[[0,6,1,"","author_attribution"],[0,6,1,"","flag_content_uri"],[0,6,1,"","google_maps_uri"],[0,6,1,"","relative_publish_time_description"],[0,6,1,"","review"],[0,6,1,"","review_id"],[0,6,1,"","title"]],"genai.types.GroundingChunkMapsPlaceAnswerSourcesReviewSnippetDict":[[0,4,1,"","author_attribution"],[0,4,1,"","flag_content_uri"],[0,4,1,"","google_maps_uri"],[0,4,1,"","relative_publish_time_description"],[0,4,1,"","review"],[0,4,1,"","review_id"],[0,4,1,"","title"]],"genai.types.GroundingChunkMapsRoute":[[0,6,1,"","distance_meters"],[0,6,1,"","duration"],[0,6,1,"","encoded_polyline"]],"genai.types.GroundingChunkMapsRouteDict":[[0,4,1,"","distance_meters"],[0,4,1,"","duration"],[0,4,1,"","encoded_polyline"]],"genai.types.GroundingChunkRetrievedContext":[[0,6,1,"","custom_metadata"],[0,6,1,"","document_name"],[0,6,1,"","file_search_store"],[0,6,1,"","media_id"],[0,6,1,"","page_number"],[0,6,1,"","rag_chunk"],[0,6,1,"","text"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.GroundingChunkRetrievedContextDict":[[0,4,1,"","custom_metadata"],[0,4,1,"","document_name"],[0,4,1,"","file_search_store"],[0,4,1,"","media_id"],[0,4,1,"","page_number"],[0,4,1,"","rag_chunk"],[0,4,1,"","text"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.GroundingChunkStringList":[[0,6,1,"","values"]],"genai.types.GroundingChunkWeb":[[0,6,1,"","domain"],[0,6,1,"","title"],[0,6,1,"","uri"]],"genai.types.GroundingChunkWebDict":[[0,4,1,"","domain"],[0,4,1,"","title"],[0,4,1,"","uri"]],"genai.types.GroundingMetadata":[[0,6,1,"","google_maps_widget_context_token"],[0,6,1,"","grounding_chunks"],[0,6,1,"","grounding_supports"],[0,6,1,"","image_search_queries"],[0,6,1,"","retrieval_metadata"],[0,6,1,"","retrieval_queries"],[0,6,1,"","search_entry_point"],[0,6,1,"","source_flagging_uris"],[0,6,1,"","web_search_queries"]],"genai.types.GroundingMetadataDict":[[0,4,1,"","google_maps_widget_context_token"],[0,4,1,"","grounding_chunks"],[0,4,1,"","grounding_supports"],[0,4,1,"","image_search_queries"],[0,4,1,"","retrieval_metadata"],[0,4,1,"","retrieval_queries"],[0,4,1,"","search_entry_point"],[0,4,1,"","source_flagging_uris"],[0,4,1,"","web_search_queries"]],"genai.types.GroundingMetadataSourceFlaggingUri":[[0,6,1,"","flag_content_uri"],[0,6,1,"","source_id"]],"genai.types.GroundingMetadataSourceFlaggingUriDict":[[0,4,1,"","flag_content_uri"],[0,4,1,"","source_id"]],"genai.types.GroundingSupport":[[0,6,1,"","confidence_scores"],[0,6,1,"","grounding_chunk_indices"],[0,6,1,"","rendered_parts"],[0,6,1,"","segment"]],"genai.types.GroundingSupportDict":[[0,4,1,"","confidence_scores"],[0,4,1,"","grounding_chunk_indices"],[0,4,1,"","rendered_parts"],[0,4,1,"","segment"]],"genai.types.HarmBlockMethod":[[0,4,1,"","HARM_BLOCK_METHOD_UNSPECIFIED"],[0,4,1,"","PROBABILITY"],[0,4,1,"","SEVERITY"]],"genai.types.HarmBlockThreshold":[[0,4,1,"","BLOCK_LOW_AND_ABOVE"],[0,4,1,"","BLOCK_MEDIUM_AND_ABOVE"],[0,4,1,"","BLOCK_NONE"],[0,4,1,"","BLOCK_ONLY_HIGH"],[0,4,1,"","HARM_BLOCK_THRESHOLD_UNSPECIFIED"],[0,4,1,"","OFF"]],"genai.types.HarmCategory":[[0,4,1,"","HARM_CATEGORY_CIVIC_INTEGRITY"],[0,4,1,"","HARM_CATEGORY_DANGEROUS_CONTENT"],[0,4,1,"","HARM_CATEGORY_HARASSMENT"],[0,4,1,"","HARM_CATEGORY_HATE_SPEECH"],[0,4,1,"","HARM_CATEGORY_IMAGE_DANGEROUS_CONTENT"],[0,4,1,"","HARM_CATEGORY_IMAGE_HARASSMENT"],[0,4,1,"","HARM_CATEGORY_IMAGE_HATE"],[0,4,1,"","HARM_CATEGORY_IMAGE_SEXUALLY_EXPLICIT"],[0,4,1,"","HARM_CATEGORY_JAILBREAK"],[0,4,1,"","HARM_CATEGORY_SEXUALLY_EXPLICIT"],[0,4,1,"","HARM_CATEGORY_UNSPECIFIED"]],"genai.types.HarmProbability":[[0,4,1,"","HARM_PROBABILITY_UNSPECIFIED"],[0,4,1,"","HIGH"],[0,4,1,"","LOW"],[0,4,1,"","MEDIUM"],[0,4,1,"","NEGLIGIBLE"]],"genai.types.HarmSeverity":[[0,4,1,"","HARM_SEVERITY_HIGH"],[0,4,1,"","HARM_SEVERITY_LOW"],[0,4,1,"","HARM_SEVERITY_MEDIUM"],[0,4,1,"","HARM_SEVERITY_NEGLIGIBLE"],[0,4,1,"","HARM_SEVERITY_UNSPECIFIED"]],"genai.types.HistoryConfig":[[0,6,1,"","initial_history_in_client_content"]],"genai.types.HistoryConfigDict":[[0,4,1,"","initial_history_in_client_content"]],"genai.types.HttpElementLocation":[[0,4,1,"","HTTP_IN_BODY"],[0,4,1,"","HTTP_IN_COOKIE"],[0,4,1,"","HTTP_IN_HEADER"],[0,4,1,"","HTTP_IN_PATH"],[0,4,1,"","HTTP_IN_QUERY"],[0,4,1,"","HTTP_IN_UNSPECIFIED"]],"genai.types.HttpOptions":[[0,6,1,"","aiohttp_client"],[0,6,1,"","api_version"],[0,6,1,"","async_client_args"],[0,6,1,"","base_url"],[0,6,1,"","base_url_resource_scope"],[0,6,1,"","client_args"],[0,6,1,"","extra_body"],[0,6,1,"","headers"],[0,6,1,"","httpx_async_client"],[0,6,1,"","httpx_client"],[0,6,1,"","retry_options"],[0,6,1,"","timeout"]],"genai.types.HttpOptionsDict":[[0,4,1,"","api_version"],[0,4,1,"","async_client_args"],[0,4,1,"","base_url"],[0,4,1,"","base_url_resource_scope"],[0,4,1,"","client_args"],[0,4,1,"","extra_body"],[0,4,1,"","headers"],[0,4,1,"","retry_options"],[0,4,1,"","timeout"]],"genai.types.HttpResponse":[[0,6,1,"","body"],[0,6,1,"","headers"]],"genai.types.HttpResponseDict":[[0,4,1,"","body"],[0,4,1,"","headers"]],"genai.types.HttpRetryOptions":[[0,6,1,"","attempts"],[0,6,1,"","exp_base"],[0,6,1,"","http_status_codes"],[0,6,1,"","initial_delay"],[0,6,1,"","jitter"],[0,6,1,"","max_delay"]],"genai.types.HttpRetryOptionsDict":[[0,4,1,"","attempts"],[0,4,1,"","exp_base"],[0,4,1,"","http_status_codes"],[0,4,1,"","initial_delay"],[0,4,1,"","jitter"],[0,4,1,"","max_delay"]],"genai.types.Image":[[0,1,1,"","from_file"],[0,6,1,"","gcs_uri"],[0,6,1,"","image_bytes"],[0,6,1,"","mime_type"],[0,1,1,"","model_post_init"],[0,1,1,"","save"],[0,1,1,"","show"]],"genai.types.ImageConfig":[[0,6,1,"","aspect_ratio"],[0,6,1,"","image_output_options"],[0,6,1,"","image_size"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","prominent_people"]],"genai.types.ImageConfigDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","image_output_options"],[0,4,1,"","image_size"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","prominent_people"]],"genai.types.ImageConfigImageOutputOptions":[[0,6,1,"","compression_quality"],[0,6,1,"","mime_type"]],"genai.types.ImageConfigImageOutputOptionsDict":[[0,4,1,"","compression_quality"],[0,4,1,"","mime_type"]],"genai.types.ImageDict":[[0,4,1,"","gcs_uri"],[0,4,1,"","image_bytes"],[0,4,1,"","mime_type"]],"genai.types.ImagePromptLanguage":[[0,4,1,"","auto"],[0,4,1,"","en"],[0,4,1,"","es"],[0,4,1,"","hi"],[0,4,1,"","ja"],[0,4,1,"","ko"],[0,4,1,"","pt"],[0,4,1,"","zh"]],"genai.types.ImageResizeMode":[[0,4,1,"","CROP"],[0,4,1,"","PAD"]],"genai.types.ImageResponseFormat":[[0,6,1,"","aspect_ratio"],[0,6,1,"","delivery"],[0,6,1,"","image_size"],[0,6,1,"","mime_type"]],"genai.types.ImageResponseFormatDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","delivery"],[0,4,1,"","image_size"],[0,4,1,"","mime_type"]],"genai.types.ImageSize":[[0,4,1,"","IMAGE_SIZE_FIVE_TWELVE"],[0,4,1,"","IMAGE_SIZE_FOUR_K"],[0,4,1,"","IMAGE_SIZE_ONE_K"],[0,4,1,"","IMAGE_SIZE_TWO_K"],[0,4,1,"","IMAGE_SIZE_UNSPECIFIED"]],"genai.types.ImportFileConfig":[[0,6,1,"","chunking_config"],[0,6,1,"","custom_metadata"],[0,6,1,"","http_options"]],"genai.types.ImportFileConfigDict":[[0,4,1,"","chunking_config"],[0,4,1,"","custom_metadata"],[0,4,1,"","http_options"]],"genai.types.ImportFileOperation":[[0,1,1,"","from_api_response"],[0,6,1,"","response"]],"genai.types.ImportFileResponse":[[0,6,1,"","document_name"],[0,6,1,"","parent"],[0,6,1,"","sdk_http_response"]],"genai.types.ImportFileResponseDict":[[0,4,1,"","document_name"],[0,4,1,"","parent"],[0,4,1,"","sdk_http_response"]],"genai.types.InlinedEmbedContentResponse":[[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","response"]],"genai.types.InlinedEmbedContentResponseDict":[[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","response"]],"genai.types.InlinedRequest":[[0,6,1,"","config"],[0,6,1,"","contents"],[0,6,1,"","metadata"],[0,6,1,"","model"]],"genai.types.InlinedRequestDict":[[0,4,1,"","config"],[0,4,1,"","contents"],[0,4,1,"","metadata"],[0,4,1,"","model"]],"genai.types.InlinedResponse":[[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","response"]],"genai.types.InlinedResponseDict":[[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","response"]],"genai.types.Interval":[[0,6,1,"","end_time"],[0,6,1,"","start_time"]],"genai.types.IntervalDict":[[0,4,1,"","end_time"],[0,4,1,"","start_time"]],"genai.types.JSONSchema":[[0,6,1,"","additional_properties"],[0,6,1,"","any_of"],[0,6,1,"","default"],[0,6,1,"","defs"],[0,6,1,"","description"],[0,6,1,"","enum"],[0,6,1,"","format"],[0,6,1,"","items"],[0,6,1,"","max_items"],[0,6,1,"","max_length"],[0,6,1,"","max_properties"],[0,6,1,"","maximum"],[0,6,1,"","min_items"],[0,6,1,"","min_length"],[0,6,1,"","min_properties"],[0,6,1,"","minimum"],[0,6,1,"","one_of"],[0,6,1,"","pattern"],[0,6,1,"","properties"],[0,6,1,"","ref"],[0,6,1,"","required"],[0,6,1,"","title"],[0,6,1,"","type"],[0,6,1,"","unique_items"]],"genai.types.JSONSchemaType":[[0,4,1,"","ARRAY"],[0,4,1,"","BOOLEAN"],[0,4,1,"","INTEGER"],[0,4,1,"","NULL"],[0,4,1,"","NUMBER"],[0,4,1,"","OBJECT"],[0,4,1,"","STRING"]],"genai.types.JobError":[[0,6,1,"","code"],[0,6,1,"","details"],[0,6,1,"","message"]],"genai.types.JobErrorDict":[[0,4,1,"","code"],[0,4,1,"","details"],[0,4,1,"","message"]],"genai.types.JobState":[[0,4,1,"","JOB_STATE_CANCELLED"],[0,4,1,"","JOB_STATE_CANCELLING"],[0,4,1,"","JOB_STATE_EXPIRED"],[0,4,1,"","JOB_STATE_FAILED"],[0,4,1,"","JOB_STATE_PARTIALLY_SUCCEEDED"],[0,4,1,"","JOB_STATE_PAUSED"],[0,4,1,"","JOB_STATE_PENDING"],[0,4,1,"","JOB_STATE_QUEUED"],[0,4,1,"","JOB_STATE_RUNNING"],[0,4,1,"","JOB_STATE_SUCCEEDED"],[0,4,1,"","JOB_STATE_UNSPECIFIED"],[0,4,1,"","JOB_STATE_UPDATING"]],"genai.types.LLMBasedMetricSpec":[[0,6,1,"","additional_config"],[0,6,1,"","judge_autorater_config"],[0,6,1,"","metric_prompt_template"],[0,6,1,"","predefined_rubric_generation_spec"],[0,6,1,"","result_parser_config"],[0,6,1,"","rubric_generation_spec"],[0,6,1,"","rubric_group_key"],[0,6,1,"","system_instruction"]],"genai.types.LLMBasedMetricSpecDict":[[0,4,1,"","additional_config"],[0,4,1,"","judge_autorater_config"],[0,4,1,"","metric_prompt_template"],[0,4,1,"","predefined_rubric_generation_spec"],[0,4,1,"","result_parser_config"],[0,4,1,"","rubric_generation_spec"],[0,4,1,"","rubric_group_key"],[0,4,1,"","system_instruction"]],"genai.types.Language":[[0,4,1,"","LANGUAGE_UNSPECIFIED"],[0,4,1,"","PYTHON"]],"genai.types.LanguageHints":[[0,6,1,"","language_codes"]],"genai.types.LanguageHintsDict":[[0,4,1,"","language_codes"]],"genai.types.LatLng":[[0,6,1,"","latitude"],[0,6,1,"","longitude"]],"genai.types.LatLngDict":[[0,4,1,"","latitude"],[0,4,1,"","longitude"]],"genai.types.ListBatchJobsConfig":[[0,6,1,"","filter"],[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListBatchJobsConfigDict":[[0,4,1,"","filter"],[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListBatchJobsResponse":[[0,6,1,"","batch_jobs"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListBatchJobsResponseDict":[[0,4,1,"","batch_jobs"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListCachedContentsConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListCachedContentsConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListCachedContentsResponse":[[0,6,1,"","cached_contents"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListCachedContentsResponseDict":[[0,4,1,"","cached_contents"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListDocumentsConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListDocumentsConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListDocumentsResponse":[[0,6,1,"","documents"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListDocumentsResponseDict":[[0,4,1,"","documents"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListFileSearchStoresConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListFileSearchStoresConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListFileSearchStoresResponse":[[0,6,1,"","file_search_stores"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListFileSearchStoresResponseDict":[[0,4,1,"","file_search_stores"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListFilesConfig":[[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListFilesConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListFilesResponse":[[0,6,1,"","files"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListFilesResponseDict":[[0,4,1,"","files"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListModelsConfig":[[0,6,1,"","filter"],[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"],[0,6,1,"","query_base"]],"genai.types.ListModelsConfigDict":[[0,4,1,"","filter"],[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"],[0,4,1,"","query_base"]],"genai.types.ListModelsResponse":[[0,6,1,"","models"],[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"]],"genai.types.ListModelsResponseDict":[[0,4,1,"","models"],[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"]],"genai.types.ListTuningJobsConfig":[[0,6,1,"","filter"],[0,6,1,"","http_options"],[0,6,1,"","page_size"],[0,6,1,"","page_token"]],"genai.types.ListTuningJobsConfigDict":[[0,4,1,"","filter"],[0,4,1,"","http_options"],[0,4,1,"","page_size"],[0,4,1,"","page_token"]],"genai.types.ListTuningJobsResponse":[[0,6,1,"","next_page_token"],[0,6,1,"","sdk_http_response"],[0,6,1,"","tuning_jobs"]],"genai.types.ListTuningJobsResponseDict":[[0,4,1,"","next_page_token"],[0,4,1,"","sdk_http_response"],[0,4,1,"","tuning_jobs"]],"genai.types.LiveClientContent":[[0,6,1,"","turn_complete"],[0,6,1,"","turns"]],"genai.types.LiveClientContentDict":[[0,4,1,"","turn_complete"],[0,4,1,"","turns"]],"genai.types.LiveClientMessage":[[0,6,1,"","client_content"],[0,6,1,"","realtime_input"],[0,6,1,"","setup"],[0,6,1,"","tool_response"]],"genai.types.LiveClientMessageDict":[[0,4,1,"","client_content"],[0,4,1,"","realtime_input"],[0,4,1,"","setup"],[0,4,1,"","tool_response"]],"genai.types.LiveClientRealtimeInput":[[0,6,1,"","activity_end"],[0,6,1,"","activity_start"],[0,6,1,"","audio"],[0,6,1,"","audio_stream_end"],[0,6,1,"","media_chunks"],[0,6,1,"","text"],[0,6,1,"","video"]],"genai.types.LiveClientRealtimeInputDict":[[0,4,1,"","activity_end"],[0,4,1,"","activity_start"],[0,4,1,"","audio"],[0,4,1,"","audio_stream_end"],[0,4,1,"","media_chunks"],[0,4,1,"","text"],[0,4,1,"","video"]],"genai.types.LiveClientSetup":[[0,6,1,"","avatar_config"],[0,6,1,"","context_window_compression"],[0,6,1,"","explicit_vad_signal"],[0,6,1,"","generation_config"],[0,6,1,"","history_config"],[0,6,1,"","input_audio_transcription"],[0,6,1,"","model"],[0,6,1,"","output_audio_transcription"],[0,6,1,"","proactivity"],[0,6,1,"","safety_settings"],[0,6,1,"","session_resumption"],[0,6,1,"","system_instruction"],[0,6,1,"","tools"]],"genai.types.LiveClientSetupDict":[[0,4,1,"","avatar_config"],[0,4,1,"","context_window_compression"],[0,4,1,"","explicit_vad_signal"],[0,4,1,"","generation_config"],[0,4,1,"","history_config"],[0,4,1,"","input_audio_transcription"],[0,4,1,"","model"],[0,4,1,"","output_audio_transcription"],[0,4,1,"","proactivity"],[0,4,1,"","safety_settings"],[0,4,1,"","session_resumption"],[0,4,1,"","system_instruction"],[0,4,1,"","tools"]],"genai.types.LiveClientToolResponse":[[0,6,1,"","function_responses"]],"genai.types.LiveClientToolResponseDict":[[0,4,1,"","function_responses"]],"genai.types.LiveConnectConfig":[[0,6,1,"","avatar_config"],[0,6,1,"","context_window_compression"],[0,6,1,"","enable_affective_dialog"],[0,6,1,"","explicit_vad_signal"],[0,6,1,"","generation_config"],[0,6,1,"","history_config"],[0,6,1,"","http_options"],[0,6,1,"","input_audio_transcription"],[0,6,1,"","max_output_tokens"],[0,6,1,"","media_resolution"],[0,6,1,"","output_audio_transcription"],[0,6,1,"","proactivity"],[0,6,1,"","realtime_input_config"],[0,6,1,"","response_modalities"],[0,6,1,"","safety_settings"],[0,6,1,"","seed"],[0,6,1,"","session_resumption"],[0,6,1,"","speech_config"],[0,6,1,"","system_instruction"],[0,6,1,"","temperature"],[0,6,1,"","thinking_config"],[0,6,1,"","tools"],[0,6,1,"","top_k"],[0,6,1,"","top_p"],[0,6,1,"","translation_config"]],"genai.types.LiveConnectConfigDict":[[0,4,1,"","avatar_config"],[0,4,1,"","context_window_compression"],[0,4,1,"","enable_affective_dialog"],[0,4,1,"","explicit_vad_signal"],[0,4,1,"","generation_config"],[0,4,1,"","history_config"],[0,4,1,"","http_options"],[0,4,1,"","input_audio_transcription"],[0,4,1,"","max_output_tokens"],[0,4,1,"","media_resolution"],[0,4,1,"","output_audio_transcription"],[0,4,1,"","proactivity"],[0,4,1,"","realtime_input_config"],[0,4,1,"","response_modalities"],[0,4,1,"","safety_settings"],[0,4,1,"","seed"],[0,4,1,"","session_resumption"],[0,4,1,"","speech_config"],[0,4,1,"","system_instruction"],[0,4,1,"","temperature"],[0,4,1,"","thinking_config"],[0,4,1,"","tools"],[0,4,1,"","top_k"],[0,4,1,"","top_p"],[0,4,1,"","translation_config"]],"genai.types.LiveConnectConstraints":[[0,6,1,"","config"],[0,6,1,"","model"]],"genai.types.LiveConnectConstraintsDict":[[0,4,1,"","config"],[0,4,1,"","model"]],"genai.types.LiveConnectParameters":[[0,6,1,"","config"],[0,6,1,"","model"]],"genai.types.LiveConnectParametersDict":[[0,4,1,"","config"],[0,4,1,"","model"]],"genai.types.LiveMusicClientContent":[[0,6,1,"","weighted_prompts"]],"genai.types.LiveMusicClientContentDict":[[0,4,1,"","weighted_prompts"]],"genai.types.LiveMusicClientMessage":[[0,6,1,"","client_content"],[0,6,1,"","music_generation_config"],[0,6,1,"","playback_control"],[0,6,1,"","setup"]],"genai.types.LiveMusicClientMessageDict":[[0,4,1,"","client_content"],[0,4,1,"","music_generation_config"],[0,4,1,"","playback_control"],[0,4,1,"","setup"]],"genai.types.LiveMusicClientSetup":[[0,6,1,"","model"]],"genai.types.LiveMusicClientSetupDict":[[0,4,1,"","model"]],"genai.types.LiveMusicConnectParameters":[[0,6,1,"","model"]],"genai.types.LiveMusicConnectParametersDict":[[0,4,1,"","model"]],"genai.types.LiveMusicFilteredPrompt":[[0,6,1,"","filtered_reason"],[0,6,1,"","text"]],"genai.types.LiveMusicFilteredPromptDict":[[0,4,1,"","filtered_reason"],[0,4,1,"","text"]],"genai.types.LiveMusicGenerationConfig":[[0,6,1,"","bpm"],[0,6,1,"","brightness"],[0,6,1,"","density"],[0,6,1,"","guidance"],[0,6,1,"","music_generation_mode"],[0,6,1,"","mute_bass"],[0,6,1,"","mute_drums"],[0,6,1,"","only_bass_and_drums"],[0,6,1,"","scale"],[0,6,1,"","seed"],[0,6,1,"","temperature"],[0,6,1,"","top_k"]],"genai.types.LiveMusicGenerationConfigDict":[[0,4,1,"","bpm"],[0,4,1,"","brightness"],[0,4,1,"","density"],[0,4,1,"","guidance"],[0,4,1,"","music_generation_mode"],[0,4,1,"","mute_bass"],[0,4,1,"","mute_drums"],[0,4,1,"","only_bass_and_drums"],[0,4,1,"","scale"],[0,4,1,"","seed"],[0,4,1,"","temperature"],[0,4,1,"","top_k"]],"genai.types.LiveMusicPlaybackControl":[[0,4,1,"","PAUSE"],[0,4,1,"","PLAY"],[0,4,1,"","PLAYBACK_CONTROL_UNSPECIFIED"],[0,4,1,"","RESET_CONTEXT"],[0,4,1,"","STOP"]],"genai.types.LiveMusicServerContent":[[0,6,1,"","audio_chunks"]],"genai.types.LiveMusicServerContentDict":[[0,4,1,"","audio_chunks"]],"genai.types.LiveMusicServerMessage":[[0,6,1,"","filtered_prompt"],[0,6,1,"","server_content"],[0,6,1,"","setup_complete"]],"genai.types.LiveMusicServerMessageDict":[[0,4,1,"","filtered_prompt"],[0,4,1,"","server_content"],[0,4,1,"","setup_complete"]],"genai.types.LiveMusicSetConfigParameters":[[0,6,1,"","music_generation_config"]],"genai.types.LiveMusicSetConfigParametersDict":[[0,4,1,"","music_generation_config"]],"genai.types.LiveMusicSetWeightedPromptsParameters":[[0,6,1,"","weighted_prompts"]],"genai.types.LiveMusicSetWeightedPromptsParametersDict":[[0,4,1,"","weighted_prompts"]],"genai.types.LiveMusicSourceMetadata":[[0,6,1,"","client_content"],[0,6,1,"","music_generation_config"]],"genai.types.LiveMusicSourceMetadataDict":[[0,4,1,"","client_content"],[0,4,1,"","music_generation_config"]],"genai.types.LiveSendRealtimeInputParameters":[[0,6,1,"","activity_end"],[0,6,1,"","activity_start"],[0,6,1,"","audio"],[0,6,1,"","audio_stream_end"],[0,6,1,"","media"],[0,6,1,"","text"],[0,6,1,"","video"]],"genai.types.LiveSendRealtimeInputParametersDict":[[0,4,1,"","activity_end"],[0,4,1,"","activity_start"],[0,4,1,"","audio"],[0,4,1,"","audio_stream_end"],[0,4,1,"","media"],[0,4,1,"","text"],[0,4,1,"","video"]],"genai.types.LiveServerContent":[[0,6,1,"","generation_complete"],[0,6,1,"","grounding_metadata"],[0,6,1,"","input_transcription"],[0,6,1,"","interim_input_transcription"],[0,6,1,"","interrupted"],[0,6,1,"","model_turn"],[0,6,1,"","output_transcription"],[0,6,1,"","turn_complete"],[0,6,1,"","turn_complete_reason"],[0,6,1,"","url_context_metadata"],[0,6,1,"","waiting_for_input"]],"genai.types.LiveServerContentDict":[[0,4,1,"","generation_complete"],[0,4,1,"","grounding_metadata"],[0,4,1,"","input_transcription"],[0,4,1,"","interim_input_transcription"],[0,4,1,"","interrupted"],[0,4,1,"","model_turn"],[0,4,1,"","output_transcription"],[0,4,1,"","turn_complete"],[0,4,1,"","turn_complete_reason"],[0,4,1,"","url_context_metadata"],[0,4,1,"","waiting_for_input"]],"genai.types.LiveServerGoAway":[[0,6,1,"","time_left"]],"genai.types.LiveServerGoAwayDict":[[0,4,1,"","time_left"]],"genai.types.LiveServerMessage":[[0,2,1,"","data"],[0,6,1,"","go_away"],[0,6,1,"","server_content"],[0,6,1,"","session_resumption_update"],[0,6,1,"","setup_complete"],[0,2,1,"","text"],[0,6,1,"","tool_call"],[0,6,1,"","tool_call_cancellation"],[0,6,1,"","usage_metadata"],[0,6,1,"","voice_activity"],[0,6,1,"","voice_activity_detection_signal"]],"genai.types.LiveServerMessageDict":[[0,4,1,"","go_away"],[0,4,1,"","server_content"],[0,4,1,"","session_resumption_update"],[0,4,1,"","setup_complete"],[0,4,1,"","tool_call"],[0,4,1,"","tool_call_cancellation"],[0,4,1,"","usage_metadata"],[0,4,1,"","voice_activity"],[0,4,1,"","voice_activity_detection_signal"]],"genai.types.LiveServerSessionResumptionUpdate":[[0,6,1,"","last_consumed_client_message_index"],[0,6,1,"","new_handle"],[0,6,1,"","resumable"]],"genai.types.LiveServerSessionResumptionUpdateDict":[[0,4,1,"","last_consumed_client_message_index"],[0,4,1,"","new_handle"],[0,4,1,"","resumable"]],"genai.types.LiveServerSetupComplete":[[0,6,1,"","session_id"],[0,6,1,"","voice_consent_signature"]],"genai.types.LiveServerSetupCompleteDict":[[0,4,1,"","session_id"],[0,4,1,"","voice_consent_signature"]],"genai.types.LiveServerToolCall":[[0,6,1,"","function_calls"]],"genai.types.LiveServerToolCallCancellation":[[0,6,1,"","ids"]],"genai.types.LiveServerToolCallCancellationDict":[[0,4,1,"","ids"]],"genai.types.LiveServerToolCallDict":[[0,4,1,"","function_calls"]],"genai.types.LogprobsResult":[[0,6,1,"","chosen_candidates"],[0,6,1,"","log_probability_sum"],[0,6,1,"","top_candidates"]],"genai.types.LogprobsResultCandidate":[[0,6,1,"","log_probability"],[0,6,1,"","token"],[0,6,1,"","token_id"]],"genai.types.LogprobsResultCandidateDict":[[0,4,1,"","log_probability"],[0,4,1,"","token"],[0,4,1,"","token_id"]],"genai.types.LogprobsResultDict":[[0,4,1,"","chosen_candidates"],[0,4,1,"","log_probability_sum"],[0,4,1,"","top_candidates"]],"genai.types.LogprobsResultTopCandidates":[[0,6,1,"","candidates"]],"genai.types.LogprobsResultTopCandidatesDict":[[0,4,1,"","candidates"]],"genai.types.MaskReferenceConfig":[[0,6,1,"","mask_dilation"],[0,6,1,"","mask_mode"],[0,6,1,"","segmentation_classes"]],"genai.types.MaskReferenceConfigDict":[[0,4,1,"","mask_dilation"],[0,4,1,"","mask_mode"],[0,4,1,"","segmentation_classes"]],"genai.types.MaskReferenceImage":[[0,6,1,"","config"],[0,6,1,"","mask_image_config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.MaskReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.MaskReferenceMode":[[0,4,1,"","MASK_MODE_BACKGROUND"],[0,4,1,"","MASK_MODE_DEFAULT"],[0,4,1,"","MASK_MODE_FOREGROUND"],[0,4,1,"","MASK_MODE_SEMANTIC"],[0,4,1,"","MASK_MODE_USER_PROVIDED"]],"genai.types.MatchOperation":[[0,4,1,"","EXACT_MATCH"],[0,4,1,"","MATCH_OPERATION_UNSPECIFIED"],[0,4,1,"","PARTIAL_MATCH"],[0,4,1,"","REGEX_CONTAINS"]],"genai.types.McpServer":[[0,6,1,"","name"],[0,6,1,"","streamable_http_transport"]],"genai.types.McpServerDict":[[0,4,1,"","name"],[0,4,1,"","streamable_http_transport"]],"genai.types.MediaModality":[[0,4,1,"","AUDIO"],[0,4,1,"","DOCUMENT"],[0,4,1,"","IMAGE"],[0,4,1,"","MODALITY_UNSPECIFIED"],[0,4,1,"","TEXT"],[0,4,1,"","VIDEO"]],"genai.types.MediaResolution":[[0,4,1,"","MEDIA_RESOLUTION_HIGH"],[0,4,1,"","MEDIA_RESOLUTION_LOW"],[0,4,1,"","MEDIA_RESOLUTION_MEDIUM"],[0,4,1,"","MEDIA_RESOLUTION_UNSPECIFIED"]],"genai.types.Metric":[[0,6,1,"","aggregate_summary_fn"],[0,6,1,"","custom_function"],[0,6,1,"","judge_model_system_instruction"],[0,1,1,"","model_post_init"],[0,6,1,"","name"],[0,6,1,"","parse_and_reduce_fn"],[0,6,1,"","prompt_template"],[0,6,1,"","return_raw_output"],[0,1,1,"","to_yaml_file"],[0,7,1,"","validate_name"]],"genai.types.MetricDict":[[0,4,1,"","aggregate_summary_fn"],[0,4,1,"","custom_function"],[0,4,1,"","judge_model_system_instruction"],[0,4,1,"","name"],[0,4,1,"","parse_and_reduce_fn"],[0,4,1,"","prompt_template"],[0,4,1,"","return_raw_output"]],"genai.types.Modality":[[0,4,1,"","AUDIO"],[0,4,1,"","IMAGE"],[0,4,1,"","MODALITY_UNSPECIFIED"],[0,4,1,"","TEXT"],[0,4,1,"","VIDEO"]],"genai.types.ModalityTokenCount":[[0,6,1,"","modality"],[0,6,1,"","token_count"]],"genai.types.ModalityTokenCountDict":[[0,4,1,"","modality"],[0,4,1,"","token_count"]],"genai.types.Model":[[0,6,1,"","checkpoints"],[0,6,1,"","default_checkpoint_id"],[0,6,1,"","description"],[0,6,1,"","display_name"],[0,6,1,"","endpoints"],[0,6,1,"","input_token_limit"],[0,6,1,"","labels"],[0,6,1,"","max_temperature"],[0,6,1,"","name"],[0,6,1,"","output_token_limit"],[0,6,1,"","supported_actions"],[0,6,1,"","temperature"],[0,6,1,"","thinking"],[0,6,1,"","top_k"],[0,6,1,"","top_p"],[0,6,1,"","tuned_model_info"],[0,6,1,"","version"]],"genai.types.ModelArmorConfig":[[0,6,1,"","prompt_template_name"],[0,6,1,"","response_template_name"]],"genai.types.ModelArmorConfigDict":[[0,4,1,"","prompt_template_name"],[0,4,1,"","response_template_name"]],"genai.types.ModelContent":[[0,6,1,"","parts"],[0,6,1,"","role"]],"genai.types.ModelDict":[[0,4,1,"","checkpoints"],[0,4,1,"","default_checkpoint_id"],[0,4,1,"","description"],[0,4,1,"","display_name"],[0,4,1,"","endpoints"],[0,4,1,"","input_token_limit"],[0,4,1,"","labels"],[0,4,1,"","max_temperature"],[0,4,1,"","name"],[0,4,1,"","output_token_limit"],[0,4,1,"","supported_actions"],[0,4,1,"","temperature"],[0,4,1,"","thinking"],[0,4,1,"","top_k"],[0,4,1,"","top_p"],[0,4,1,"","tuned_model_info"],[0,4,1,"","version"]],"genai.types.ModelSelectionConfig":[[0,6,1,"","feature_selection_preference"]],"genai.types.ModelSelectionConfigDict":[[0,4,1,"","feature_selection_preference"]],"genai.types.ModelStage":[[0,4,1,"","DEPRECATED"],[0,4,1,"","EXPERIMENTAL"],[0,4,1,"","LEGACY"],[0,4,1,"","MODEL_STAGE_UNSPECIFIED"],[0,4,1,"","PREVIEW"],[0,4,1,"","RETIRED"],[0,4,1,"","STABLE"],[0,4,1,"","UNSTABLE_EXPERIMENTAL"]],"genai.types.ModelStatus":[[0,6,1,"","message"],[0,6,1,"","model_stage"],[0,6,1,"","retirement_time"]],"genai.types.ModelStatusDict":[[0,4,1,"","message"],[0,4,1,"","model_stage"],[0,4,1,"","retirement_time"]],"genai.types.MultiSpeakerVoiceConfig":[[0,6,1,"","speaker_voice_configs"]],"genai.types.MultiSpeakerVoiceConfigDict":[[0,4,1,"","speaker_voice_configs"]],"genai.types.MusicGenerationMode":[[0,4,1,"","DIVERSITY"],[0,4,1,"","MUSIC_GENERATION_MODE_UNSPECIFIED"],[0,4,1,"","QUALITY"],[0,4,1,"","VOCALIZATION"]],"genai.types.Operation":[[0,4,1,"","done"],[0,4,1,"","error"],[0,1,1,"","from_api_response"],[0,4,1,"","metadata"],[0,4,1,"","name"]],"genai.types.Outcome":[[0,4,1,"","OUTCOME_DEADLINE_EXCEEDED"],[0,4,1,"","OUTCOME_FAILED"],[0,4,1,"","OUTCOME_OK"],[0,4,1,"","OUTCOME_UNSPECIFIED"]],"genai.types.OutputConfig":[[0,6,1,"","gcs_destination"]],"genai.types.OutputConfigDict":[[0,4,1,"","gcs_destination"]],"genai.types.OutputInfo":[[0,6,1,"","gcs_output_directory"]],"genai.types.OutputInfoDict":[[0,4,1,"","gcs_output_directory"]],"genai.types.PairwiseChoice":[[0,4,1,"","BASELINE"],[0,4,1,"","CANDIDATE"],[0,4,1,"","PAIRWISE_CHOICE_UNSPECIFIED"],[0,4,1,"","TIE"]],"genai.types.PairwiseMetricResult":[[0,6,1,"","custom_output"],[0,6,1,"","explanation"],[0,6,1,"","pairwise_choice"]],"genai.types.PairwiseMetricResultDict":[[0,4,1,"","custom_output"],[0,4,1,"","explanation"],[0,4,1,"","pairwise_choice"]],"genai.types.PairwiseMetricSpec":[[0,6,1,"","baseline_response_field_name"],[0,6,1,"","candidate_response_field_name"],[0,6,1,"","custom_output_format_config"],[0,6,1,"","metric_prompt_template"],[0,6,1,"","system_instruction"]],"genai.types.PairwiseMetricSpecDict":[[0,4,1,"","baseline_response_field_name"],[0,4,1,"","candidate_response_field_name"],[0,4,1,"","custom_output_format_config"],[0,4,1,"","metric_prompt_template"],[0,4,1,"","system_instruction"]],"genai.types.Part":[[0,1,1,"","as_image"],[0,6,1,"","audio_transcription"],[0,6,1,"","code_execution_result"],[0,6,1,"","executable_code"],[0,6,1,"","file_data"],[0,1,1,"","from_bytes"],[0,1,1,"","from_code_execution_result"],[0,1,1,"","from_executable_code"],[0,1,1,"","from_function_call"],[0,1,1,"","from_function_response"],[0,1,1,"","from_text"],[0,1,1,"","from_uri"],[0,6,1,"","function_call"],[0,6,1,"","function_response"],[0,6,1,"","inline_data"],[0,6,1,"","media_resolution"],[0,6,1,"","part_metadata"],[0,6,1,"","text"],[0,6,1,"","thought"],[0,6,1,"","thought_signature"],[0,6,1,"","tool_call"],[0,6,1,"","tool_response"],[0,6,1,"","video_metadata"]],"genai.types.PartDict":[[0,4,1,"","audio_transcription"],[0,4,1,"","code_execution_result"],[0,4,1,"","executable_code"],[0,4,1,"","file_data"],[0,4,1,"","function_call"],[0,4,1,"","function_response"],[0,4,1,"","inline_data"],[0,4,1,"","media_resolution"],[0,4,1,"","part_metadata"],[0,4,1,"","text"],[0,4,1,"","thought"],[0,4,1,"","thought_signature"],[0,4,1,"","tool_call"],[0,4,1,"","tool_response"],[0,4,1,"","video_metadata"]],"genai.types.PartMediaResolution":[[0,6,1,"","level"],[0,6,1,"","num_tokens"]],"genai.types.PartMediaResolutionDict":[[0,4,1,"","level"],[0,4,1,"","num_tokens"]],"genai.types.PartMediaResolutionLevel":[[0,4,1,"","MEDIA_RESOLUTION_HIGH"],[0,4,1,"","MEDIA_RESOLUTION_LOW"],[0,4,1,"","MEDIA_RESOLUTION_MEDIUM"],[0,4,1,"","MEDIA_RESOLUTION_ULTRA_HIGH"],[0,4,1,"","MEDIA_RESOLUTION_UNSPECIFIED"]],"genai.types.PartialArg":[[0,6,1,"","bool_value"],[0,6,1,"","json_path"],[0,6,1,"","null_value"],[0,6,1,"","number_value"],[0,6,1,"","string_value"],[0,6,1,"","will_continue"]],"genai.types.PartialArgDict":[[0,4,1,"","bool_value"],[0,4,1,"","json_path"],[0,4,1,"","null_value"],[0,4,1,"","number_value"],[0,4,1,"","string_value"],[0,4,1,"","will_continue"]],"genai.types.PartnerModelTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.PartnerModelTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.PersonGeneration":[[0,4,1,"","ALLOW_ADULT"],[0,4,1,"","ALLOW_ALL"],[0,4,1,"","DONT_ALLOW"]],"genai.types.PhishBlockThreshold":[[0,4,1,"","BLOCK_HIGHER_AND_ABOVE"],[0,4,1,"","BLOCK_HIGH_AND_ABOVE"],[0,4,1,"","BLOCK_LOW_AND_ABOVE"],[0,4,1,"","BLOCK_MEDIUM_AND_ABOVE"],[0,4,1,"","BLOCK_ONLY_EXTREMELY_HIGH"],[0,4,1,"","BLOCK_VERY_HIGH_AND_ABOVE"],[0,4,1,"","PHISH_BLOCK_THRESHOLD_UNSPECIFIED"]],"genai.types.PointwiseMetricResult":[[0,6,1,"","custom_output"],[0,6,1,"","explanation"],[0,6,1,"","score"]],"genai.types.PointwiseMetricResultDict":[[0,4,1,"","custom_output"],[0,4,1,"","explanation"],[0,4,1,"","score"]],"genai.types.PointwiseMetricSpec":[[0,6,1,"","custom_output_format_config"],[0,6,1,"","metric_prompt_template"],[0,6,1,"","system_instruction"]],"genai.types.PointwiseMetricSpecDict":[[0,4,1,"","custom_output_format_config"],[0,4,1,"","metric_prompt_template"],[0,4,1,"","system_instruction"]],"genai.types.PreTunedModel":[[0,6,1,"","base_model"],[0,6,1,"","checkpoint_id"],[0,6,1,"","tuned_model_name"]],"genai.types.PreTunedModelDict":[[0,4,1,"","base_model"],[0,4,1,"","checkpoint_id"],[0,4,1,"","tuned_model_name"]],"genai.types.PrebuiltVoiceConfig":[[0,6,1,"","voice_name"]],"genai.types.PrebuiltVoiceConfigDict":[[0,4,1,"","voice_name"]],"genai.types.PredefinedMetricSpec":[[0,6,1,"","metric_spec_name"],[0,6,1,"","metric_spec_parameters"]],"genai.types.PredefinedMetricSpecDict":[[0,4,1,"","metric_spec_name"],[0,4,1,"","metric_spec_parameters"]],"genai.types.PreferenceOptimizationDataStats":[[0,6,1,"","dropped_example_indices"],[0,6,1,"","dropped_example_reasons"],[0,6,1,"","score_variance_per_example_distribution"],[0,6,1,"","scores_distribution"],[0,6,1,"","total_billable_token_count"],[0,6,1,"","tuning_dataset_example_count"],[0,6,1,"","tuning_step_count"],[0,6,1,"","user_dataset_examples"],[0,6,1,"","user_input_token_distribution"],[0,6,1,"","user_output_token_distribution"]],"genai.types.PreferenceOptimizationDataStatsDict":[[0,4,1,"","dropped_example_indices"],[0,4,1,"","dropped_example_reasons"],[0,4,1,"","score_variance_per_example_distribution"],[0,4,1,"","scores_distribution"],[0,4,1,"","total_billable_token_count"],[0,4,1,"","tuning_dataset_example_count"],[0,4,1,"","tuning_step_count"],[0,4,1,"","user_dataset_examples"],[0,4,1,"","user_input_token_distribution"],[0,4,1,"","user_output_token_distribution"]],"genai.types.PreferenceOptimizationHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","beta"],[0,6,1,"","epoch_count"],[0,6,1,"","learning_rate_multiplier"]],"genai.types.PreferenceOptimizationHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","beta"],[0,4,1,"","epoch_count"],[0,4,1,"","learning_rate_multiplier"]],"genai.types.PreferenceOptimizationSpec":[[0,6,1,"","export_last_checkpoint_only"],[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.PreferenceOptimizationSpecDict":[[0,4,1,"","export_last_checkpoint_only"],[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.ProactivityConfig":[[0,6,1,"","proactive_audio"]],"genai.types.ProactivityConfigDict":[[0,4,1,"","proactive_audio"]],"genai.types.ProductImage":[[0,6,1,"","product_image"]],"genai.types.ProductImageDict":[[0,4,1,"","product_image"]],"genai.types.ProjectOperation":[[0,6,1,"","done"],[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","name"]],"genai.types.ProjectOperationDict":[[0,4,1,"","done"],[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","name"]],"genai.types.ProminentPeople":[[0,4,1,"","ALLOW_PROMINENT_PEOPLE"],[0,4,1,"","BLOCK_PROMINENT_PEOPLE"],[0,4,1,"","PROMINENT_PEOPLE_UNSPECIFIED"]],"genai.types.RagChunk":[[0,6,1,"","chunk_id"],[0,6,1,"","file_id"],[0,6,1,"","page_span"],[0,6,1,"","text"]],"genai.types.RagChunkDict":[[0,4,1,"","chunk_id"],[0,4,1,"","file_id"],[0,4,1,"","page_span"],[0,4,1,"","text"]],"genai.types.RagChunkPageSpan":[[0,6,1,"","first_page"],[0,6,1,"","last_page"]],"genai.types.RagChunkPageSpanDict":[[0,4,1,"","first_page"],[0,4,1,"","last_page"]],"genai.types.RagRetrievalConfig":[[0,6,1,"","filter"],[0,6,1,"","hybrid_search"],[0,6,1,"","ranking"],[0,6,1,"","top_k"]],"genai.types.RagRetrievalConfigDict":[[0,4,1,"","filter"],[0,4,1,"","hybrid_search"],[0,4,1,"","ranking"],[0,4,1,"","top_k"]],"genai.types.RagRetrievalConfigFilter":[[0,6,1,"","metadata_filter"],[0,6,1,"","vector_distance_threshold"],[0,6,1,"","vector_similarity_threshold"]],"genai.types.RagRetrievalConfigFilterDict":[[0,4,1,"","metadata_filter"],[0,4,1,"","vector_distance_threshold"],[0,4,1,"","vector_similarity_threshold"]],"genai.types.RagRetrievalConfigHybridSearch":[[0,6,1,"","alpha"]],"genai.types.RagRetrievalConfigHybridSearchDict":[[0,4,1,"","alpha"]],"genai.types.RagRetrievalConfigRanking":[[0,6,1,"","llm_ranker"],[0,6,1,"","rank_service"]],"genai.types.RagRetrievalConfigRankingDict":[[0,4,1,"","llm_ranker"],[0,4,1,"","rank_service"]],"genai.types.RagRetrievalConfigRankingLlmRanker":[[0,6,1,"","model_name"]],"genai.types.RagRetrievalConfigRankingLlmRankerDict":[[0,4,1,"","model_name"]],"genai.types.RagRetrievalConfigRankingRankService":[[0,6,1,"","model_name"]],"genai.types.RagRetrievalConfigRankingRankServiceDict":[[0,4,1,"","model_name"]],"genai.types.RawOutput":[[0,6,1,"","raw_output"]],"genai.types.RawOutputDict":[[0,4,1,"","raw_output"]],"genai.types.RawReferenceImage":[[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"]],"genai.types.RawReferenceImageDict":[[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.RealtimeInputConfig":[[0,6,1,"","activity_handling"],[0,6,1,"","automatic_activity_detection"],[0,6,1,"","turn_coverage"]],"genai.types.RealtimeInputConfigDict":[[0,4,1,"","activity_handling"],[0,4,1,"","automatic_activity_detection"],[0,4,1,"","turn_coverage"]],"genai.types.RecontextImageConfig":[[0,6,1,"","add_watermark"],[0,6,1,"","base_steps"],[0,6,1,"","enhance_prompt"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","number_of_images"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"],[0,6,1,"","seed"]],"genai.types.RecontextImageConfigDict":[[0,4,1,"","add_watermark"],[0,4,1,"","base_steps"],[0,4,1,"","enhance_prompt"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","number_of_images"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"],[0,4,1,"","seed"]],"genai.types.RecontextImageResponse":[[0,6,1,"","generated_images"]],"genai.types.RecontextImageResponseDict":[[0,4,1,"","generated_images"]],"genai.types.RecontextImageSource":[[0,6,1,"","person_image"],[0,6,1,"","product_images"],[0,6,1,"","prompt"]],"genai.types.RecontextImageSourceDict":[[0,4,1,"","person_image"],[0,4,1,"","product_images"],[0,4,1,"","prompt"]],"genai.types.RegisterFilesConfig":[[0,6,1,"","http_options"],[0,6,1,"","should_return_http_response"]],"genai.types.RegisterFilesConfigDict":[[0,4,1,"","http_options"],[0,4,1,"","should_return_http_response"]],"genai.types.RegisterFilesResponse":[[0,6,1,"","files"],[0,6,1,"","sdk_http_response"]],"genai.types.RegisterFilesResponseDict":[[0,4,1,"","files"],[0,4,1,"","sdk_http_response"]],"genai.types.ReinforcementTuningAutoraterScorer":[[0,6,1,"","autorater_config"],[0,6,1,"","autorater_prompt"],[0,6,1,"","autorater_response_parse_config"],[0,6,1,"","exact_match_scorer"],[0,6,1,"","parsed_response_conversion_scorer"]],"genai.types.ReinforcementTuningAutoraterScorerDict":[[0,4,1,"","autorater_config"],[0,4,1,"","autorater_prompt"],[0,4,1,"","autorater_response_parse_config"],[0,4,1,"","exact_match_scorer"],[0,4,1,"","parsed_response_conversion_scorer"]],"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorer":[[0,6,1,"","correct_answer_reward"],[0,6,1,"","expression"],[0,6,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningAutoraterScorerExactMatchScorerDict":[[0,4,1,"","correct_answer_reward"],[0,4,1,"","expression"],[0,4,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningCloudRunRewardScorer":[[0,6,1,"","cloud_run_uri"]],"genai.types.ReinforcementTuningCloudRunRewardScorerDict":[[0,4,1,"","cloud_run_uri"]],"genai.types.ReinforcementTuningCodeExecutionRewardScorer":[[0,6,1,"","python_code_snippet"]],"genai.types.ReinforcementTuningCodeExecutionRewardScorerDict":[[0,4,1,"","python_code_snippet"]],"genai.types.ReinforcementTuningExample":[[0,6,1,"","contents"],[0,6,1,"","references"],[0,6,1,"","system_instruction"]],"genai.types.ReinforcementTuningExampleDict":[[0,4,1,"","contents"],[0,4,1,"","references"],[0,4,1,"","system_instruction"]],"genai.types.ReinforcementTuningHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","batch_size"],[0,6,1,"","checkpoint_interval"],[0,6,1,"","epoch_count"],[0,6,1,"","evaluate_interval"],[0,6,1,"","learning_rate_multiplier"],[0,6,1,"","max_output_tokens"],[0,6,1,"","samples_per_prompt"],[0,6,1,"","thinking_budget"],[0,6,1,"","thinking_level"]],"genai.types.ReinforcementTuningHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","batch_size"],[0,4,1,"","checkpoint_interval"],[0,4,1,"","epoch_count"],[0,4,1,"","evaluate_interval"],[0,4,1,"","learning_rate_multiplier"],[0,4,1,"","max_output_tokens"],[0,4,1,"","samples_per_prompt"],[0,4,1,"","thinking_budget"],[0,4,1,"","thinking_level"]],"genai.types.ReinforcementTuningParseResponseConfig":[[0,6,1,"","parse_type"],[0,6,1,"","regex_extract_expression"]],"genai.types.ReinforcementTuningParseResponseConfigDict":[[0,4,1,"","parse_type"],[0,4,1,"","regex_extract_expression"]],"genai.types.ReinforcementTuningRewardInfo":[[0,6,1,"","reward"],[0,6,1,"","user_requested_aux_info"]],"genai.types.ReinforcementTuningRewardInfoDict":[[0,4,1,"","reward"],[0,4,1,"","user_requested_aux_info"]],"genai.types.ReinforcementTuningSpec":[[0,6,1,"","composite_reward_config"],[0,6,1,"","hyper_parameters"],[0,6,1,"","single_reward_config"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.ReinforcementTuningSpecDict":[[0,4,1,"","composite_reward_config"],[0,4,1,"","hyper_parameters"],[0,4,1,"","single_reward_config"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.ReinforcementTuningStringMatchRewardScorer":[[0,6,1,"","correct_answer_reward"],[0,6,1,"","json_match_expression"],[0,6,1,"","string_match_expression"],[0,6,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningStringMatchRewardScorerDict":[[0,4,1,"","correct_answer_reward"],[0,4,1,"","json_match_expression"],[0,4,1,"","string_match_expression"],[0,4,1,"","wrong_answer_reward"]],"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpression":[[0,6,1,"","key_name"],[0,6,1,"","value_string_match_expression"]],"genai.types.ReinforcementTuningStringMatchRewardScorerJsonMatchExpressionDict":[[0,4,1,"","key_name"],[0,4,1,"","value_string_match_expression"]],"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpression":[[0,6,1,"","expression"],[0,6,1,"","match_operation"]],"genai.types.ReinforcementTuningStringMatchRewardScorerStringMatchExpressionDict":[[0,4,1,"","expression"],[0,4,1,"","match_operation"]],"genai.types.ReinforcementTuningThinkingLevel":[[0,4,1,"","HIGH"],[0,4,1,"","MINIMAL"],[0,4,1,"","REINFORCEMENT_TUNING_THINKING_LEVEL_UNSPECIFIED"]],"genai.types.ReinforcementTuningUserDatasetExamples":[[0,6,1,"","user_dataset_examples"]],"genai.types.ReinforcementTuningUserDatasetExamplesDict":[[0,4,1,"","user_dataset_examples"]],"genai.types.ReplayFile":[[0,6,1,"","interactions"],[0,6,1,"","replay_id"]],"genai.types.ReplayFileDict":[[0,4,1,"","interactions"],[0,4,1,"","replay_id"]],"genai.types.ReplayInteraction":[[0,6,1,"","request"],[0,6,1,"","response"]],"genai.types.ReplayInteractionDict":[[0,4,1,"","request"],[0,4,1,"","response"]],"genai.types.ReplayRequest":[[0,6,1,"","body_segments"],[0,6,1,"","headers"],[0,6,1,"","method"],[0,6,1,"","url"]],"genai.types.ReplayRequestDict":[[0,4,1,"","body_segments"],[0,4,1,"","headers"],[0,4,1,"","method"],[0,4,1,"","url"]],"genai.types.ReplayResponse":[[0,6,1,"","body_segments"],[0,6,1,"","headers"],[0,6,1,"","sdk_response_segments"],[0,6,1,"","status_code"]],"genai.types.ReplayResponseDict":[[0,4,1,"","body_segments"],[0,4,1,"","headers"],[0,4,1,"","sdk_response_segments"],[0,4,1,"","status_code"]],"genai.types.ReplicatedVoiceConfig":[[0,6,1,"","consent_audio"],[0,6,1,"","mime_type"],[0,6,1,"","voice_consent_signature"],[0,6,1,"","voice_sample_audio"]],"genai.types.ReplicatedVoiceConfigDict":[[0,4,1,"","consent_audio"],[0,4,1,"","mime_type"],[0,4,1,"","voice_consent_signature"],[0,4,1,"","voice_sample_audio"]],"genai.types.ResourceScope":[[0,4,1,"","COLLECTION"]],"genai.types.ResponseFormat":[[0,6,1,"","audio"],[0,6,1,"","image"],[0,6,1,"","text"],[0,6,1,"","video"]],"genai.types.ResponseFormatDict":[[0,4,1,"","audio"],[0,4,1,"","image"],[0,4,1,"","text"],[0,4,1,"","video"]],"genai.types.ResponseParseType":[[0,4,1,"","IDENTITY"],[0,4,1,"","REGEX_EXTRACT"],[0,4,1,"","RESPONSE_PARSE_TYPE_UNSPECIFIED"]],"genai.types.Retrieval":[[0,6,1,"","disable_attribution"],[0,6,1,"","external_api"],[0,6,1,"","vertex_ai_search"],[0,6,1,"","vertex_rag_store"]],"genai.types.RetrievalConfig":[[0,6,1,"","language_code"],[0,6,1,"","lat_lng"]],"genai.types.RetrievalConfigDict":[[0,4,1,"","language_code"],[0,4,1,"","lat_lng"]],"genai.types.RetrievalDict":[[0,4,1,"","disable_attribution"],[0,4,1,"","external_api"],[0,4,1,"","vertex_ai_search"],[0,4,1,"","vertex_rag_store"]],"genai.types.RetrievalMetadata":[[0,6,1,"","google_search_dynamic_retrieval_score"]],"genai.types.RetrievalMetadataDict":[[0,4,1,"","google_search_dynamic_retrieval_score"]],"genai.types.RougeMetricValue":[[0,6,1,"","score"]],"genai.types.RougeMetricValueDict":[[0,4,1,"","score"]],"genai.types.RougeSpec":[[0,6,1,"","rouge_type"],[0,6,1,"","split_summaries"],[0,6,1,"","use_stemmer"]],"genai.types.RougeSpecDict":[[0,4,1,"","rouge_type"],[0,4,1,"","split_summaries"],[0,4,1,"","use_stemmer"]],"genai.types.RubricContentType":[[0,4,1,"","NL_QUESTION_ANSWER"],[0,4,1,"","PROPERTY"],[0,4,1,"","PYTHON_CODE_ASSERTION"],[0,4,1,"","RUBRIC_CONTENT_TYPE_UNSPECIFIED"]],"genai.types.RubricGenerationSpec":[[0,6,1,"","prompt_template"],[0,6,1,"","rubric_content_type"],[0,6,1,"","rubric_type_ontology"]],"genai.types.RubricGenerationSpecDict":[[0,4,1,"","prompt_template"],[0,4,1,"","rubric_content_type"],[0,4,1,"","rubric_type_ontology"]],"genai.types.SafetyAttributes":[[0,6,1,"","categories"],[0,6,1,"","content_type"],[0,6,1,"","scores"]],"genai.types.SafetyAttributesDict":[[0,4,1,"","categories"],[0,4,1,"","content_type"],[0,4,1,"","scores"]],"genai.types.SafetyFilterLevel":[[0,4,1,"","BLOCK_LOW_AND_ABOVE"],[0,4,1,"","BLOCK_MEDIUM_AND_ABOVE"],[0,4,1,"","BLOCK_NONE"],[0,4,1,"","BLOCK_ONLY_HIGH"]],"genai.types.SafetyPolicy":[[0,4,1,"","ACCOUNT_CREATION"],[0,4,1,"","COMMUNICATION_TOOL"],[0,4,1,"","DATA_MODIFICATION"],[0,4,1,"","FINANCIAL_TRANSACTIONS"],[0,4,1,"","LEGAL_TERMS_AND_AGREEMENTS"],[0,4,1,"","SAFETY_POLICY_UNSPECIFIED"],[0,4,1,"","SENSITIVE_DATA_MODIFICATION"],[0,4,1,"","USER_CONSENT_MANAGEMENT"]],"genai.types.SafetyRating":[[0,6,1,"","blocked"],[0,6,1,"","category"],[0,6,1,"","overwritten_threshold"],[0,6,1,"","probability"],[0,6,1,"","probability_score"],[0,6,1,"","severity"],[0,6,1,"","severity_score"]],"genai.types.SafetyRatingDict":[[0,4,1,"","blocked"],[0,4,1,"","category"],[0,4,1,"","overwritten_threshold"],[0,4,1,"","probability"],[0,4,1,"","probability_score"],[0,4,1,"","severity"],[0,4,1,"","severity_score"]],"genai.types.SafetySetting":[[0,6,1,"","category"],[0,6,1,"","method"],[0,6,1,"","threshold"]],"genai.types.SafetySettingDict":[[0,4,1,"","category"],[0,4,1,"","method"],[0,4,1,"","threshold"]],"genai.types.Scale":[[0,4,1,"","A_FLAT_MAJOR_F_MINOR"],[0,4,1,"","A_MAJOR_G_FLAT_MINOR"],[0,4,1,"","B_FLAT_MAJOR_G_MINOR"],[0,4,1,"","B_MAJOR_A_FLAT_MINOR"],[0,4,1,"","C_MAJOR_A_MINOR"],[0,4,1,"","D_FLAT_MAJOR_B_FLAT_MINOR"],[0,4,1,"","D_MAJOR_B_MINOR"],[0,4,1,"","E_FLAT_MAJOR_C_MINOR"],[0,4,1,"","E_MAJOR_D_FLAT_MINOR"],[0,4,1,"","F_MAJOR_D_MINOR"],[0,4,1,"","G_FLAT_MAJOR_E_FLAT_MINOR"],[0,4,1,"","G_MAJOR_E_MINOR"],[0,4,1,"","SCALE_UNSPECIFIED"]],"genai.types.Schema":[[0,6,1,"","additional_properties"],[0,6,1,"","any_of"],[0,6,1,"","default"],[0,6,1,"","defs"],[0,6,1,"","description"],[0,6,1,"","enum"],[0,6,1,"","example"],[0,6,1,"","format"],[0,1,1,"","from_json_schema"],[0,6,1,"","items"],[0,2,1,"","json_schema"],[0,6,1,"","max_items"],[0,6,1,"","max_length"],[0,6,1,"","max_properties"],[0,6,1,"","maximum"],[0,6,1,"","min_items"],[0,6,1,"","min_length"],[0,6,1,"","min_properties"],[0,6,1,"","minimum"],[0,6,1,"","nullable"],[0,6,1,"","pattern"],[0,6,1,"","properties"],[0,6,1,"","property_ordering"],[0,6,1,"","ref"],[0,6,1,"","required"],[0,6,1,"","title"],[0,6,1,"","type"]],"genai.types.SchemaDict":[[0,4,1,"","additional_properties"],[0,4,1,"","any_of"],[0,4,1,"","default"],[0,4,1,"","defs"],[0,4,1,"","description"],[0,4,1,"","enum"],[0,4,1,"","example"],[0,4,1,"","format"],[0,4,1,"","max_items"],[0,4,1,"","max_length"],[0,4,1,"","max_properties"],[0,4,1,"","maximum"],[0,4,1,"","min_items"],[0,4,1,"","min_length"],[0,4,1,"","min_properties"],[0,4,1,"","minimum"],[0,4,1,"","nullable"],[0,4,1,"","pattern"],[0,4,1,"","properties"],[0,4,1,"","property_ordering"],[0,4,1,"","ref"],[0,4,1,"","required"],[0,4,1,"","title"],[0,4,1,"","type"]],"genai.types.ScribbleImage":[[0,6,1,"","image"]],"genai.types.ScribbleImageDict":[[0,4,1,"","image"]],"genai.types.SearchEntryPoint":[[0,6,1,"","rendered_content"],[0,6,1,"","sdk_blob"]],"genai.types.SearchEntryPointDict":[[0,4,1,"","rendered_content"],[0,4,1,"","sdk_blob"]],"genai.types.SearchTypes":[[0,6,1,"","image_search"],[0,6,1,"","web_search"]],"genai.types.SearchTypesDict":[[0,4,1,"","image_search"],[0,4,1,"","web_search"]],"genai.types.Segment":[[0,6,1,"","end_index"],[0,6,1,"","part_index"],[0,6,1,"","start_index"],[0,6,1,"","text"]],"genai.types.SegmentDict":[[0,4,1,"","end_index"],[0,4,1,"","part_index"],[0,4,1,"","start_index"],[0,4,1,"","text"]],"genai.types.SegmentImageConfig":[[0,6,1,"","binary_color_threshold"],[0,6,1,"","confidence_threshold"],[0,6,1,"","http_options"],[0,6,1,"","labels"],[0,6,1,"","mask_dilation"],[0,6,1,"","max_predictions"],[0,6,1,"","mode"]],"genai.types.SegmentImageConfigDict":[[0,4,1,"","binary_color_threshold"],[0,4,1,"","confidence_threshold"],[0,4,1,"","http_options"],[0,4,1,"","labels"],[0,4,1,"","mask_dilation"],[0,4,1,"","max_predictions"],[0,4,1,"","mode"]],"genai.types.SegmentImageResponse":[[0,6,1,"","generated_masks"]],"genai.types.SegmentImageResponseDict":[[0,4,1,"","generated_masks"]],"genai.types.SegmentImageSource":[[0,6,1,"","image"],[0,6,1,"","prompt"],[0,6,1,"","scribble_image"]],"genai.types.SegmentImageSourceDict":[[0,4,1,"","image"],[0,4,1,"","prompt"],[0,4,1,"","scribble_image"]],"genai.types.SegmentMode":[[0,4,1,"","BACKGROUND"],[0,4,1,"","FOREGROUND"],[0,4,1,"","INTERACTIVE"],[0,4,1,"","PROMPT"],[0,4,1,"","SEMANTIC"]],"genai.types.ServiceTier":[[0,4,1,"","FLEX"],[0,4,1,"","PRIORITY"],[0,4,1,"","STANDARD"],[0,4,1,"","UNSPECIFIED"]],"genai.types.SessionResumptionConfig":[[0,6,1,"","handle"],[0,6,1,"","transparent"]],"genai.types.SessionResumptionConfigDict":[[0,4,1,"","handle"],[0,4,1,"","transparent"]],"genai.types.SingleEmbedContentResponse":[[0,6,1,"","embedding"],[0,6,1,"","token_count"]],"genai.types.SingleEmbedContentResponseDict":[[0,4,1,"","embedding"],[0,4,1,"","token_count"]],"genai.types.SingleReinforcementTuningRewardConfig":[[0,6,1,"","autorater_scorer"],[0,6,1,"","cloud_run_reward_scorer"],[0,6,1,"","code_execution_reward_scorer"],[0,6,1,"","parse_response_config"],[0,6,1,"","reward_name"],[0,6,1,"","string_match_reward_scorer"]],"genai.types.SingleReinforcementTuningRewardConfigDict":[[0,4,1,"","autorater_scorer"],[0,4,1,"","cloud_run_reward_scorer"],[0,4,1,"","code_execution_reward_scorer"],[0,4,1,"","parse_response_config"],[0,4,1,"","reward_name"],[0,4,1,"","string_match_reward_scorer"]],"genai.types.SlidingWindow":[[0,6,1,"","target_tokens"]],"genai.types.SlidingWindowDict":[[0,4,1,"","target_tokens"]],"genai.types.SpeakerVoiceConfig":[[0,6,1,"","speaker"],[0,6,1,"","voice_config"]],"genai.types.SpeakerVoiceConfigDict":[[0,4,1,"","speaker"],[0,4,1,"","voice_config"]],"genai.types.SpeechConfig":[[0,6,1,"","language_code"],[0,6,1,"","multi_speaker_voice_config"],[0,6,1,"","voice_config"]],"genai.types.SpeechConfigDict":[[0,4,1,"","language_code"],[0,4,1,"","multi_speaker_voice_config"],[0,4,1,"","voice_config"]],"genai.types.StartSensitivity":[[0,4,1,"","START_SENSITIVITY_HIGH"],[0,4,1,"","START_SENSITIVITY_LOW"],[0,4,1,"","START_SENSITIVITY_UNSPECIFIED"]],"genai.types.StreamableHttpTransport":[[0,6,1,"","headers"],[0,6,1,"","sse_read_timeout"],[0,6,1,"","terminate_on_close"],[0,6,1,"","timeout"],[0,6,1,"","url"]],"genai.types.StreamableHttpTransportDict":[[0,4,1,"","headers"],[0,4,1,"","sse_read_timeout"],[0,4,1,"","terminate_on_close"],[0,4,1,"","timeout"],[0,4,1,"","url"]],"genai.types.StringList":[[0,6,1,"","values"]],"genai.types.StyleReferenceConfig":[[0,6,1,"","style_description"]],"genai.types.StyleReferenceConfigDict":[[0,4,1,"","style_description"]],"genai.types.StyleReferenceImage":[[0,6,1,"","config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"],[0,6,1,"","style_image_config"]],"genai.types.StyleReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.SubjectReferenceConfig":[[0,6,1,"","subject_description"],[0,6,1,"","subject_type"]],"genai.types.SubjectReferenceConfigDict":[[0,4,1,"","subject_description"],[0,4,1,"","subject_type"]],"genai.types.SubjectReferenceImage":[[0,6,1,"","config"],[0,6,1,"","reference_id"],[0,6,1,"","reference_image"],[0,6,1,"","reference_type"],[0,6,1,"","subject_image_config"]],"genai.types.SubjectReferenceImageDict":[[0,4,1,"","config"],[0,4,1,"","reference_id"],[0,4,1,"","reference_image"],[0,4,1,"","reference_type"]],"genai.types.SubjectReferenceType":[[0,4,1,"","SUBJECT_TYPE_ANIMAL"],[0,4,1,"","SUBJECT_TYPE_DEFAULT"],[0,4,1,"","SUBJECT_TYPE_PERSON"],[0,4,1,"","SUBJECT_TYPE_PRODUCT"]],"genai.types.SupervisedHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","batch_size"],[0,6,1,"","epoch_count"],[0,6,1,"","learning_rate"],[0,6,1,"","learning_rate_multiplier"]],"genai.types.SupervisedHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","batch_size"],[0,4,1,"","epoch_count"],[0,4,1,"","learning_rate"],[0,4,1,"","learning_rate_multiplier"]],"genai.types.SupervisedTuningDataStats":[[0,6,1,"","dropped_example_reasons"],[0,6,1,"","total_billable_character_count"],[0,6,1,"","total_billable_token_count"],[0,6,1,"","total_truncated_example_count"],[0,6,1,"","total_tuning_character_count"],[0,6,1,"","truncated_example_indices"],[0,6,1,"","tuning_dataset_example_count"],[0,6,1,"","tuning_step_count"],[0,6,1,"","user_dataset_examples"],[0,6,1,"","user_input_token_distribution"],[0,6,1,"","user_message_per_example_distribution"],[0,6,1,"","user_output_token_distribution"]],"genai.types.SupervisedTuningDataStatsDict":[[0,4,1,"","dropped_example_reasons"],[0,4,1,"","total_billable_character_count"],[0,4,1,"","total_billable_token_count"],[0,4,1,"","total_truncated_example_count"],[0,4,1,"","total_tuning_character_count"],[0,4,1,"","truncated_example_indices"],[0,4,1,"","tuning_dataset_example_count"],[0,4,1,"","tuning_step_count"],[0,4,1,"","user_dataset_examples"],[0,4,1,"","user_input_token_distribution"],[0,4,1,"","user_message_per_example_distribution"],[0,4,1,"","user_output_token_distribution"]],"genai.types.SupervisedTuningDatasetDistribution":[[0,6,1,"","billable_sum"],[0,6,1,"","buckets"],[0,6,1,"","max"],[0,6,1,"","mean"],[0,6,1,"","median"],[0,6,1,"","min"],[0,6,1,"","p5"],[0,6,1,"","p95"],[0,6,1,"","sum"]],"genai.types.SupervisedTuningDatasetDistributionDatasetBucket":[[0,6,1,"","count"],[0,6,1,"","left"],[0,6,1,"","right"]],"genai.types.SupervisedTuningDatasetDistributionDatasetBucketDict":[[0,4,1,"","count"],[0,4,1,"","left"],[0,4,1,"","right"]],"genai.types.SupervisedTuningDatasetDistributionDict":[[0,4,1,"","billable_sum"],[0,4,1,"","buckets"],[0,4,1,"","max"],[0,4,1,"","mean"],[0,4,1,"","median"],[0,4,1,"","min"],[0,4,1,"","p5"],[0,4,1,"","p95"],[0,4,1,"","sum"]],"genai.types.SupervisedTuningSpec":[[0,6,1,"","export_last_checkpoint_only"],[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","tuning_mode"],[0,6,1,"","validation_dataset_uri"]],"genai.types.SupervisedTuningSpecDict":[[0,4,1,"","export_last_checkpoint_only"],[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","tuning_mode"],[0,4,1,"","validation_dataset_uri"]],"genai.types.TestTableFile":[[0,6,1,"","comment"],[0,6,1,"","parameter_names"],[0,6,1,"","test_method"],[0,6,1,"","test_table"]],"genai.types.TestTableFileDict":[[0,4,1,"","comment"],[0,4,1,"","parameter_names"],[0,4,1,"","test_method"],[0,4,1,"","test_table"]],"genai.types.TestTableItem":[[0,6,1,"","exception_if_mldev"],[0,6,1,"","exception_if_vertex"],[0,6,1,"","has_union"],[0,6,1,"","ignore_keys"],[0,6,1,"","name"],[0,6,1,"","override_replay_id"],[0,6,1,"","parameters"],[0,6,1,"","skip_in_api_mode"]],"genai.types.TestTableItemDict":[[0,4,1,"","exception_if_mldev"],[0,4,1,"","exception_if_vertex"],[0,4,1,"","has_union"],[0,4,1,"","ignore_keys"],[0,4,1,"","name"],[0,4,1,"","override_replay_id"],[0,4,1,"","parameters"],[0,4,1,"","skip_in_api_mode"]],"genai.types.TextResponseFormat":[[0,6,1,"","jsonSchema"],[0,6,1,"","mime_type"]],"genai.types.TextResponseFormatDict":[[0,4,1,"","mime_type"],[0,4,1,"","schema"]],"genai.types.ThinkingConfig":[[0,6,1,"","include_thoughts"],[0,6,1,"","thinking_budget"],[0,6,1,"","thinking_level"]],"genai.types.ThinkingConfigDict":[[0,4,1,"","include_thoughts"],[0,4,1,"","thinking_budget"],[0,4,1,"","thinking_level"]],"genai.types.ThinkingLevel":[[0,4,1,"","HIGH"],[0,4,1,"","LOW"],[0,4,1,"","MEDIUM"],[0,4,1,"","MINIMAL"],[0,4,1,"","THINKING_LEVEL_UNSPECIFIED"]],"genai.types.TokensInfo":[[0,6,1,"","role"],[0,6,1,"","token_ids"],[0,6,1,"","tokens"]],"genai.types.TokensInfoDict":[[0,4,1,"","role"],[0,4,1,"","token_ids"],[0,4,1,"","tokens"]],"genai.types.Tool":[[0,6,1,"","code_execution"],[0,6,1,"","computer_use"],[0,6,1,"","enterprise_web_search"],[0,6,1,"","exa_ai_search"],[0,6,1,"","file_search"],[0,6,1,"","function_declarations"],[0,6,1,"","google_maps"],[0,6,1,"","google_search"],[0,6,1,"","google_search_retrieval"],[0,6,1,"","mcp_servers"],[0,6,1,"","parallel_ai_search"],[0,6,1,"","retrieval"],[0,6,1,"","url_context"]],"genai.types.ToolCall":[[0,6,1,"","args"],[0,6,1,"","id"],[0,6,1,"","tool_type"]],"genai.types.ToolCallDict":[[0,4,1,"","args"],[0,4,1,"","id"],[0,4,1,"","tool_type"]],"genai.types.ToolConfig":[[0,6,1,"","function_calling_config"],[0,6,1,"","include_server_side_tool_invocations"],[0,6,1,"","retrieval_config"]],"genai.types.ToolConfigDict":[[0,4,1,"","function_calling_config"],[0,4,1,"","include_server_side_tool_invocations"],[0,4,1,"","retrieval_config"]],"genai.types.ToolDict":[[0,4,1,"","code_execution"],[0,4,1,"","computer_use"],[0,4,1,"","enterprise_web_search"],[0,4,1,"","exa_ai_search"],[0,4,1,"","file_search"],[0,4,1,"","function_declarations"],[0,4,1,"","google_maps"],[0,4,1,"","google_search"],[0,4,1,"","google_search_retrieval"],[0,4,1,"","mcp_servers"],[0,4,1,"","parallel_ai_search"],[0,4,1,"","retrieval"],[0,4,1,"","url_context"]],"genai.types.ToolExaAiSearch":[[0,6,1,"","api_key"],[0,6,1,"","custom_configs"]],"genai.types.ToolExaAiSearchDict":[[0,4,1,"","api_key"],[0,4,1,"","custom_configs"]],"genai.types.ToolParallelAiSearch":[[0,6,1,"","api_key"],[0,6,1,"","custom_configs"]],"genai.types.ToolParallelAiSearchDict":[[0,4,1,"","api_key"],[0,4,1,"","custom_configs"]],"genai.types.ToolResponse":[[0,6,1,"","id"],[0,6,1,"","response"],[0,6,1,"","tool_type"]],"genai.types.ToolResponseDict":[[0,4,1,"","id"],[0,4,1,"","response"],[0,4,1,"","tool_type"]],"genai.types.ToolType":[[0,4,1,"","FILE_SEARCH"],[0,4,1,"","GOOGLE_MAPS"],[0,4,1,"","GOOGLE_SEARCH_IMAGE"],[0,4,1,"","GOOGLE_SEARCH_WEB"],[0,4,1,"","TOOL_TYPE_UNSPECIFIED"],[0,4,1,"","URL_CONTEXT"]],"genai.types.TrafficType":[[0,4,1,"","ON_DEMAND"],[0,4,1,"","ON_DEMAND_FLEX"],[0,4,1,"","ON_DEMAND_PRIORITY"],[0,4,1,"","PROVISIONED_THROUGHPUT"],[0,4,1,"","TRAFFIC_TYPE_UNSPECIFIED"]],"genai.types.Transcription":[[0,6,1,"","finished"],[0,6,1,"","language_code"],[0,6,1,"","speaker_label"],[0,6,1,"","text"],[0,6,1,"","words"]],"genai.types.TranscriptionDict":[[0,4,1,"","finished"],[0,4,1,"","language_code"],[0,4,1,"","speaker_label"],[0,4,1,"","text"],[0,4,1,"","words"]],"genai.types.TranslationConfig":[[0,6,1,"","echo_target_language"],[0,6,1,"","target_language_code"]],"genai.types.TranslationConfigDict":[[0,4,1,"","echo_target_language"],[0,4,1,"","target_language_code"]],"genai.types.TunedModel":[[0,6,1,"","checkpoints"],[0,6,1,"","endpoint"],[0,6,1,"","model"]],"genai.types.TunedModelCheckpoint":[[0,6,1,"","checkpoint_id"],[0,6,1,"","endpoint"],[0,6,1,"","epoch"],[0,6,1,"","step"]],"genai.types.TunedModelCheckpointDict":[[0,4,1,"","checkpoint_id"],[0,4,1,"","endpoint"],[0,4,1,"","epoch"],[0,4,1,"","step"]],"genai.types.TunedModelDict":[[0,4,1,"","checkpoints"],[0,4,1,"","endpoint"],[0,4,1,"","model"]],"genai.types.TunedModelInfo":[[0,6,1,"","base_model"],[0,6,1,"","create_time"],[0,6,1,"","update_time"]],"genai.types.TunedModelInfoDict":[[0,4,1,"","base_model"],[0,4,1,"","create_time"],[0,4,1,"","update_time"]],"genai.types.TuningDataStats":[[0,6,1,"","distillation_data_stats"],[0,6,1,"","preference_optimization_data_stats"],[0,6,1,"","reinforcement_tuning_data_stats"],[0,6,1,"","supervised_tuning_data_stats"]],"genai.types.TuningDataStatsDict":[[0,4,1,"","distillation_data_stats"],[0,4,1,"","preference_optimization_data_stats"],[0,4,1,"","reinforcement_tuning_data_stats"],[0,4,1,"","supervised_tuning_data_stats"]],"genai.types.TuningDataset":[[0,6,1,"","examples"],[0,6,1,"","gcs_uri"],[0,6,1,"","vertex_dataset_resource"]],"genai.types.TuningDatasetDict":[[0,4,1,"","examples"],[0,4,1,"","gcs_uri"],[0,4,1,"","vertex_dataset_resource"]],"genai.types.TuningExample":[[0,6,1,"","output"],[0,6,1,"","text_input"]],"genai.types.TuningExampleDict":[[0,4,1,"","output"],[0,4,1,"","text_input"]],"genai.types.TuningJob":[[0,6,1,"","base_model"],[0,6,1,"","create_time"],[0,6,1,"","custom_base_model"],[0,6,1,"","description"],[0,6,1,"","distillation_sampling_spec"],[0,6,1,"","distillation_spec"],[0,6,1,"","encryption_spec"],[0,6,1,"","end_time"],[0,6,1,"","error"],[0,6,1,"","evaluate_dataset_runs"],[0,6,1,"","evaluation_config"],[0,6,1,"","experiment"],[0,6,1,"","full_fine_tuning_spec"],[0,2,1,"","has_ended"],[0,2,1,"","has_succeeded"],[0,6,1,"","labels"],[0,6,1,"","name"],[0,6,1,"","output_uri"],[0,6,1,"","partner_model_tuning_spec"],[0,6,1,"","pipeline_job"],[0,6,1,"","pre_tuned_model"],[0,6,1,"","preference_optimization_spec"],[0,6,1,"","reinforcement_tuning_spec"],[0,6,1,"","sdk_http_response"],[0,6,1,"","service_account"],[0,6,1,"","start_time"],[0,6,1,"","state"],[0,6,1,"","supervised_tuning_spec"],[0,6,1,"","tuned_model"],[0,6,1,"","tuned_model_display_name"],[0,6,1,"","tuning_data_stats"],[0,6,1,"","tuning_job_metadata"],[0,6,1,"","tuning_job_state"],[0,6,1,"","update_time"],[0,6,1,"","veo_lora_tuning_spec"],[0,6,1,"","veo_tuning_spec"]],"genai.types.TuningJobDict":[[0,4,1,"","base_model"],[0,4,1,"","create_time"],[0,4,1,"","custom_base_model"],[0,4,1,"","description"],[0,4,1,"","distillation_sampling_spec"],[0,4,1,"","distillation_spec"],[0,4,1,"","encryption_spec"],[0,4,1,"","end_time"],[0,4,1,"","error"],[0,4,1,"","evaluate_dataset_runs"],[0,4,1,"","evaluation_config"],[0,4,1,"","experiment"],[0,4,1,"","full_fine_tuning_spec"],[0,4,1,"","labels"],[0,4,1,"","name"],[0,4,1,"","output_uri"],[0,4,1,"","partner_model_tuning_spec"],[0,4,1,"","pipeline_job"],[0,4,1,"","pre_tuned_model"],[0,4,1,"","preference_optimization_spec"],[0,4,1,"","reinforcement_tuning_spec"],[0,4,1,"","sdk_http_response"],[0,4,1,"","service_account"],[0,4,1,"","start_time"],[0,4,1,"","state"],[0,4,1,"","supervised_tuning_spec"],[0,4,1,"","tuned_model"],[0,4,1,"","tuned_model_display_name"],[0,4,1,"","tuning_data_stats"],[0,4,1,"","tuning_job_metadata"],[0,4,1,"","tuning_job_state"],[0,4,1,"","update_time"],[0,4,1,"","veo_lora_tuning_spec"],[0,4,1,"","veo_tuning_spec"]],"genai.types.TuningJobMetadata":[[0,6,1,"","completed_epoch_count"],[0,6,1,"","completed_step_count"]],"genai.types.TuningJobMetadataDict":[[0,4,1,"","completed_epoch_count"],[0,4,1,"","completed_step_count"]],"genai.types.TuningJobState":[[0,4,1,"","TUNING_JOB_STATE_POST_PROCESSING"],[0,4,1,"","TUNING_JOB_STATE_PROCESSING_DATASET"],[0,4,1,"","TUNING_JOB_STATE_TUNING"],[0,4,1,"","TUNING_JOB_STATE_UNSPECIFIED"],[0,4,1,"","TUNING_JOB_STATE_WAITING_FOR_CAPACITY"],[0,4,1,"","TUNING_JOB_STATE_WAITING_FOR_QUOTA"]],"genai.types.TuningMethod":[[0,4,1,"","DISTILLATION"],[0,4,1,"","PREFERENCE_TUNING"],[0,4,1,"","REINFORCEMENT_TUNING"],[0,4,1,"","SUPERVISED_FINE_TUNING"]],"genai.types.TuningMode":[[0,4,1,"","TUNING_MODE_FULL"],[0,4,1,"","TUNING_MODE_PEFT_ADAPTER"],[0,4,1,"","TUNING_MODE_UNSPECIFIED"]],"genai.types.TuningOperation":[[0,6,1,"","done"],[0,6,1,"","error"],[0,6,1,"","metadata"],[0,6,1,"","name"],[0,6,1,"","sdk_http_response"]],"genai.types.TuningOperationDict":[[0,4,1,"","done"],[0,4,1,"","error"],[0,4,1,"","metadata"],[0,4,1,"","name"],[0,4,1,"","sdk_http_response"]],"genai.types.TuningSpeed":[[0,4,1,"","FAST"],[0,4,1,"","REGULAR"],[0,4,1,"","TUNING_SPEED_UNSPECIFIED"]],"genai.types.TuningTask":[[0,4,1,"","TUNING_TASK_I2V"],[0,4,1,"","TUNING_TASK_R2V"],[0,4,1,"","TUNING_TASK_T2V"],[0,4,1,"","TUNING_TASK_UNSPECIFIED"]],"genai.types.TuningValidationDataset":[[0,6,1,"","gcs_uri"],[0,6,1,"","vertex_dataset_resource"]],"genai.types.TuningValidationDatasetDict":[[0,4,1,"","gcs_uri"],[0,4,1,"","vertex_dataset_resource"]],"genai.types.TurnCompleteReason":[[0,4,1,"","BLOCKLIST"],[0,4,1,"","GENERATED_AUDIO_SAFETY"],[0,4,1,"","GENERATED_CONTENT_BLOCKLIST"],[0,4,1,"","GENERATED_CONTENT_PROHIBITED"],[0,4,1,"","GENERATED_CONTENT_SAFETY"],[0,4,1,"","GENERATED_IMAGE_CELEBRITY"],[0,4,1,"","GENERATED_IMAGE_IDENTIFIABLE_PEOPLE"],[0,4,1,"","GENERATED_IMAGE_MINORS"],[0,4,1,"","GENERATED_IMAGE_PROHIBITED"],[0,4,1,"","GENERATED_IMAGE_PROMINENT_PEOPLE_DETECTED_BY_REWRITER"],[0,4,1,"","GENERATED_IMAGE_SAFETY"],[0,4,1,"","GENERATED_OTHER"],[0,4,1,"","GENERATED_VIDEO_SAFETY"],[0,4,1,"","IMAGE_PROHIBITED_INPUT_CONTENT"],[0,4,1,"","INPUT_IMAGE_CELEBRITY"],[0,4,1,"","INPUT_IMAGE_PHOTO_REALISTIC_CHILD_PROHIBITED"],[0,4,1,"","INPUT_IP_PROHIBITED"],[0,4,1,"","INPUT_OTHER"],[0,4,1,"","INPUT_TEXT_CONTAIN_PROMINENT_PERSON_PROHIBITED"],[0,4,1,"","INPUT_TEXT_NCII_PROHIBITED"],[0,4,1,"","MALFORMED_FUNCTION_CALL"],[0,4,1,"","MAX_REGENERATION_REACHED"],[0,4,1,"","NEED_MORE_INPUT"],[0,4,1,"","OUTPUT_IMAGE_IP_PROHIBITED"],[0,4,1,"","PROHIBITED_INPUT_CONTENT"],[0,4,1,"","RESPONSE_REJECTED"],[0,4,1,"","TURN_COMPLETE_REASON_UNSPECIFIED"],[0,4,1,"","UNSAFE_PROMPT_FOR_IMAGE_GENERATION"]],"genai.types.TurnCoverage":[[0,4,1,"","TURN_COVERAGE_UNSPECIFIED"],[0,4,1,"","TURN_INCLUDES_ALL_INPUT"],[0,4,1,"","TURN_INCLUDES_AUDIO_ACTIVITY_AND_ALL_VIDEO"],[0,4,1,"","TURN_INCLUDES_ONLY_ACTIVITY"]],"genai.types.Type":[[0,4,1,"","ARRAY"],[0,4,1,"","BOOLEAN"],[0,4,1,"","INTEGER"],[0,4,1,"","NULL"],[0,4,1,"","NUMBER"],[0,4,1,"","OBJECT"],[0,4,1,"","STRING"],[0,4,1,"","TYPE_UNSPECIFIED"]],"genai.types.UnifiedMetric":[[0,6,1,"","bleu_spec"],[0,6,1,"","computation_based_metric_spec"],[0,6,1,"","custom_code_execution_spec"],[0,6,1,"","llm_based_metric_spec"],[0,6,1,"","pointwise_metric_spec"],[0,6,1,"","predefined_metric_spec"],[0,6,1,"","rouge_spec"]],"genai.types.UnifiedMetricDict":[[0,4,1,"","bleu_spec"],[0,4,1,"","computation_based_metric_spec"],[0,4,1,"","custom_code_execution_spec"],[0,4,1,"","llm_based_metric_spec"],[0,4,1,"","pointwise_metric_spec"],[0,4,1,"","predefined_metric_spec"],[0,4,1,"","rouge_spec"]],"genai.types.UpdateCachedContentConfig":[[0,6,1,"","expire_time"],[0,6,1,"","http_options"],[0,6,1,"","ttl"]],"genai.types.UpdateCachedContentConfigDict":[[0,4,1,"","expire_time"],[0,4,1,"","http_options"],[0,4,1,"","ttl"]],"genai.types.UpdateModelConfig":[[0,6,1,"","default_checkpoint_id"],[0,6,1,"","description"],[0,6,1,"","display_name"],[0,6,1,"","http_options"]],"genai.types.UpdateModelConfigDict":[[0,4,1,"","default_checkpoint_id"],[0,4,1,"","description"],[0,4,1,"","display_name"],[0,4,1,"","http_options"]],"genai.types.UploadFileConfig":[[0,6,1,"","display_name"],[0,6,1,"","http_options"],[0,6,1,"","mime_type"],[0,6,1,"","name"]],"genai.types.UploadFileConfigDict":[[0,4,1,"","display_name"],[0,4,1,"","http_options"],[0,4,1,"","mime_type"],[0,4,1,"","name"]],"genai.types.UploadToFileSearchStoreConfig":[[0,6,1,"","chunking_config"],[0,6,1,"","custom_metadata"],[0,6,1,"","display_name"],[0,6,1,"","http_options"],[0,6,1,"","mime_type"],[0,6,1,"","should_return_http_response"]],"genai.types.UploadToFileSearchStoreConfigDict":[[0,4,1,"","chunking_config"],[0,4,1,"","custom_metadata"],[0,4,1,"","display_name"],[0,4,1,"","http_options"],[0,4,1,"","mime_type"],[0,4,1,"","should_return_http_response"]],"genai.types.UploadToFileSearchStoreOperation":[[0,1,1,"","from_api_response"],[0,6,1,"","response"]],"genai.types.UploadToFileSearchStoreResponse":[[0,6,1,"","document_name"],[0,6,1,"","parent"],[0,6,1,"","sdk_http_response"]],"genai.types.UploadToFileSearchStoreResponseDict":[[0,4,1,"","document_name"],[0,4,1,"","parent"],[0,4,1,"","sdk_http_response"]],"genai.types.UploadToFileSearchStoreResumableResponse":[[0,6,1,"","sdk_http_response"]],"genai.types.UploadToFileSearchStoreResumableResponseDict":[[0,4,1,"","sdk_http_response"]],"genai.types.UpscaleImageConfig":[[0,6,1,"","enhance_input_image"],[0,6,1,"","http_options"],[0,6,1,"","image_preservation_factor"],[0,6,1,"","include_rai_reason"],[0,6,1,"","labels"],[0,6,1,"","output_compression_quality"],[0,6,1,"","output_gcs_uri"],[0,6,1,"","output_mime_type"],[0,6,1,"","person_generation"],[0,6,1,"","safety_filter_level"]],"genai.types.UpscaleImageConfigDict":[[0,4,1,"","enhance_input_image"],[0,4,1,"","http_options"],[0,4,1,"","image_preservation_factor"],[0,4,1,"","include_rai_reason"],[0,4,1,"","labels"],[0,4,1,"","output_compression_quality"],[0,4,1,"","output_gcs_uri"],[0,4,1,"","output_mime_type"],[0,4,1,"","person_generation"],[0,4,1,"","safety_filter_level"]],"genai.types.UpscaleImageParameters":[[0,6,1,"","config"],[0,6,1,"","image"],[0,6,1,"","model"],[0,6,1,"","upscale_factor"]],"genai.types.UpscaleImageParametersDict":[[0,4,1,"","config"],[0,4,1,"","image"],[0,4,1,"","model"],[0,4,1,"","upscale_factor"]],"genai.types.UpscaleImageResponse":[[0,6,1,"","generated_images"],[0,6,1,"","sdk_http_response"]],"genai.types.UpscaleImageResponseDict":[[0,4,1,"","generated_images"],[0,4,1,"","sdk_http_response"]],"genai.types.UrlContextMetadata":[[0,6,1,"","url_metadata"]],"genai.types.UrlContextMetadataDict":[[0,4,1,"","url_metadata"]],"genai.types.UrlMetadata":[[0,6,1,"","retrieved_url"],[0,6,1,"","url_retrieval_status"]],"genai.types.UrlMetadataDict":[[0,4,1,"","retrieved_url"],[0,4,1,"","url_retrieval_status"]],"genai.types.UrlRetrievalStatus":[[0,4,1,"","URL_RETRIEVAL_STATUS_ERROR"],[0,4,1,"","URL_RETRIEVAL_STATUS_PAYWALL"],[0,4,1,"","URL_RETRIEVAL_STATUS_SUCCESS"],[0,4,1,"","URL_RETRIEVAL_STATUS_UNSAFE"],[0,4,1,"","URL_RETRIEVAL_STATUS_UNSPECIFIED"]],"genai.types.UsageMetadata":[[0,6,1,"","cache_tokens_details"],[0,6,1,"","cached_content_token_count"],[0,6,1,"","prompt_token_count"],[0,6,1,"","prompt_tokens_details"],[0,6,1,"","response_token_count"],[0,6,1,"","response_tokens_details"],[0,6,1,"","service_tier"],[0,6,1,"","thoughts_token_count"],[0,6,1,"","tool_use_prompt_token_count"],[0,6,1,"","tool_use_prompt_tokens_details"],[0,6,1,"","total_token_count"],[0,6,1,"","traffic_type"]],"genai.types.UsageMetadataDict":[[0,4,1,"","cache_tokens_details"],[0,4,1,"","cached_content_token_count"],[0,4,1,"","prompt_token_count"],[0,4,1,"","prompt_tokens_details"],[0,4,1,"","response_token_count"],[0,4,1,"","response_tokens_details"],[0,4,1,"","service_tier"],[0,4,1,"","thoughts_token_count"],[0,4,1,"","tool_use_prompt_token_count"],[0,4,1,"","tool_use_prompt_tokens_details"],[0,4,1,"","total_token_count"],[0,4,1,"","traffic_type"]],"genai.types.UserContent":[[0,6,1,"","parts"],[0,6,1,"","role"]],"genai.types.VadSignalType":[[0,4,1,"","VAD_SIGNAL_TYPE_EOS"],[0,4,1,"","VAD_SIGNAL_TYPE_SOS"],[0,4,1,"","VAD_SIGNAL_TYPE_UNSPECIFIED"]],"genai.types.ValidateRewardConfig":[[0,6,1,"","http_options"]],"genai.types.ValidateRewardConfigDict":[[0,4,1,"","http_options"]],"genai.types.ValidateRewardResponse":[[0,6,1,"","error"],[0,6,1,"","overall_reward"],[0,6,1,"","reward_info_details"],[0,6,1,"","sdk_http_response"]],"genai.types.ValidateRewardResponseDict":[[0,4,1,"","error"],[0,4,1,"","overall_reward"],[0,4,1,"","reward_info_details"],[0,4,1,"","sdk_http_response"]],"genai.types.VeoHyperParameters":[[0,6,1,"","adapter_size"],[0,6,1,"","epoch_count"],[0,6,1,"","learning_rate_multiplier"],[0,6,1,"","tuning_speed"],[0,6,1,"","tuning_task"],[0,6,1,"","veo_data_mixture_ratio"]],"genai.types.VeoHyperParametersDict":[[0,4,1,"","adapter_size"],[0,4,1,"","epoch_count"],[0,4,1,"","learning_rate_multiplier"],[0,4,1,"","tuning_speed"],[0,4,1,"","tuning_task"],[0,4,1,"","veo_data_mixture_ratio"]],"genai.types.VeoLoraTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"],[0,6,1,"","video_orientation"]],"genai.types.VeoLoraTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"],[0,4,1,"","video_orientation"]],"genai.types.VeoTuningSpec":[[0,6,1,"","hyper_parameters"],[0,6,1,"","training_dataset_uri"],[0,6,1,"","validation_dataset_uri"]],"genai.types.VeoTuningSpecDict":[[0,4,1,"","hyper_parameters"],[0,4,1,"","training_dataset_uri"],[0,4,1,"","validation_dataset_uri"]],"genai.types.VertexAISearch":[[0,6,1,"","data_store_specs"],[0,6,1,"","datastore"],[0,6,1,"","engine"],[0,6,1,"","filter"],[0,6,1,"","max_results"]],"genai.types.VertexAISearchDataStoreSpec":[[0,6,1,"","data_store"],[0,6,1,"","filter"]],"genai.types.VertexAISearchDataStoreSpecDict":[[0,4,1,"","data_store"],[0,4,1,"","filter"]],"genai.types.VertexAISearchDict":[[0,4,1,"","data_store_specs"],[0,4,1,"","datastore"],[0,4,1,"","engine"],[0,4,1,"","filter"],[0,4,1,"","max_results"]],"genai.types.VertexMultimodalDatasetDestination":[[0,6,1,"","bigquery_destination"],[0,6,1,"","display_name"]],"genai.types.VertexMultimodalDatasetDestinationDict":[[0,4,1,"","bigquery_destination"],[0,4,1,"","display_name"]],"genai.types.VertexRagStore":[[0,6,1,"","rag_corpora"],[0,6,1,"","rag_resources"],[0,6,1,"","rag_retrieval_config"],[0,6,1,"","similarity_top_k"],[0,6,1,"","store_context"],[0,6,1,"","vector_distance_threshold"]],"genai.types.VertexRagStoreDict":[[0,4,1,"","rag_corpora"],[0,4,1,"","rag_resources"],[0,4,1,"","rag_retrieval_config"],[0,4,1,"","similarity_top_k"],[0,4,1,"","store_context"],[0,4,1,"","vector_distance_threshold"]],"genai.types.VertexRagStoreRagResource":[[0,6,1,"","rag_corpus"],[0,6,1,"","rag_file_ids"]],"genai.types.VertexRagStoreRagResourceDict":[[0,4,1,"","rag_corpus"],[0,4,1,"","rag_file_ids"]],"genai.types.Video":[[0,1,1,"","from_file"],[0,6,1,"","mime_type"],[0,1,1,"","save"],[0,1,1,"","show"],[0,6,1,"","uri"],[0,6,1,"","video_bytes"]],"genai.types.VideoCompressionQuality":[[0,4,1,"","LOSSLESS"],[0,4,1,"","OPTIMIZED"]],"genai.types.VideoDict":[[0,4,1,"","mime_type"],[0,4,1,"","uri"],[0,4,1,"","video_bytes"]],"genai.types.VideoGenerationMask":[[0,6,1,"","image"],[0,6,1,"","mask_mode"]],"genai.types.VideoGenerationMaskDict":[[0,4,1,"","image"],[0,4,1,"","mask_mode"]],"genai.types.VideoGenerationMaskMode":[[0,4,1,"","INSERT"],[0,4,1,"","OUTPAINT"],[0,4,1,"","REMOVE"],[0,4,1,"","REMOVE_STATIC"]],"genai.types.VideoGenerationReferenceImage":[[0,6,1,"","image"],[0,6,1,"","reference_type"]],"genai.types.VideoGenerationReferenceImageDict":[[0,4,1,"","image"],[0,4,1,"","reference_type"]],"genai.types.VideoGenerationReferenceType":[[0,4,1,"","ASSET"],[0,4,1,"","STYLE"]],"genai.types.VideoMetadata":[[0,6,1,"","end_offset"],[0,6,1,"","fps"],[0,6,1,"","start_offset"]],"genai.types.VideoMetadataDict":[[0,4,1,"","end_offset"],[0,4,1,"","fps"],[0,4,1,"","start_offset"]],"genai.types.VideoOrientation":[[0,4,1,"","LANDSCAPE"],[0,4,1,"","PORTRAIT"],[0,4,1,"","VIDEO_ORIENTATION_UNSPECIFIED"]],"genai.types.VideoResponseFormat":[[0,6,1,"","aspect_ratio"],[0,6,1,"","delivery"],[0,6,1,"","duration"],[0,6,1,"","gcs_uri"]],"genai.types.VideoResponseFormatDict":[[0,4,1,"","aspect_ratio"],[0,4,1,"","delivery"],[0,4,1,"","duration"],[0,4,1,"","gcs_uri"]],"genai.types.VoiceActivity":[[0,6,1,"","audio_offset"],[0,6,1,"","voice_activity_type"]],"genai.types.VoiceActivityDetectionSignal":[[0,6,1,"","vad_signal_type"]],"genai.types.VoiceActivityDetectionSignalDict":[[0,4,1,"","vad_signal_type"]],"genai.types.VoiceActivityDict":[[0,4,1,"","audio_offset"],[0,4,1,"","voice_activity_type"]],"genai.types.VoiceActivityType":[[0,4,1,"","ACTIVITY_END"],[0,4,1,"","ACTIVITY_START"],[0,4,1,"","TYPE_UNSPECIFIED"]],"genai.types.VoiceConfig":[[0,6,1,"","prebuilt_voice_config"],[0,6,1,"","replicated_voice_config"]],"genai.types.VoiceConfigDict":[[0,4,1,"","prebuilt_voice_config"],[0,4,1,"","replicated_voice_config"]],"genai.types.VoiceConsentSignature":[[0,6,1,"","signature"]],"genai.types.VoiceConsentSignatureDict":[[0,4,1,"","signature"]],"genai.types.WebhookConfig":[[0,6,1,"","uris"],[0,6,1,"","user_metadata"]],"genai.types.WebhookConfigDict":[[0,4,1,"","uris"],[0,4,1,"","user_metadata"]],"genai.types.WeightedPrompt":[[0,6,1,"","text"],[0,6,1,"","weight"]],"genai.types.WeightedPromptDict":[[0,4,1,"","text"],[0,4,1,"","weight"]],"genai.types.WhiteSpaceConfig":[[0,6,1,"","max_overlap_tokens"],[0,6,1,"","max_tokens_per_chunk"]],"genai.types.WhiteSpaceConfigDict":[[0,4,1,"","max_overlap_tokens"],[0,4,1,"","max_tokens_per_chunk"]],"genai.types.WordInfo":[[0,6,1,"","end_offset"],[0,6,1,"","start_offset"],[0,6,1,"","word"]],"genai.types.WordInfoDict":[[0,4,1,"","end_offset"],[0,4,1,"","start_offset"],[0,4,1,"","word"]]},"objnames":{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","property","Python property"],"3":["py","module","Python module"],"4":["py","attribute","Python attribute"],"5":["py","pydantic_model","Python model"],"6":["py","pydantic_field","Python field"],"7":["py","pydantic_validator","Python validator"]},"objtypes":{"0":"py:class","1":"py:method","2":"py:property","3":"py:module","4":"py:attribute","5":"py:pydantic_model","6":"py:pydantic_field","7":"py:pydantic_validator"},"terms":{"":[0,1],"0":[0,1],"00":0,"001":[0,1],"002":[0,1],"004":0,"00z":0,"01":0,"01t00":0,"02t15":0,"03":0,"04":0,"05":0,"05530":1,"06":0,"09":0,"1":[0,1],"10":[0,1],"100":1,"1000":0,"101":0,"1080p":0,"11805v3":1,"12":0,"122":0,"123":0,"12345":0,"123456789":0,"1234567890123456789":0,"123a456b789c":0,"128":0,"1280x720":0,"16":[0,1],"16000":0,"180":0,"1841":0,"1k":0,"1p":0,"2":[0,1],"20":[0,1],"200":0,"2000":0,"201":0,"2014":0,"2020":0,"2024":0,"2025":0,"21":0,"2312":1,"23z":0,"24":0,"2403":1,"24khz":0,"25":0,"255":0,"256":0,"2a":0,"2b":0,"2k":0,"3":[0,1],"30":[0,1],"300":1,"301":0,"31":0,"32":0,"32768":0,"3339":0,"3600":[0,1],"383":0,"4":0,"40":0,"404":1,"408":0,"42":0,"429":0,"443":0,"456":0,"47":0,"4k":0,"5":[0,1],"50":0,"512":0,"512px":0,"5th":0,"5xx":0,"6":0,"60":0,"639":0,"64":0,"704x1280":0,"720p":0,"720x1280":0,"8":0,"80":0,"9":[0,1],"90":0,"90th":0,"95":1,"9535":0,"95th":0,"9999":0,"99th":0,"A":[0,1],"And":[0,1],"As":0,"By":[0,1],"For":[0,1],"If":[0,1],"In":[0,1],"It":[0,1],"NOT":0,"No":0,"Not":0,"On":0,"One":0,"Or":0,"The":[0,1],"Then":[0,1],"There":0,"These":0,"To":[0,1],"With":[0,1],"_":0,"_check_field_type_mismatch":0,"_check_image_config_typ":0,"_convert_literal_to_enum":0,"_gao":0,"_interact":0,"_regist":0,"_rename_citation_sourc":0,"_requestopt":1,"_uniongenericalia":0,"_validate_gcs_path":0,"_validate_mask_image_config":0,"a11":1,"a_flat_major_f_minor":[0,1,2],"a_major_g_flat_minor":[0,1,2],"ab":0,"abc":0,"abl":0,"abort":0,"about":[0,1],"abov":[0,1],"abrupt":0,"absolut":0,"abstractmethod":0,"abus":0,"accept":[0,1],"access":[0,1],"access_token":[0,1,2],"accesstoken":0,"accord":0,"accordingli":0,"account":0,"account_cr":[0,1,2],"accumul":0,"achiev":0,"aclient":1,"aclos":[0,1,2],"acm":0,"across":0,"act":0,"acta":0,"action":0,"activ":[0,1,2],"active_documents_count":[0,1,2],"activedocumentscount":0,"activity_end":[0,1,2],"activity_handl":[0,1,2],"activity_handling_unspecifi":[0,1,2],"activity_start":[0,1,2],"activityend":[0,1,2],"activityenddict":[0,1,2],"activityhandl":[0,1,2],"activitystart":[0,1,2],"activitystartdict":[0,1,2],"ad":0,"adapt":0,"adaptation_phras":[0,1,2],"adaptationphras":0,"adapter_s":[0,1,2],"adapter_size_eight":[0,1,2],"adapter_size_four":[0,1,2],"adapter_size_on":[0,1,2],"adapter_size_sixteen":[0,1,2],"adapter_size_thirty_two":[0,1,2],"adapter_size_two":[0,1,2],"adapter_size_unspecifi":[0,1,2],"adapters":[0,1,2],"add":0,"add_watermark":[0,1,2],"addit":[0,1],"addition":0,"additional_config":[0,1,2],"additional_properti":[0,1,2],"additionalconfig":0,"additionalproperti":0,"address":0,"addwatermark":0,"adher":0,"adjac":0,"adjust":0,"adult":0,"aesthet":0,"affect":0,"after":[0,1],"ag":[0,1],"again":0,"against":0,"agent":[0,1,2],"agent_config":0,"aggreg":0,"aggregate_summary_fn":[0,1,2],"aggregatesummaryfn":0,"aggregation_metr":[0,1,2],"aggregation_metric_unspecifi":[0,1,2],"aggregation_output":[0,1,2],"aggregation_result":[0,1,2],"aggregationmetr":[0,1,2],"aggregationoutput":[0,1,2],"aggregationoutputdict":[0,1,2],"aggregationresult":[0,1,2],"aggregationresultdict":[0,1,2],"agreement":0,"ai":0,"aim":0,"aio":[0,1,2],"aiohttp":0,"aiohttp_client":[0,1,2],"aiohttpclient":0,"aip":0,"aiplatform":0,"algorithm":0,"alia":0,"align":0,"all":[0,1],"allow":0,"allow_adult":[0,1,2],"allow_al":[0,1,2],"allow_non":0,"allow_prominent_peopl":[0,1,2],"allowed_function_nam":[0,1,2],"allowedfunctionnam":0,"allowlist":[0,1],"along":0,"alongsid":0,"alpha":[0,1,2],"alphanumer":0,"alreadi":0,"also":[0,1],"altern":0,"alwai":[0,1],"amazon":0,"an":[0,1],"analog":1,"analyz":0,"anchor":0,"ani":[0,2],"anim":0,"anniversari":0,"annot":0,"anoth":0,"answer":0,"any_of":[0,1,2],"anyof":[0,1],"anyth":0,"apart":0,"api":0,"api_auth":[0,1,2],"api_cli":0,"api_client_":0,"api_kei":[0,1,2],"api_key_auth":[0,1,2],"api_key_config":[0,1,2],"api_key_secret":[0,1,2],"api_key_secret_vers":[0,1,2],"api_key_str":[0,1,2],"api_opt":0,"api_respons":0,"api_spec":[0,1,2],"api_spec_unspecifi":[0,1,2],"api_vers":[0,1,2],"apiauth":[0,1,2],"apiauthapikeyconfig":[0,1,2],"apiauthapikeyconfigdict":[0,1,2],"apiauthdict":[0,1,2],"apierror":[0,1],"apikei":0,"apikeyconfig":[0,1,2],"apikeyconfigdict":[0,1,2],"apikeysecret":0,"apikeysecretvers":0,"apikeystr":0,"apispec":[0,1,2],"apivers":0,"app":0,"appear":0,"append":0,"appli":[0,1],"applic":[0,1],"application_json":0,"appropri":0,"approxim":0,"ar":[0,1],"architectur":0,"area":0,"arg":[0,1,2],"arg1":0,"arg2":0,"argument":0,"arithmet":0,"armor":0,"arrai":[0,1,2],"arrang":0,"artifact":0,"as_imag":[0,1,2],"ask":1,"aspect":0,"aspect_ratio":[0,1,2],"aspect_ratio_eight_by_on":[0,1,2],"aspect_ratio_five_by_four":[0,1,2],"aspect_ratio_four_by_f":[0,1,2],"aspect_ratio_four_by_on":[0,1,2],"aspect_ratio_four_by_thre":[0,1,2],"aspect_ratio_nine_by_sixteen":[0,1,2],"aspect_ratio_one_by_eight":[0,1,2],"aspect_ratio_one_by_four":[0,1,2],"aspect_ratio_one_by_on":[0,1,2],"aspect_ratio_sixteen_by_nin":[0,1,2],"aspect_ratio_three_by_four":[0,1,2],"aspect_ratio_three_by_two":[0,1,2],"aspect_ratio_twenty_one_by_nin":[0,1,2],"aspect_ratio_two_by_thre":[0,1,2],"aspect_ratio_unspecifi":[0,1,2],"aspectratio":[0,1,2],"asr":0,"assess":0,"asset":[0,1,2],"assign":0,"assist":0,"associ":0,"assum":[0,1],"async":0,"async_cli":0,"async_client_arg":[0,1,2],"async_pag":1,"asyncag":0,"asyncbatch":0,"asynccach":0,"asyncchat":0,"asynccli":[0,1,2],"asyncclientarg":0,"asyncenviron":0,"asyncfil":0,"asyncfilesearchstor":0,"asyncgemininextgenag":[0,1,2],"asyncgemininextgenenviron":[0,1,2],"asyncgemininextgeninteract":[0,1,2],"asyncgemininextgentrigg":[0,1,2],"asyncgemininextgenwebhook":[0,1,2],"asynchron":0,"asyncinteract":0,"asyncio":1,"asynciter":0,"asyncl":[0,1,2],"asynclivemus":0,"asyncmodel":[0,1,2],"asyncoper":0,"asyncpag":0,"asyncsess":[0,1,2],"asyncstream":0,"asynctoken":[0,1,2],"asynctrigg":0,"asynctun":[0,1,2],"asyncwebhook":0,"attach":0,"attack":0,"attempt":[0,1,2],"attribut":0,"attrubit":0,"audienc":0,"audio":[0,1,2],"audio_bitrate_bp":[0,1,2],"audio_byt":0,"audio_chunk":[0,1,2],"audio_duration_second":[0,1,2],"audio_offset":[0,1,2],"audio_stream":0,"audio_stream_end":[0,1,2],"audio_timestamp":[0,1,2],"audio_track_extract":[0,1,2],"audio_transcript":[0,1,2],"audio_transcription_config":[0,1,2],"audiobitratebp":0,"audiochunk":[0,1,2],"audiochunkdict":[0,1,2],"audiodurationsecond":0,"audiooffset":0,"audioresponseformat":[0,1,2],"audioresponseformatdict":[0,1,2],"audiostreamend":0,"audiotimestamp":0,"audiotrackextract":0,"audiotranscript":0,"audiotranscriptionconfig":[0,1,2],"audiotranscriptionconfigdict":[0,1,2],"augment":0,"auth":0,"auth_config":[0,1,2],"auth_token":[0,1,2],"auth_typ":[0,1,2],"auth_type_unspecifi":[0,1,2],"authconfig":[0,1,2],"authconfigdict":[0,1,2],"authconfiggoogleserviceaccountconfig":[0,1,2],"authconfiggoogleserviceaccountconfigdict":[0,1,2],"authconfighttpbasicauthconfig":[0,1,2],"authconfighttpbasicauthconfigdict":[0,1,2],"authconfigoauthconfig":[0,1,2],"authconfigoauthconfigdict":[0,1,2],"authconfigoidcconfig":[0,1,2],"authconfigoidcconfigdict":[0,1,2],"authent":[0,1],"author":[0,1],"author_attribut":[0,1,2],"authorattribut":0,"authtoken":[0,1,2],"authtokendict":[0,1,2],"authtyp":[0,1,2],"auto":[0,1,2],"auto_mod":[0,1,2],"auto_trunc":[0,1,2],"autom":0,"automat":0,"automatic_activity_detect":[0,1,2],"automatic_function_cal":[0,1,2],"automatic_function_calling_histori":[0,1,2],"automaticactivitydetect":[0,1,2],"automaticactivitydetectiondict":[0,1,2],"automaticfunctioncal":0,"automaticfunctioncallingconfig":[0,1,2],"automaticfunctioncallingconfigdict":[0,1,2],"automaticfunctioncallinghistori":0,"automod":0,"autorat":0,"autorater_config":[0,1,2],"autorater_model":[0,1,2],"autorater_prompt":[0,1,2],"autorater_response_parse_config":[0,1,2],"autorater_scor":[0,1,2],"autoraterconfig":[0,1,2],"autoraterconfigdict":[0,1,2],"autoratermodel":0,"autoraterprompt":0,"autoraterresponseparseconfig":0,"autoraterscor":0,"autotrunc":0,"auxiliari":0,"avail":[0,1],"avatar":0,"avatar_config":[0,1,2],"avatar_nam":[0,1,2],"avatarconfig":[0,1,2],"avatarconfigdict":[0,1,2],"avatarnam":0,"averag":[0,1,2],"avg_logprob":[0,1,2],"avglogprob":0,"avoid":0,"await":[0,1],"awesom":0,"b":0,"b_flat_major_g_minor":[0,1,2],"b_major_a_flat_minor":[0,1,2],"back":[0,1],"backend":[0,1],"background":[0,1,2],"bad":1,"bagel":0,"bake":0,"balanc":[0,1,2],"bar":0,"barg":0,"base":0,"base64":0,"base64url":0,"base_ag":0,"base_environ":0,"base_model":[0,1,2],"base_step":[0,1,2],"base_teacher_model":[0,1,2],"base_url":[0,1,2],"base_url_resource_scop":[0,1,2],"baselin":[0,1,2],"baseline_response_field_nam":[0,1,2],"baselineresponsefieldnam":0,"basemodel":[0,1],"basemodul":0,"basestep":0,"baseteachermodel":0,"baseurl":0,"baseurlresourcescop":0,"basic":0,"bass":0,"batch":[0,2],"batch_job":[0,1,2],"batch_siz":[0,1,2],"batchjob":[0,1,2],"batchjobdestin":[0,1,2],"batchjobdestinationdict":[0,1,2],"batchjobdict":[0,1,2],"batchjoboutputinfo":[0,1,2],"batchjoboutputinfodict":[0,1,2],"batchjobsourc":[0,1,2],"batchjobsourcedict":[0,1,2],"batchsiz":0,"bb":0,"bcp":0,"bearer":1,"beat":0,"becaus":0,"becom":0,"been":0,"befor":[0,1],"begin":0,"begun":0,"behav":0,"behavior":[0,1,2],"behind":[0,1],"being":[0,1],"belong":0,"below":[0,1],"best":0,"beta":[0,1,2],"better":0,"between":[0,1],"beyond":0,"bia":0,"bias":0,"bidi":0,"bidigeneratecont":0,"bidigeneratecontentsetup":0,"biggest":0,"bigqueri":[0,1],"bigquery_destin":[0,1,2],"bigquery_output_t":[0,1,2],"bigquery_sourc":[0,1,2],"bigquery_uri":[0,1,2],"bigquerydestin":0,"bigqueryoutputt":0,"bigquerysourc":[0,1,2],"bigquerysourcedict":[0,1,2],"bigqueryuri":0,"bill":0,"billabl":0,"billable_character_count":[0,1,2],"billable_sum":[0,1,2],"billablecharactercount":0,"billablesum":0,"binari":0,"binary_color_threshold":[0,1,2],"binarycolorthreshold":0,"birthdai":0,"bit":0,"bit_rat":[0,1,2],"bitrat":0,"bleu":[0,1,2],"bleu_metric_valu":[0,1,2],"bleu_spec":[0,1,2],"bleumetricvalu":[0,1,2],"bleumetricvaluedict":[0,1,2],"bleuspec":[0,1,2],"bleuspecdict":[0,1,2],"blob":[0,1,2],"blob_id":0,"blobdict":[0,1,2],"block":[0,1,2],"block_high_and_abov":[0,1,2],"block_higher_and_abov":[0,1,2],"block_low_and_abov":[0,1,2],"block_medium_and_abov":[0,1,2],"block_non":[0,1,2],"block_only_extremely_high":[0,1,2],"block_only_high":[0,1,2],"block_prominent_peopl":[0,1,2],"block_reason":[0,1,2],"block_reason_messag":[0,1,2],"block_very_high_and_abov":[0,1,2],"blocked_reason_unspecifi":[0,1,2],"blockedreason":[0,1,2],"blocking_confid":[0,1,2],"blockingconfid":0,"blocklist":[0,1,2],"blockreason":0,"blockreasonmessag":0,"bloom":0,"blue":[0,1],"blueberri":0,"bodi":[0,2],"body_seg":[0,1,2],"bodyseg":0,"boldfac":0,"bool":0,"bool_valu":[0,1,2],"boolean":[0,1,2],"boolvalu":0,"boston":1,"both":[0,1],"bound":0,"bouquet":0,"bp":0,"bpm":[0,1,2],"bq":[0,1],"bqdatasetid":0,"bqtableid":0,"branch":0,"brass":1,"break":0,"breakdown":0,"bright":[0,1,2],"browser":0,"brush":0,"bucket":[0,1,2],"budget":0,"buffer":0,"build":0,"builder":0,"built":[0,1],"bulli":0,"bypass":[0,1],"byte":[0,1],"c":0,"c_major_a_minor":[0,1,2],"ca":1,"cach":[0,2],"cache_tokens_detail":[0,1,2],"cached_cont":[0,1,2],"cached_content_token_count":[0,1,2],"cachedcont":[0,1,2],"cachedcontentdict":[0,1,2],"cachedcontenttokencount":0,"cachedcontentusagemetadata":[0,1,2],"cachedcontentusagemetadatadict":[0,1,2],"cachetokensdetail":0,"calcul":0,"calendar":0,"call":0,"callabl":0,"camel":0,"can":[0,1],"cancel":[0,1,2],"cancelbatchjobconfig":[0,1,2],"cancelbatchjobconfigdict":[0,1,2],"canceltuningjobconfig":[0,1,2],"canceltuningjobconfigdict":[0,1,2],"canceltuningjobrespons":[0,1,2],"canceltuningjobresponsedict":[0,1,2],"candid":[0,1,2],"candidate_count":[0,1,2],"candidate_response_field_nam":[0,1,2],"candidatecount":0,"candidatedict":[0,1,2],"candidateresponsefieldnam":0,"candidates_token_count":[0,1,2],"candidates_tokens_detail":[0,1,2],"candidatestokencount":0,"candidatestokensdetail":0,"cannot":0,"canon":1,"capabl":[0,1],"capac":0,"capit":[0,1],"card":0,"carri":0,"cartoon":1,"case":[0,1],"caseinsensitiveenum":0,"cat":[0,1],"cat_driv":1,"categori":[0,1,2],"caus":0,"caution":0,"celebr":0,"central1":[0,1],"certain":0,"chang":0,"char":0,"charact":0,"charg":0,"chat":[0,2],"check":[0,1],"checker":0,"checkpoint":[0,1,2],"checkpoint_id":[0,1,2],"checkpoint_interv":[0,1,2],"checkpointdict":[0,1,2],"checkpointid":0,"checkpointinterv":0,"child":0,"children":0,"chines":0,"choic":0,"choos":0,"chosen":0,"chosen_candid":[0,1,2],"chosencandid":0,"chunk":[0,1],"chunk_id":[0,1,2],"chunkid":0,"chunking_config":[0,1,2],"chunkingconfig":[0,1,2],"chunkingconfigdict":[0,1,2],"citat":[0,1,2],"citation_metadata":[0,1,2],"citationdict":[0,1,2],"citationmetadata":[0,1,2],"citationmetadatadict":[0,1,2],"citi":1,"civic":0,"claim":0,"class":[0,1],"classic":0,"classmethod":0,"clean":1,"clear":[0,1],"client":2,"client_arg":[0,1,2],"client_cont":[0,1,2],"client_mod":[0,1,2],"clientarg":0,"clientcont":0,"clientsess":[0,1],"clip":0,"clone":0,"close":[0,2],"closest":0,"cloud":[0,1],"cloud_run_reward_scor":[0,1,2],"cloud_run_uri":[0,1,2],"cloudrunrewardscor":0,"cloudrunuri":0,"cmek":0,"code":[0,1,2],"code_execut":[0,1,2],"code_execution_result":[0,1,2],"code_execution_reward_scor":[0,1,2],"codeexecut":0,"codeexecutionresult":[0,1,2],"codeexecutionresultdict":[0,1,2],"codeexecutionrewardscor":0,"codepoint":0,"coher":0,"collect":[0,1,2],"colon":0,"color":0,"com":[0,1],"combin":0,"come":0,"command":1,"comment":[0,1,2],"commit":0,"common":[0,1],"commun":0,"communication_tool":[0,1,2],"compar":0,"compat":0,"complet":[0,1,2],"completed_epoch_count":[0,1,2],"completed_st":1,"completed_step_count":[0,1,2],"completedepochcount":0,"completedstepcount":0,"completion_stat":[0,1,2],"completionstat":[0,1,2],"completionstatsdict":[0,1,2],"compli":0,"complianc":0,"composit":[0,1],"composite_reward_config":[0,1,2],"compositereinforcementtuningrewardconfig":[0,1,2],"compositereinforcementtuningrewardconfigdict":[0,1,2],"compositereinforcementtuningrewardconfigweightedrewardconfig":[0,1,2],"compositereinforcementtuningrewardconfigweightedrewardconfigdict":[0,1,2],"compositerewardconfig":0,"compress":0,"compression_qu":[0,1,2],"compressionqu":0,"compromis":0,"comput":0,"computation_based_metric_spec":[0,1,2],"computation_based_metric_type_unspecifi":[0,1,2],"computationbasedmetricspec":[0,1,2],"computationbasedmetricspecdict":[0,1,2],"computationbasedmetrictyp":[0,1,2],"compute_token":[0,1,2],"computer_us":[0,1,2],"computerout":0,"computerus":[0,1,2],"computerusedict":[0,1,2],"computetokensconfig":[0,1,2],"computetokensconfigdict":[0,1,2],"computetokensrequest":0,"computetokensrespons":[0,1,2],"computetokensresponsedict":[0,1,2],"computetokensresult":[0,1,2],"computetokensresultdict":[0,1,2],"concaten":0,"concis":0,"concise_anss":0,"concise_answ":0,"conduct":0,"confid":0,"confidence_scor":[0,1,2],"confidence_threshold":[0,1,2],"confidencescor":0,"confidencethreshold":0,"config":[0,2],"configur":[0,1],"conflict":0,"conform":0,"connect":[0,1,2],"consecut":[0,1],"consent":0,"consent_audio":[0,1,2],"consentaudio":0,"consid":[0,1],"consist":0,"consol":1,"const":0,"constitut":0,"constrain":0,"construct":0,"consum":0,"consumpt":0,"contain":[0,1],"content":[0,2],"content_typ":[0,1,2],"contentdict":[0,1,2],"contentembed":[0,1,2],"contentembeddingdict":[0,1,2],"contentembeddingstatist":[0,1,2],"contentembeddingstatisticsdict":[0,1,2],"contentreferenceimag":[0,1,2],"contentreferenceimagedict":[0,1,2],"contents_per_example_distribut":[0,1,2],"contentsperexampledistribut":0,"contenttyp":0,"contentunion":1,"context":0,"context_window_compress":[0,1,2],"contextu":0,"contextwindowcompress":0,"contextwindowcompressionconfig":[0,1,2],"contextwindowcompressionconfigdict":[0,1,2],"contin":1,"continu":0,"contribut":0,"control":[0,1],"control_image_config":[0,1,2],"control_reference_config":0,"control_typ":[0,1,2],"control_type_canni":[0,1,2],"control_type_default":[0,1,2],"control_type_face_mesh":[0,1,2],"control_type_scribbl":[0,1,2],"controlimageconfig":0,"controlreferenceconfig":[0,1,2],"controlreferenceconfigdict":[0,1,2],"controlreferenceimag":[0,1,2],"controlreferenceimagedict":[0,1,2],"controlreferencetyp":[0,1,2],"controltyp":0,"convei":0,"conveni":0,"convers":[0,1],"convert":[0,1],"cooki":[0,1],"core":0,"corpora":0,"corpu":0,"correct":0,"correct_answer_reward":[0,1,2],"correctanswerreward":0,"correctli":0,"correl":0,"correspond":0,"cost":0,"could":[0,1],"count":[0,2],"count_token":[0,1,2],"counter":0,"countri":0,"countryinfo":1,"counttokensconfig":[0,1,2],"counttokensconfigdict":[0,1,2],"counttokensrespons":[0,1,2],"counttokensresponsedict":[0,1,2],"counttokensresult":[0,1,2],"counttokensresultdict":[0,1,2],"cover":0,"cp":1,"creat":[0,2],"create_environ":[0,1,2],"create_tim":[0,1,2],"createauthtokenconfig":[0,1,2],"createauthtokenconfigdict":[0,1,2],"createauthtokenparamet":[0,1,2],"createauthtokenparametersdict":[0,1,2],"createbatchjobconfig":[0,1,2],"createbatchjobconfigdict":[0,1,2],"createcachedcontentconfig":[0,1,2],"createcachedcontentconfigdict":[0,1,2],"createembeddingsbatchjobconfig":[0,1,2],"createembeddingsbatchjobconfigdict":[0,1,2],"createfileconfig":[0,1,2],"createfileconfigdict":[0,1,2],"createfilerespons":[0,1,2],"createfileresponsedict":[0,1,2],"createfilesearchstoreconfig":[0,1,2],"createfilesearchstoreconfigdict":[0,1,2],"createtim":0,"createtuningjobconfig":[0,1,2],"createtuningjobconfigdict":[0,1,2],"createtuningjobparamet":[0,1,2],"createtuningjobparametersdict":[0,1,2],"creation":0,"creativ":0,"credenti":[0,1,2],"credential_secret":[0,1,2],"credentialsecret":0,"credit":0,"critiqu":0,"cron":0,"crop":[0,1,2],"crypto":1,"crypto_kei":0,"cryptokei":0,"cumul":0,"current":[0,1],"custom":0,"custom_base_model":[0,1,2],"custom_code_execution_result":[0,1,2],"custom_code_execution_spec":[0,1,2],"custom_code_parser_config":[0,1,2],"custom_config":[0,1,2],"custom_funct":[0,1,2],"custom_metadata":[0,1,2],"custom_output":[0,1,2],"custom_output_format_config":[0,1,2],"custom_vocabulari":[0,1,2],"custombasemodel":0,"customcodeexecutionresult":[0,1,2],"customcodeexecutionresultdict":[0,1,2],"customcodeexecutionspec":[0,1,2],"customcodeexecutionspecdict":[0,1,2],"customcodeparserconfig":0,"customconfig":0,"customfunct":0,"customized_avatar":[0,1,2],"customizedavatar":[0,1,2],"customizedavatardict":[0,1,2],"custommetadata":[0,1,2],"custommetadatadict":[0,1,2],"customoutput":[0,1,2],"customoutputdict":[0,1,2],"customoutputformatconfig":[0,1,2],"customoutputformatconfigdict":[0,1,2],"customvocabulari":0,"cut":0,"cyclic":0,"d":[0,1],"d_flat_major_b_flat_minor":[0,1,2],"d_major_b_minor":[0,1,2],"dai":[0,1,2],"danger":0,"dash":0,"data":[0,1,2],"data_modif":[0,1,2],"data_stor":[0,1,2],"data_store_spec":[0,1,2],"dataitem":0,"dataset":[0,1,2],"datasetdistribut":[0,1,2],"datasetdistributiondict":[0,1,2],"datasetdistributiondistributionbucket":[0,1,2],"datasetdistributiondistributionbucketdict":[0,1,2],"datasetstat":[0,1,2],"datasetstatsdict":[0,1,2],"datasset":0,"datastor":[0,1,2],"datastorespec":0,"datatrack":0,"datatyp":0,"date":0,"datetim":[0,1],"db":0,"debug":0,"debug_config":[0,1,2],"debugconfig":[0,1,2],"decid":0,"decim":0,"declar":0,"decod":0,"dedic":0,"def":[0,1,2],"default":[0,1,2],"default_checkpoint_id":[0,1,2],"defaultcheckpointid":0,"defin":[0,1],"definit":0,"degre":0,"delai":0,"delet":[0,2],"delete_environ":[0,1,2],"delete_job":1,"deletebatchjobconfig":[0,1,2],"deletebatchjobconfigdict":[0,1,2],"deletecachedcontentconfig":[0,1,2],"deletecachedcontentconfigdict":[0,1,2],"deletecachedcontentrespons":[0,1,2],"deletecachedcontentresponsedict":[0,1,2],"deletedocumentconfig":[0,1,2],"deletedocumentconfigdict":[0,1,2],"deletefileconfig":[0,1,2],"deletefileconfigdict":[0,1,2],"deletefilerespons":[0,1,2],"deletefileresponsedict":[0,1,2],"deletefilesearchstoreconfig":[0,1,2],"deletefilesearchstoreconfigdict":[0,1,2],"deletemodelconfig":[0,1,2],"deletemodelconfigdict":[0,1,2],"deletemodelrespons":[0,1,2],"deletemodelresponsedict":[0,1,2],"deleteresourcejob":[0,1,2],"deleteresourcejobdict":[0,1,2],"deliv":0,"deliveri":[0,1,2],"delivery_unspecifi":[0,1,2],"dens":0,"densiti":[0,1,2],"depend":[0,1],"deploi":0,"deployed_model_id":[0,1,2],"deployedmodelid":0,"deprec":[0,1,2],"depth":0,"deriv":0,"descend":0,"describ":0,"descript":[0,1,2],"design":0,"desktop":0,"dest":[0,1,2],"destin":[0,1],"detail":[0,1,2],"detect":0,"determin":0,"determinist":[0,1],"dev":[0,1],"develop":0,"deviat":0,"diariz":[0,1,2],"dict":0,"dictionari":[0,1],"did":0,"differ":[0,1],"digit":0,"dilat":0,"dimens":0,"direct":0,"directli":[0,1],"directori":0,"disabl":[0,2],"disable_attribut":[0,1,2],"disableattribut":0,"disabled_safety_polici":[0,1,2],"disabledsafetypolici":0,"disallow":0,"disconnect":0,"discourag":0,"discoveryengin":0,"displai":[0,1],"display_nam":[0,1,2],"displaynam":0,"distanc":0,"distance_met":[0,1,2],"distancemet":0,"distil":[0,1,2],"distillation_data_stat":[0,1,2],"distillation_sampling_spec":[0,1,2],"distillation_spec":[0,1,2],"distillationdatastat":[0,1,2],"distillationdatastatsdict":[0,1,2],"distillationhyperparamet":[0,1,2],"distillationhyperparametersdict":[0,1,2],"distillationsamplingspec":[0,1,2],"distillationsamplingspecdict":[0,1,2],"distillationspec":[0,1,2],"distillationspecdict":[0,1,2],"distinguish":0,"distribut":0,"diverg":0,"divers":[0,1,2],"do":[0,1],"doc":[0,1],"docstr":0,"document":[0,1,2],"document_nam":[0,1,2],"document_ocr":[0,1,2],"documentdict":[0,1,2],"documentnam":0,"documentocr":0,"documentst":[0,1,2],"doe":0,"doesn":0,"dog":0,"domain":[0,1,2],"don":[0,1],"done":[0,1,2],"dont_allow":[0,1,2],"dot":0,"doubl":0,"down":0,"download":[0,1],"download_uri":[0,1,2],"downloadfileconfig":[0,1,2],"downloadfileconfigdict":[0,1,2],"downloadmediaconfig":[0,1,2],"downloadmediaconfigdict":[0,1,2],"downloaduri":0,"draft":0,"dri":0,"drive":[0,1],"drop":0,"dropped_example_indic":[0,1,2],"dropped_example_reason":[0,1,2],"droppedexampleindic":0,"droppedexamplereason":0,"drum":0,"due":0,"dump":0,"duplic":1,"durat":[0,1,2],"duration_second":[0,1,2],"durationsecond":0,"dure":0,"dynam":0,"dynamic_retrieval_config":[0,1,2],"dynamic_threshold":[0,1,2],"dynamicretrievalconfig":[0,1,2],"dynamicretrievalconfigdict":[0,1,2],"dynamicretrievalconfigmod":[0,1,2],"dynamicthreshold":0,"e":[0,1,2],"e_flat_major_c_minor":[0,1,2],"e_major_d_flat_minor":[0,1,2],"each":[0,1],"earlier":0,"east":0,"eb":0,"echo":0,"echo_target_languag":[0,1,2],"echotargetlanguag":0,"edit":0,"edit_imag":[0,1,2],"edit_mod":[0,1,2],"edit_mode_bgswap":[0,1,2],"edit_mode_controlled_edit":[0,1,2],"edit_mode_default":[0,1,2],"edit_mode_inpaint_insert":[0,1,2],"edit_mode_inpaint_remov":[0,1,2],"edit_mode_outpaint":[0,1,2],"edit_mode_product_imag":[0,1,2],"edit_mode_styl":[0,1,2],"editimageconfig":[0,1,2],"editimageconfigdict":[0,1,2],"editimagerespons":[0,1,2],"editimageresponsedict":[0,1,2],"editmod":[0,1,2],"effect":0,"effici":0,"effort":0,"either":[0,1],"elast":0,"elastic_search":[0,1,2],"elastic_search_param":[0,1,2],"elasticsearch":0,"elasticsearchparam":0,"elect":0,"eleg":0,"element":0,"elif":0,"els":[0,1],"elsewher":0,"email":0,"emb":0,"embed":[0,1,2],"embed_cont":[0,1,2],"embedcont":0,"embedcontentbatch":[0,1,2],"embedcontentbatchdict":[0,1,2],"embedcontentconfig":[0,1,2],"embedcontentconfigdict":[0,1,2],"embedcontentmetadata":[0,1,2],"embedcontentmetadatadict":[0,1,2],"embedcontentparamet":[0,1,2],"embedcontentparametersdict":[0,1,2],"embedcontentrespons":[0,1,2],"embedcontentresponsedict":[0,1,2],"embedding_model":[0,1,2],"embeddingapityp":[0,1,2],"embeddingmodel":0,"embeddingsbatchjobsourc":[0,1,2],"embeddingsbatchjobsourcedict":[0,1,2],"emot":0,"empathet":0,"empti":0,"en":[0,1,2],"enabl":0,"enable_affective_dialog":[0,1,2],"enable_control_image_comput":[0,1,2],"enable_enhanced_civic_answ":[0,1,2],"enable_prompt_injection_detect":[0,1,2],"enable_widget":[0,1,2],"enableaffectivedialog":0,"enablecontrolimagecomput":0,"enableenhancedcivicansw":0,"enablepromptinjectiondetect":0,"enablewidget":0,"encapsul":0,"encod":0,"encoded_polylin":[0,1,2],"encodedpolylin":0,"encount":0,"encourag":0,"encrypt":0,"encryption_spec":[0,1,2],"encryptionspec":[0,1,2],"encryptionspecdict":[0,1,2],"end":[0,1],"end_index":[0,1,2],"end_of_speech_sensit":[0,1,2],"end_of_turn":0,"end_offset":[0,1,2],"end_sensitivity_high":[0,1,2],"end_sensitivity_low":[0,1,2],"end_sensitivity_unspecifi":[0,1,2],"end_tim":[0,1,2],"endian":0,"endindex":0,"endoffset":0,"endofspeechsensit":0,"endpoint":[0,1,2],"endpointdict":[0,1,2],"endsensit":[0,1,2],"endtim":0,"enforc":0,"engag":1,"engin":[0,1,2],"english":0,"enhanc":0,"enhance_input_imag":[0,1,2],"enhance_prompt":[0,1,2],"enhanced_prompt":[0,1,2],"enhancedprompt":0,"enhanceinputimag":0,"enhanceprompt":0,"enough":0,"ensur":[0,1],"enter":0,"enterpris":[0,1,2],"enterprise_web_search":[0,1,2],"enterprisewebsearch":[0,1,2],"enterprisewebsearchdict":[0,1,2],"entir":0,"entiti":0,"entitylabel":[0,1,2],"entitylabeldict":[0,1,2],"entri":0,"enum":[0,2],"enumer":0,"env":1,"environ":[0,1,2],"environment_brows":[0,1,2],"environment_desktop":[0,1,2],"environment_id":0,"environment_mobil":[0,1,2],"environment_unspecifi":[0,1,2],"ephemer":0,"epoch":[0,1,2],"epoch_count":[0,1,2],"epochcount":0,"equal":0,"equival":0,"error":[0,2],"errorev":0,"essenti":[0,1],"etc":0,"evalu":0,"evaluate_dataset_respons":[0,1,2],"evaluate_dataset_run":[0,1,2],"evaluate_interv":[0,1,2],"evaluatedatasetrespons":[0,1,2],"evaluatedatasetresponsedict":[0,1,2],"evaluatedatasetrun":[0,1,2],"evaluatedatasetrundict":[0,1,2],"evaluateinterv":0,"evaluation_config":[0,1,2],"evaluation_funct":[0,1,2],"evaluation_run":[0,1,2],"evaluation_run_id":0,"evaluationconfig":[0,1,2],"evaluationconfigdict":[0,1,2],"evaluationdataset":[0,1,2],"evaluationdatasetdict":[0,1,2],"evaluationfunct":0,"evaluationinst":0,"evaluationparserconfig":[0,1,2],"evaluationparserconfigcustomcodeparserconfig":[0,1,2],"evaluationparserconfigcustomcodeparserconfigdict":[0,1,2],"evaluationparserconfigdict":[0,1,2],"evaluationrun":0,"evaluationservic":0,"evel":0,"even":0,"event":[0,1],"event_id":0,"everi":0,"everlast":0,"evid":0,"ex":0,"exa":0,"exa_ai_search":[0,1,2],"exaaisearch":0,"exact":0,"exact_match":[0,1,2],"exact_match_metric_valu":[0,1,2],"exact_match_scor":[0,1,2],"exactli":0,"exactmatchmetricvalu":[0,1,2],"exactmatchmetricvaluedict":[0,1,2],"exactmatchscor":0,"exampl":[0,1,2],"exce":[0,1],"except":[0,1],"exception_if_mldev":[0,1,2],"exception_if_vertex":[0,1,2],"exceptionifmldev":0,"exceptionifvertex":0,"excerpt":0,"excess":0,"exchang":0,"exclud":0,"exclude_domain":[0,1,2],"excluded_predefined_funct":[0,1,2],"excludedomain":0,"excludedpredefinedfunct":0,"exclus":0,"execut":[0,1],"executable_cod":[0,1,2],"executablecod":[0,1,2],"executablecodedict":[0,1,2],"executeextensionrequest":0,"execution_timeout_second":0,"exist":0,"exit":[0,1],"exp":0,"exp_bas":[0,1,2],"expbas":0,"expect":[0,1],"expens":0,"experi":[0,1,2],"experiment":[0,2],"expir":0,"expiration_tim":[0,1,2],"expirationtim":0,"expire_tim":[0,1,2],"expiretim":0,"explain":[0,1],"explan":[0,1,2],"explicit":0,"explicit_vad_sign":[0,1,2],"explicitli":[0,1],"explicitvadsign":0,"explor":0,"export":[0,1],"export_last_checkpoint_onli":[0,1,2],"exportlastcheckpointonli":0,"expos":[0,1],"express":[0,1,2],"extend":0,"extens":[0,1],"extern":0,"external_api":[0,1,2],"externalapi":[0,1,2],"externalapidict":[0,1,2],"externalapielasticsearchparam":[0,1,2],"externalapielasticsearchparamsdict":[0,1,2],"externalapisimplesearchparam":[0,1,2],"externalapisimplesearchparamsdict":[0,1,2],"extra":0,"extra_bodi":[0,1,2],"extra_head":0,"extra_queri":0,"extrabodi":0,"extract":0,"extrem":0,"f":[0,1],"f_major_d_minor":[0,1,2],"face":0,"facebook":0,"facilit":0,"factor":0,"factual":0,"fail":[0,1,2],"failed_count":[0,1,2],"failed_documents_count":[0,1,2],"failed_precondit":0,"failedcount":0,"faileddocumentscount":0,"failur":0,"fallback":0,"fals":[0,1],"fashion":0,"fast":[0,1,2],"favorit":0,"featur":[0,1],"feature_selection_prefer":[0,1,2],"feature_selection_preference_unspecifi":[0,1,2],"featureselectionprefer":[0,1,2],"fetch":0,"fetch_polici":0,"fetchpredictoperationconfig":[0,1,2],"fetchpredictoperationconfigdict":[0,1,2],"few":[0,1],"fewer":0,"field":[0,1],"field_nam":0,"fieldinfo":0,"file":[0,2],"file1":1,"file2":1,"file3":1,"file_data":[0,1,2],"file_id":[0,1,2],"file_info":1,"file_nam":[0,1,2],"file_path":0,"file_search":[0,1,2],"file_search_stor":[0,1,2],"file_search_store_id":0,"file_search_store_nam":[0,1,2],"file_uri":[0,1,2],"filedata":[0,1,2],"filedatadict":[0,1,2],"filedict":[0,1,2],"fileid":0,"filenam":0,"filesearch":[0,1,2],"filesearchdict":[0,1,2],"filesearchstor":[0,1,2],"filesearchstoredict":[0,1,2],"filesearchstorenam":0,"filesourc":[0,1,2],"filest":[0,1,2],"filestatu":[0,1,2],"filestatusdict":[0,1,2],"fileuri":0,"fill":0,"filter":[0,1,2],"filtered_prompt":[0,1,2],"filtered_reason":[0,1,2],"filteredprompt":0,"filteredreason":0,"final":0,"financi":0,"financial_transact":[0,1,2],"find":0,"fine":[0,1],"finer":0,"finish":[0,1,2],"finish_messag":[0,1,2],"finish_reason":[0,1,2],"finish_reason_unspecifi":[0,1,2],"finishmessag":0,"finishreason":[0,1,2],"first":0,"first_pag":[0,1,2],"firstpag":0,"fit":0,"fix":[0,1],"flag":0,"flag_content_uri":[0,1,2],"flagcontenturi":0,"flash":[0,1],"flat":0,"flex":[0,1,2],"flip":0,"flip_en":[0,1,2],"flipen":0,"float":0,"floral":0,"flow":0,"flower":0,"fluenci":0,"fluent":0,"fly":1,"focus":0,"follow":[0,1],"foo":0,"forbidden":0,"forc":[0,1,2],"forecast":0,"foreground":[0,1,2],"form":0,"formal":1,"format":[0,1,2],"four":0,"fp":[0,1,2],"fr":0,"fraction":0,"frame":[0,1],"franc":0,"francisco":1,"french":0,"frequenc":0,"frequency_penalti":[0,1,2],"frequencypenalti":0,"freshli":0,"from":[0,1],"from_api_respons":[0,1,2],"from_byt":[0,1,2],"from_cal":[0,1,2],"from_callable_with_api_opt":[0,1,2],"from_code_execution_result":[0,1,2],"from_executable_cod":[0,1,2],"from_fil":[0,1,2],"from_function_cal":[0,1,2],"from_function_respons":[0,1,2],"from_json_schema":[0,1,2],"from_mcp_respons":[0,1,2],"from_text":[0,1,2],"from_uri":[0,1,2],"frustrat":0,"full":0,"full_fine_tuning_spec":[0,1,2],"fullfinetuningspec":[0,1,2],"fullfinetuningspecdict":[0,1,2],"fulli":0,"function":0,"function_cal":[0,1,2],"function_call_cont":1,"function_call_part":1,"function_calling_config":[0,1,2],"function_declar":[0,1,2],"function_respons":[0,1,2],"function_response_cont":1,"function_response_part":1,"function_result":1,"functioncal":[0,1,2],"functioncalldict":[0,1,2],"functioncallingconfig":[0,1,2],"functioncallingconfigdict":[0,1,2],"functioncallingconfigmod":[0,1,2],"functiondeclar":[0,1,2],"functiondeclarationdict":[0,1,2],"functionrespons":[0,1,2],"functionresponseblob":[0,1,2],"functionresponseblobdict":[0,1,2],"functionresponsedict":[0,1,2],"functionresponsefiledata":[0,1,2],"functionresponsefiledatadict":[0,1,2],"functionresponsepart":[0,1,2],"functionresponsepartdict":[0,1,2],"functionresponseschedul":[0,1,2],"further":0,"futur":0,"g":[0,1],"g_flat_major_e_flat_minor":[0,1,2],"g_major_e_minor":[0,1,2],"gao":[1,2],"gap":0,"gatewai":1,"gb":0,"gc":[0,1],"gcloud":1,"gcp":0,"gcs_destin":[0,1,2],"gcs_output_directori":[0,1,2],"gcs_sourc":[0,1,2],"gcs_uri":[0,1,2],"gcsdestin":[0,1,2],"gcsdestinationdict":[0,1,2],"gcsoutputdirectori":0,"gcssourc":[0,1,2],"gcssourcedict":[0,1,2],"gcsuri":0,"gdp":1,"gemini":0,"gemini_api":0,"gemini_api_kei":1,"geminiapi":[0,1],"gemininextgenag":[0,1,2],"gemininextgenenviron":[0,1,2],"gemininextgeninteract":[0,1,2],"gemininextgentrigg":[0,1,2],"gemininextgenwebhook":[0,1,2],"geminipreferenceexampl":[0,1,2],"geminipreferenceexamplecomplet":[0,1,2],"geminipreferenceexamplecompletiondict":[0,1,2],"geminipreferenceexampledict":[0,1,2],"gemma":0,"genai":[1,2],"genaierror":0,"genaituningservic":0,"gener":[0,2],"generate_audio":[0,1,2],"generate_cont":[0,2],"generate_content_stream":[0,1,2],"generate_imag":[0,1,2],"generate_video":[0,1,2],"generateaudio":0,"generatecont":0,"generatecontentconfig":[0,1,2],"generatecontentconfigdict":[0,1,2],"generatecontentrequest":0,"generatecontentrespons":[0,1,2],"generatecontentresponsedict":[0,1,2],"generatecontentresponsepromptfeedback":[0,1,2],"generatecontentresponsepromptfeedbackdict":[0,1,2],"generatecontentresponseusagemetadata":[0,1,2],"generatecontentresponseusagemetadatadict":[0,1,2],"generated_audio_safeti":[0,1,2],"generated_content_blocklist":[0,1,2],"generated_content_prohibit":[0,1,2],"generated_content_safeti":[0,1,2],"generated_imag":[0,1,2],"generated_image_celebr":[0,1,2],"generated_image_identifiable_peopl":[0,1,2],"generated_image_minor":[0,1,2],"generated_image_prohibit":[0,1,2],"generated_image_prominent_people_detected_by_rewrit":[0,1,2],"generated_image_safeti":[0,1,2],"generated_mask":[0,1,2],"generated_oth":[0,1,2],"generated_video":[0,1,2],"generated_video_safeti":[0,1,2],"generatedcont":0,"generatedimag":[0,1,2],"generatedimagedict":[0,1,2],"generatedimagemask":[0,1,2],"generatedimagemaskdict":[0,1,2],"generatedmask":0,"generatedvideo":[0,1,2],"generatedvideodict":[0,1,2],"generateimagesconfig":[0,1,2],"generateimagesconfigdict":[0,1,2],"generateimagesrespons":[0,1,2],"generateimagesresponsedict":[0,1,2],"generatevideosconfig":[0,1,2],"generatevideosconfigdict":[0,1,2],"generatevideosoper":[0,1,2],"generatevideosrespons":[0,1,2],"generatevideosresponsedict":[0,1,2],"generatevideossourc":[0,1,2],"generatevideossourcedict":[0,1,2],"generation_complet":[0,1,2],"generation_config":[0,1,2],"generationcomplet":0,"generationconfig":[0,1,2],"generationconfigdict":[0,1,2],"generationconfigroutingconfig":[0,1,2],"generationconfigroutingconfigautoroutingmod":[0,1,2],"generationconfigroutingconfigautoroutingmodedict":[0,1,2],"generationconfigroutingconfigdict":[0,1,2],"generationconfigroutingconfigmanualroutingmod":[0,1,2],"generationconfigroutingconfigmanualroutingmodedict":[0,1,2],"generationconfigthinkingconfig":[0,1,2],"generationconfigthinkingconfigdict":[0,1,2],"generativeai":[0,1],"genericalia":0,"geospati":0,"get":[0,2],"get_current_weath":1,"get_environ":[0,1,2],"get_environment_fil":[0,1,2],"get_weather_by_loc":1,"getaccesstoken":0,"getbatchjobconfig":[0,1,2],"getbatchjobconfigdict":[0,1,2],"getcachedcontentconfig":[0,1,2],"getcachedcontentconfigdict":[0,1,2],"getdocumentconfig":[0,1,2],"getdocumentconfigdict":[0,1,2],"getfileconfig":[0,1,2],"getfileconfigdict":[0,1,2],"getfilesearchstoreconfig":[0,1,2],"getfilesearchstoreconfigdict":[0,1,2],"getmodelconfig":[0,1,2],"getmodelconfigdict":[0,1,2],"getopenidtoken":0,"getoperationconfig":[0,1,2],"getoperationconfigdict":[0,1,2],"getproxi":1,"getter":1,"gettuningjobconfig":[0,1,2],"gettuningjobconfigdict":[0,1,2],"github":[0,1],"give":1,"given":[0,1],"gl":0,"gmail":0,"go":0,"go_awai":[0,1,2],"goawai":0,"goe":0,"goo":0,"good":0,"googl":0,"google_api_kei":[0,1],"google_cloud_loc":[0,1],"google_cloud_project":[0,1],"google_genai":0,"google_genai_use_enterpris":[0,1],"google_map":[0,1,2],"google_maps_uri":[0,1,2],"google_maps_widget_context_token":[0,1,2],"google_search":[0,1,2],"google_search_dynamic_retrieval_scor":[0,1,2],"google_search_imag":[0,1,2],"google_search_retriev":[0,1,2],"google_search_web":[0,1,2],"google_service_account_auth":[0,1,2],"google_service_account_config":[0,1,2],"googleapi":[0,1],"googlemap":[0,1,2],"googlemapsdict":[0,1,2],"googlemapsgroundingtyp":[0,1,2],"googlemapsgroundingtypesdict":[0,1,2],"googlemapsplac":[0,1,2],"googlemapsplacesdict":[0,1,2],"googlemapsrout":[0,1,2],"googlemapsroutingdict":[0,1,2],"googlemapsuri":0,"googlemapswidgetcontexttoken":0,"googlerpcstatu":[0,1,2],"googlerpcstatusdict":[0,1,2],"googlesearch":[0,1,2],"googlesearchdict":[0,1,2],"googlesearchdynamicretrievalscor":0,"googlesearchretriev":[0,1,2],"googlesearchretrievaldict":[0,1,2],"googleserviceaccountconfig":0,"googlesql":0,"googletyped":[0,1,2],"googletypedatedict":[0,1,2],"grant":0,"greater":0,"green":0,"gregorian":0,"ground":0,"grounding_chunk":[0,1,2],"grounding_chunk_indic":[0,1,2],"grounding_metadata":[0,1,2],"grounding_support":[0,1,2],"grounding_typ":[0,1,2],"groundingchunk":[0,1,2],"groundingchunkcustommetadata":[0,1,2],"groundingchunkcustommetadatadict":[0,1,2],"groundingchunkdict":[0,1,2],"groundingchunkimag":[0,1,2],"groundingchunkimagedict":[0,1,2],"groundingchunkindic":0,"groundingchunkmap":[0,1,2],"groundingchunkmapsdict":[0,1,2],"groundingchunkmapsplaceanswersourc":[0,1,2],"groundingchunkmapsplaceanswersourcesauthorattribut":[0,1,2],"groundingchunkmapsplaceanswersourcesauthorattributiondict":[0,1,2],"groundingchunkmapsplaceanswersourcesdict":[0,1,2],"groundingchunkmapsplaceanswersourcesreviewsnippet":[0,1,2],"groundingchunkmapsplaceanswersourcesreviewsnippetdict":[0,1,2],"groundingchunkmapsrout":[0,1,2],"groundingchunkmapsroutedict":[0,1,2],"groundingchunkretrievedcontext":[0,1,2],"groundingchunkretrievedcontextdict":[0,1,2],"groundingchunkstringlist":[0,1,2],"groundingchunkstringlistdict":[0,1,2],"groundingchunkweb":[0,1,2],"groundingchunkwebdict":[0,1,2],"groundingfact":0,"groundingmetadata":[0,1,2],"groundingmetadatadict":[0,1,2],"groundingmetadatasourceflagginguri":[0,1,2],"groundingmetadatasourceflagginguridict":[0,1,2],"groundingsupport":[0,1,2],"groundingsupportdict":[0,1,2],"groundingtyp":0,"group":[0,1],"grpc":0,"gserviceaccount":0,"guarante":0,"guess_typ":1,"guid":0,"guidanc":[0,1,2],"guidance_scal":[0,1,2],"guidancescal":0,"ha":0,"had":0,"half":0,"hallucin":0,"handl":[0,2],"happen":0,"harass":0,"hardwar":0,"harm":0,"harm_block_method_unspecifi":[0,1,2],"harm_block_threshold_unspecifi":[0,1,2],"harm_category_civic_integr":[0,1,2],"harm_category_dangerous_cont":[0,1,2],"harm_category_harass":[0,1,2],"harm_category_hate_speech":[0,1,2],"harm_category_image_dangerous_cont":[0,1,2],"harm_category_image_h":[0,1,2],"harm_category_image_harass":[0,1,2],"harm_category_image_sexually_explicit":[0,1,2],"harm_category_jailbreak":[0,1,2],"harm_category_sexually_explicit":[0,1,2],"harm_category_unspecifi":[0,1,2],"harm_probability_unspecifi":[0,1,2],"harm_severity_high":[0,1,2],"harm_severity_low":[0,1,2],"harm_severity_medium":[0,1,2],"harm_severity_neglig":[0,1,2],"harm_severity_unspecifi":[0,1,2],"harmblockmethod":[0,1,2],"harmblockthreshold":[0,1,2],"harmcategori":[0,1,2],"harmprob":[0,1,2],"harmsever":[0,1,2],"has_end":[0,1,2],"has_succeed":[0,1,2],"has_union":[0,1,2],"hash":0,"hasunion":0,"hate":0,"hatr":0,"have":[0,1],"header":[0,1,2],"hello":[0,1],"help":0,"here":0,"hertz":0,"hi":[0,1,2],"hierarchi":0,"high":[0,1,2],"higher":0,"highest":0,"hindi":0,"hint":0,"histogram":0,"histori":0,"history_config":[0,1,2],"historyconfig":[0,1,2],"historyconfigdict":[0,1,2],"hit":0,"hold":0,"hologram":[0,1],"host":1,"hour":0,"how":0,"howev":[0,1],"html":0,"http":[0,1],"http_basic_auth":[0,1,2],"http_basic_auth_config":[0,1,2],"http_element_loc":[0,1,2],"http_in_bodi":[0,1,2],"http_in_cooki":[0,1,2],"http_in_head":[0,1,2],"http_in_path":[0,1,2],"http_in_queri":[0,1,2],"http_in_unspecifi":[0,1,2],"http_option":[0,1,2],"http_status_cod":[0,1,2],"httpbasicauthconfig":0,"httpelementloc":[0,1,2],"httpoption":[0,1,2],"httpoptionsdict":[0,1,2],"httprespons":[0,1,2],"httpresponsedict":[0,1,2],"httpretryopt":[0,1,2],"httpretryoptionsdict":[0,1,2],"https_proxi":1,"httpstatuscod":0,"httpx":[0,1],"httpx_async_cli":[0,1,2],"httpx_client":[0,1,2],"httpxasynccli":0,"httpxclient":0,"human":0,"hybrid":0,"hybrid_search":[0,1,2],"hybridsearch":0,"hyper":0,"hyper_paramet":[0,1,2],"hyperparamet":[0,1,2],"i":[0,1],"iam":0,"iana":0,"id":[0,1,2],"id_token":[0,1,2],"ident":[0,1,2],"identifi":0,"idtoken":0,"ietf":0,"ignor":0,"ignore_call_histori":[0,1,2],"ignore_kei":[0,1,2],"ignorecallhistori":0,"ignorekei":0,"imag":[0,2],"image1_file_path":0,"image2_file_path":0,"image_byt":[0,1,2],"image_config":[0,1,2],"image_count":[0,1,2],"image_data":[0,1,2],"image_file_path":0,"image_mime_typ":[0,1,2],"image_oth":[0,1,2],"image_output_opt":[0,1,2],"image_preservation_factor":[0,1,2],"image_prohibited_cont":[0,1,2],"image_prohibited_input_cont":[0,1,2],"image_recit":[0,1,2],"image_s":[0,1,2],"image_safeti":[0,1,2],"image_search":[0,1,2],"image_search_queri":[0,1,2],"image_size_five_twelv":[0,1,2],"image_size_four_k":[0,1,2],"image_size_one_k":[0,1,2],"image_size_two_k":[0,1,2],"image_size_unspecifi":[0,1,2],"image_uri":[0,1,2],"imagebyt":0,"imageconfig":[0,1,2],"imageconfigdict":[0,1,2],"imageconfigimageoutputopt":[0,1,2],"imageconfigimageoutputoptionsdict":[0,1,2],"imagecount":0,"imagedata":0,"imagedict":[0,1,2],"imagemimetyp":0,"imagen":0,"imageoutputopt":0,"imagepreservationfactor":0,"imagepromptlanguag":[0,1,2],"imageresizemod":[0,1,2],"imageresponseformat":[0,1,2],"imageresponseformatdict":[0,1,2],"images":[0,1,2],"imagesearch":[0,1,2],"imagesearchdict":[0,1,2],"imagesearchqueri":0,"imageuri":0,"immedi":0,"immut":0,"implement":[0,1],"impli":0,"import":0,"importerror":0,"importfil":0,"importfileconfig":[0,1,2],"importfileconfigdict":[0,1,2],"importfileoper":[0,1,2],"importfilerespons":[0,1,2],"importfileresponsedict":[0,1,2],"improv":0,"inact":0,"inappropri":0,"incit":0,"includ":[0,1],"include_domain":0,"include_input":0,"include_rai_reason":[0,1,2],"include_rubric_typ":0,"include_safety_attribut":[0,1,2],"include_server_side_tool_invoc":[0,1,2],"include_thought":[0,1,2],"includeraireason":0,"includesafetyattribut":0,"includeserversidetoolinvoc":0,"includethought":0,"inclus":0,"incomplete_count":[0,1,2],"incompletecount":0,"incorrect":0,"increas":[0,1],"increment":0,"independ":0,"index":[0,1,2],"indic":0,"indirect":0,"individu":0,"infer":[0,1],"inferenc":1,"inference_generation_config":[0,1,2],"inferencegenerationconfig":0,"influenc":[0,1],"info":0,"infograph":1,"inform":[0,1],"ingest":0,"inherit":0,"initi":[0,1],"initial_delai":[0,1,2],"initial_history_in_client_cont":[0,1,2],"initialdelai":0,"initialhistoryinclientcont":0,"inject":0,"inlin":[0,1,2],"inline_data":[0,1,2],"inlined_embed_content_respons":[0,1,2],"inlined_embedding_respons":0,"inlined_request":[0,1,2],"inlined_respons":[0,1,2],"inlinedata":0,"inlinedembedcontentrespons":[0,1,2],"inlinedembedcontentresponsedict":[0,1,2],"inlinedrequest":[0,1,2],"inlinedrequestdict":[0,1,2],"inlinedrespons":[0,1,2],"inlinedresponsedict":[0,1,2],"inner":1,"inpaint":0,"input":0,"input_audio_transcript":[0,1,2],"input_image_celebr":[0,1,2],"input_image_photo_realistic_child_prohibit":[0,1,2],"input_ip_prohibit":[0,1,2],"input_oth":[0,1,2],"input_text_contain_prominent_person_prohibit":[0,1,2],"input_text_ncii_prohibit":[0,1,2],"input_token_limit":[0,1,2],"input_transcript":[0,1,2],"input_uri":[0,1,2],"inputaudiotranscript":0,"inputtokenlimit":0,"inputtranscript":0,"inputuri":0,"insert":[0,1,2],"insid":0,"insignific":0,"instal":0,"instanc":0,"instanti":0,"instead":[0,1],"instruct":0,"instruction_following_v1":0,"instrument":1,"instrumentenum":1,"int":[0,1],"int32":0,"int64":0,"integ":[0,1,2],"integr":[0,1],"intend":0,"interact":[0,1,2],"interactioncompletedev":0,"interactioncreatedev":0,"interactionstatusupd":0,"interfac":1,"interim_input_transcript":[0,1,2],"interiminputtranscript":0,"interleav":0,"intermedi":0,"intern":0,"internet":0,"interpol":[0,1],"interpret":0,"interrupt":[0,1,2],"interv":[0,1,2],"intervaldict":[0,1,2],"invalid":[0,1],"invalid_argu":0,"invoc":[0,1],"invok":0,"io":[0,1],"ip":0,"irrelev":0,"is_vertex_ai":0,"isn":0,"iso":0,"issu":0,"item":[0,1,2],"iter":0,"its":[0,1],"itself":0,"j":0,"ja":[0,1,2],"jailbreak":[0,1,2],"japanes":0,"jitter":[0,1,2],"job":0,"job_state_cancel":[0,1,2],"job_state_expir":[0,1,2],"job_state_fail":[0,1,2],"job_state_partially_succeed":[0,1,2],"job_state_paus":[0,1,2],"job_state_pend":[0,1,2],"job_state_queu":[0,1,2],"job_state_run":[0,1,2],"job_state_succeed":[0,1,2],"job_state_unspecifi":[0,1,2],"job_state_upd":[0,1,2],"joberror":[0,1,2],"joberrordict":[0,1,2],"jobstat":[0,1,2],"jpeg":[0,1],"jpg":[0,1],"json":0,"json_match_express":[0,1,2],"json_path":[0,1,2],"json_schema":[0,1,2],"jsonl":[0,1],"jsonmatchexpress":0,"jsonpath":0,"jsonschema":[0,1,2],"jsonschematyp":[0,1,2],"judg":0,"judge_autorater_config":[0,1,2],"judge_model_system_instruct":[0,1,2],"judgeautoraterconfig":0,"judgemodelsysteminstruct":0,"just":0,"jwt":0,"k":0,"keep":0,"kei":[0,1,2],"key_nam":[0,1,2],"key_r":0,"keyboard":1,"keynam":0,"keyr":0,"keyword":0,"kind":0,"kl":0,"km":0,"kms_key_nam":[0,1,2],"kmskeynam":0,"know":0,"knowledg":0,"known":0,"ko":[0,1,2],"korean":0,"kwarg":0,"label":[0,1,2],"lai":0,"landscap":[0,1,2],"languag":[0,1,2],"language_auto":[0,1,2],"language_cod":[0,1,2],"language_hint":[0,1,2],"language_unspecifi":[0,1,2],"languageauto":[0,1,2],"languageautodict":[0,1,2],"languagecod":0,"languagehint":[0,1,2],"languagehintsdict":[0,1,2],"larg":0,"larger":0,"largest":0,"last":0,"last_consumed_client_message_index":[0,1,2],"last_event_id":0,"last_fram":[0,1,2],"last_pag":[0,1,2],"last_version_id":0,"lastconsumedclientmessageindex":0,"lastfram":0,"lastpag":0,"lat_lng":[0,1,2],"latenc":0,"latent":0,"later":0,"latest":0,"latitud":[0,1,2],"latlng":[0,1,2],"latlngdict":[0,1,2],"latter":0,"lazi":0,"le":0,"lead":0,"leakag":0,"learn":0,"learning_r":[0,1,2],"learning_rate_multipli":[0,1,2],"learningr":0,"learningratemultipli":0,"least":0,"leav":1,"left":[0,1,2],"legaci":[0,1,2],"legal":0,"legal_terms_and_agr":[0,1,2],"len":0,"length":0,"less":0,"let":[0,1],"letter":0,"level":[0,1,2],"leverag":0,"librari":[0,1],"licens":[0,1,2],"lifecycl":0,"light":0,"like":[0,1],"likelihood":0,"limit":0,"line":0,"linear":0,"link":0,"list":[0,2],"list_environ":[0,1,2],"list_execut":[0,1,2],"listbatchjobsconfig":[0,1,2],"listbatchjobsconfigdict":[0,1,2],"listbatchjobsrespons":[0,1,2],"listbatchjobsresponsedict":[0,1,2],"listcachedcontentsconfig":[0,1,2],"listcachedcontentsconfigdict":[0,1,2],"listcachedcontentsrespons":[0,1,2],"listcachedcontentsresponsedict":[0,1,2],"listdocumentsconfig":[0,1,2],"listdocumentsconfigdict":[0,1,2],"listdocumentsrespons":[0,1,2],"listdocumentsresponsedict":[0,1,2],"listfil":0,"listfilesconfig":[0,1,2],"listfilesconfigdict":[0,1,2],"listfilesearchstoresconfig":[0,1,2],"listfilesearchstoresconfigdict":[0,1,2],"listfilesearchstoresrespons":[0,1,2],"listfilesearchstoresresponsedict":[0,1,2],"listfilesrespons":[0,1,2],"listfilesresponsedict":[0,1,2],"listmodelsconfig":[0,1,2],"listmodelsconfigdict":[0,1,2],"listmodelsconfigordict":0,"listmodelsrespons":[0,1,2],"listmodelsresponsedict":[0,1,2],"listtrigg":0,"listtriggerexecut":0,"listtuningjob":0,"listtuningjobsconfig":[0,1,2],"listtuningjobsconfigdict":[0,1,2],"listtuningjobsrespons":[0,1,2],"listtuningjobsresponsedict":[0,1,2],"listwebhook":0,"liter":0,"littl":0,"live":[1,2],"live_connect_constraint":[0,1,2],"live_constrained_paramet":0,"liveclientcont":[0,1,2],"liveclientcontentdict":[0,1,2],"liveclientmessag":[0,1,2],"liveclientmessagedict":[0,1,2],"liveclientrealtimeinput":[0,1,2],"liveclientrealtimeinputdict":[0,1,2],"liveclientsetup":[0,1,2],"liveclientsetupdict":[0,1,2],"liveclienttoolrespons":[0,1,2],"liveclienttoolresponsedict":[0,1,2],"liveconnectconfig":[0,1,2],"liveconnectconfigdict":[0,1,2],"liveconnectconstraint":[0,1,2],"liveconnectconstraintsdict":[0,1,2],"liveconnectparamet":[0,1,2],"liveconnectparametersdict":[0,1,2],"liveephemeralparamet":0,"livegeneratecontentsetup":0,"livemusicclientcont":[0,1,2],"livemusicclientcontentdict":[0,1,2],"livemusicclientmessag":[0,1,2],"livemusicclientmessagedict":[0,1,2],"livemusicclientsetup":[0,1,2],"livemusicclientsetupdict":[0,1,2],"livemusicconnectparamet":[0,1,2],"livemusicconnectparametersdict":[0,1,2],"livemusicfilteredprompt":[0,1,2],"livemusicfilteredpromptdict":[0,1,2],"livemusicgenerationconfig":[0,1,2],"livemusicgenerationconfigdict":[0,1,2],"livemusicplaybackcontrol":[0,1,2],"livemusicservercont":[0,1,2],"livemusicservercontentdict":[0,1,2],"livemusicservermessag":[0,1,2],"livemusicservermessagedict":[0,1,2],"livemusicserversetupcomplet":[0,1,2],"livemusicserversetupcompletedict":[0,1,2],"livemusicsetconfigparamet":[0,1,2],"livemusicsetconfigparametersdict":[0,1,2],"livemusicsetupcomplet":0,"livemusicsetweightedpromptsparamet":[0,1,2],"livemusicsetweightedpromptsparametersdict":[0,1,2],"livemusicsourcemetadata":[0,1,2],"livemusicsourcemetadatadict":[0,1,2],"livesendrealtimeinputparamet":[0,1,2],"livesendrealtimeinputparametersdict":[0,1,2],"liveservercont":[0,1,2],"liveservercontentdict":[0,1,2],"liveservergoawai":[0,1,2],"liveservergoawaydict":[0,1,2],"liveservermessag":[0,1,2],"liveservermessagedict":[0,1,2],"liveserversessionresumptionupd":[0,1,2],"liveserversessionresumptionupdatedict":[0,1,2],"liveserversetupcomplet":[0,1,2],"liveserversetupcompletedict":[0,1,2],"liveservertoolcal":[0,1,2],"liveservertoolcallcancel":[0,1,2],"liveservertoolcallcancellationdict":[0,1,2],"liveservertoolcalldict":[0,1,2],"llm":0,"llm_based_metric_spec":[0,1,2],"llm_ranker":[0,1,2],"llmbasedmetricspec":[0,1,2],"llmbasedmetricspecdict":[0,1,2],"llmranker":0,"load":0,"local":0,"locat":[0,1,2],"lock":0,"lock_additional_field":[0,1,2],"lockadditionalfield":0,"log":0,"log_prob":[0,1,2],"log_probability_sum":[0,1,2],"logarithm":0,"logic":0,"logprob":[0,1,2],"logprobabilitysum":0,"logprobs_result":[0,1,2],"logprobsresult":[0,1,2],"logprobsresultcandid":[0,1,2],"logprobsresultcandidatedict":[0,1,2],"logprobsresultdict":[0,1,2],"logprobsresulttopcandid":[0,1,2],"logprobsresulttopcandidatesdict":[0,1,2],"london":[0,1],"long":0,"longer":[0,1],"longitud":[0,1,2],"look":0,"lookup":0,"loop":1,"lora":0,"lose":0,"loss":0,"lossless":[0,1,2],"lot":0,"low":[0,1,2],"lower":[0,1],"lowercas":0,"m":1,"machin":0,"made":0,"mai":[0,1],"main":[0,1],"maintain":0,"major":0,"make":[0,1],"malformed_function_cal":[0,1,2],"man":0,"manag":0,"mani":0,"manual":0,"manual_mod":[0,1,2],"manualmod":0,"map":[0,1,2],"mark":0,"markdown":0,"marker":0,"marketplac":0,"mask":[0,1,2],"mask_dil":[0,1,2],"mask_imag":0,"mask_image_config":[0,1,2],"mask_mod":[0,1,2],"mask_mode_background":[0,1,2],"mask_mode_default":[0,1,2],"mask_mode_foreground":[0,1,2],"mask_mode_semant":[0,1,2],"mask_mode_user_provid":[0,1,2],"mask_ref_imag":[0,1],"mask_reference_config":0,"maskdil":0,"maskimageconfig":0,"maskmod":0,"maskreferenceconfig":[0,1,2],"maskreferenceconfigdict":[0,1,2],"maskreferenceimag":[0,1,2],"maskreferenceimagedict":[0,1,2],"maskreferencemod":[0,1,2],"master":0,"match":[0,1],"match_oper":[0,1,2],"match_operation_unspecifi":[0,1,2],"matchoper":[0,1,2],"materi":0,"math":0,"matter":0,"matur":0,"max":[0,1,2],"max_age_second":0,"max_consecutive_failur":0,"max_delai":[0,1,2],"max_item":[0,1,2],"max_length":[0,1,2],"max_output_token":[0,1,2],"max_overlap_token":[0,1,2],"max_predict":[0,1,2],"max_properti":[0,1,2],"max_regeneration_reach":[0,1,2],"max_result":[0,1,2],"max_temperatur":[0,1,2],"max_token":[0,1,2],"max_tokens_per_chunk":[0,1,2],"maxdelai":0,"maximum":[0,1,2],"maximum_remote_cal":[0,1,2],"maximumm":0,"maximumremotecal":0,"maxitem":0,"maxlength":0,"maxoutputtoken":0,"maxoverlaptoken":0,"maxpredict":0,"maxproperti":0,"maxresult":0,"maxtemperatur":0,"maxtokensperchunk":0,"mcp":0,"mcp_server":[0,1,2],"mcpserver":[0,1,2],"mcpserverdict":[0,1,2],"me":1,"mean":[0,1,2],"meaning":0,"meant":0,"measur":0,"mechan":0,"media":[0,1,2],"media_chunk":[0,1,2],"media_id":[0,1,2],"media_resolut":[0,1,2],"media_resolution_high":[0,1,2],"media_resolution_low":[0,1,2],"media_resolution_medium":[0,1,2],"media_resolution_ultra_high":[0,1,2],"media_resolution_unspecifi":[0,1,2],"mediachunk":0,"mediaid":0,"mediamod":[0,1,2],"median":[0,1,2],"mediaresolut":[0,1,2],"medium":[0,1,2],"meet":0,"member":0,"memor":0,"mention":0,"merg":0,"messag":[0,2],"metadata":[0,1,2],"metadata_filt":[0,1,2],"metadatafilt":0,"meter":0,"method":[0,1,2],"metric":[0,1,2],"metric_prompt_templ":[0,1,2],"metric_spec_nam":[0,1,2],"metric_spec_paramet":[0,1,2],"metricdict":[0,1,2],"metricprompttempl":0,"metricresult":0,"metricspecnam":0,"metricspecparamet":0,"microphon":0,"might":[0,1],"millisecond":0,"mime":[0,1],"mime_typ":[0,1,2],"mimetyp":[0,1],"min":[0,1,2],"min_item":[0,1,2],"min_length":[0,1,2],"min_properti":[0,1,2],"minim":[0,1,2],"minimum":[0,1,2],"minitem":0,"minlength":0,"minor":0,"minproperti":0,"minut":0,"miss":0,"mission":0,"mix":0,"mixtur":0,"mldev":0,"mobil":0,"modal":[0,1,2],"modality_unspecifi":[0,1,2],"modalitytokencount":[0,1,2],"modalitytokencountdict":[0,1,2],"mode":[0,2],"mode_dynam":[0,1,2],"mode_unspecifi":[0,1,2],"model":2,"model_armor":[0,1,2],"model_armor_config":[0,1,2],"model_cont":0,"model_id":1,"model_nam":[0,1,2],"model_post_init":[0,1,2],"model_routing_prefer":[0,1,2],"model_selection_config":[0,1,2],"model_stag":[0,1,2],"model_stage_unspecifi":[0,1,2],"model_statu":[0,1,2],"model_turn":[0,1,2],"model_vers":[0,1,2],"modelarmorconfig":[0,1,2],"modelarmorconfigdict":[0,1,2],"modelcont":[0,1,2],"modeldict":[0,1,2],"modelnam":0,"modelroutingprefer":0,"modelselectionconfig":[0,1,2],"modelselectionconfigdict":[0,1,2],"modelstag":[0,1,2],"modelstatu":[0,1,2],"modelstatusdict":[0,1,2],"modelturn":0,"modelvers":0,"modif":0,"modul":[1,2],"moment":0,"month":[0,1,2],"more":[0,1],"most":0,"mostli":0,"mount":0,"mp3":0,"mp4":[0,1],"msg":0,"much":0,"multi":[0,1],"multi_speaker_voice_config":[0,1,2],"multimod":[0,1],"multimodal_embed":0,"multipl":[0,1],"multiplex":0,"multipli":0,"multispeakervoiceconfig":[0,1,2],"multispeakervoiceconfigdict":[0,1,2],"music":[0,1,2],"music_generation_config":[0,1,2],"music_generation_mod":[0,1,2],"music_generation_mode_unspecifi":[0,1,2],"musicgenerationconfig":0,"musicgenerationmod":[0,1,2],"must":[0,1],"mute_bass":[0,1,2],"mute_drum":[0,1,2],"mutebass":0,"mutedrum":0,"mutual":0,"my":[0,1],"my_enterprise_multimodal_dataset":1,"my_model":0,"myrequest":1,"n":0,"n1":0,"n3":0,"na":0,"naccess":0,"naddit":0,"naddition":0,"nall":0,"name":[0,1,2],"nand":0,"nani":0,"nanswer":0,"napi":0,"nassist":0,"nativ":0,"nattribut":0,"natur":0,"naudio":0,"nautomat":0,"nbe":0,"nbegin":0,"nby":0,"ncall":0,"ncase":0,"ncii":0,"nclient":0,"ncode":0,"ncompar":0,"ncompat":0,"nconfigur":0,"ncontain":0,"ncontent":0,"ncontext":0,"ncontrol":0,"ncorpu":0,"ncorrespond":0,"ncurrent":0,"ndai":0,"ndata":0,"ndatastor":0,"ndefault":0,"ndegre":0,"ndeprec":0,"ndesign":0,"ndimens":0,"ndisabl":0,"necessari":[0,1],"need":[0,1],"need_more_input":[0,1,2],"negative_prompt":[0,1,2],"negativeprompt":0,"neglig":[0,1,2],"nenable_control_image_comput":0,"nend":0,"nenum":0,"nenumer":0,"neon":[0,1],"network":0,"new":[0,1],"new_handl":[0,1,2],"new_session_expire_tim":[0,1,2],"newer":0,"newhandl":0,"newli":0,"newsessionexpiretim":0,"nexactli":0,"nexampl":0,"next":0,"next_pag":1,"next_page_token":[0,1,2],"nextgen":0,"nextpagetoken":0,"nfield":0,"nfile":0,"nfilter":0,"nfind":0,"nfor":0,"nfrom":0,"ngener":0,"ngeneratecont":0,"ngeneratecontentrespons":0,"ngoogl":0,"nhistori":0,"nhttp":0,"ni":0,"nif":0,"night":1,"nimag":0,"nin":0,"ninclud":0,"nindic":0,"nindividu":0,"nine":0,"ninform":0,"ninject":0,"ninsignific":0,"ninstanc":0,"ninstead":0,"ninstruct":0,"nit":0,"nl":0,"nl_question_answ":[0,1,2],"nmai":0,"nmake":0,"nmatch":0,"nmax":0,"nmessag":0,"nmethod":0,"nmetric":0,"nmime":0,"nmodel":0,"nnext":0,"nnot":0,"nnote":0,"nnsee":0,"no_auth":[0,1,2],"no_imag":[0,1,2],"no_interrupt":[0,1,2],"nobject":0,"node":0,"nof":0,"nois":0,"non":0,"non_block":[0,1,2],"none":[0,1,2],"nonetyp":0,"nonli":0,"nor":0,"normal":0,"north":0,"note":[0,1],"notebook":0,"notif":0,"now":[0,1],"npairwis":0,"npars":0,"npredict":0,"npresenc":0,"npretrain":0,"nproduct":0,"nprotojson":0,"nprovid":0,"npx":1,"nqueryplac":0,"nreinforcementtuningexampl":0,"nrepres":0,"nrespons":0,"nreturn":0,"nreward":0,"nsame":0,"nsandbox":0,"nsee":0,"nserver":0,"nstorag":0,"nsubject":0,"nsupport":0,"nsystem":0,"ntext":0,"nthat":0,"nthe":0,"nthese":0,"nthi":0,"nthree":0,"ntime":0,"nto":0,"ntoken":0,"ntool":0,"ntrain":0,"nturn":0,"ntype":0,"nuanc":0,"nucleu":0,"null":[0,1,2],"null_valu":[0,1,2],"nullabl":[0,1,2],"nullvalu":0,"num_hit":[0,1,2],"num_token":[0,1,2],"number":[0,1,2],"number_of_imag":[0,1,2],"number_of_video":[0,1,2],"number_valu":[0,1,2],"numberofimag":0,"numberofvideo":0,"numbervalu":0,"numer":0,"numeric_valu":[0,1,2],"numericvalu":0,"numhit":0,"numpi":0,"numtoken":0,"nunspecifi":0,"nuse":0,"nuser":0,"nwere":0,"nwgs84":0,"nwhen":0,"nwill":0,"nwith":0,"nwithin":0,"o":[0,1],"oa":0,"oauth":[0,1,2],"oauth_config":[0,1,2],"oauthconfig":0,"object":[0,1,2],"objection":0,"observ":0,"obtain":0,"occur":0,"ocr":0,"off":[0,1,2],"official_languag":1,"offset":0,"often":0,"oidc":0,"oidc_auth":[0,1,2],"oidc_config":[0,1,2],"oidcconfig":0,"ok":0,"old":0,"omit":0,"on_demand":[0,1,2],"on_demand_flex":[0,1,2],"on_demand_prior":[0,1,2],"onc":[0,1],"one":[0,1],"one_of":[0,1,2],"oneof":0,"ongo":[0,1],"onli":0,"onlin":0,"only_bass_and_drum":[0,1,2],"onlybassanddrum":0,"ontologi":0,"opaqu":0,"open":[0,1],"openapi":0,"openid":0,"oper":[0,1,2],"operation_nam":[0,1,2],"operationnam":0,"optim":[0,1,2],"option":0,"opu":0,"order":[0,1],"org":0,"organ":0,"orient":0,"origami":0,"origin":0,"oss":0,"other":[0,2],"otherwis":0,"out":0,"outcom":[0,1,2],"outcome_deadline_exceed":[0,1,2],"outcome_fail":[0,1,2],"outcome_ok":[0,1,2],"outcome_unspecifi":[0,1,2],"outpaint":[0,1,2],"output":[0,2],"output_audio_transcript":[0,1,2],"output_compression_qu":[0,1,2],"output_config":[0,1,2],"output_dimension":[0,1,2],"output_gcs_uri":[0,1,2],"output_image_ip_prohibit":[0,1,2],"output_info":[0,1,2],"output_mime_typ":[0,1,2],"output_token_limit":[0,1,2],"output_transcript":[0,1,2],"output_uri":[0,1,2],"output_uri_prefix":[0,1,2],"outputaudiotranscript":0,"outputcompressionqu":0,"outputconfig":[0,1,2],"outputconfigdict":[0,1,2],"outputdimension":0,"outputgcsuri":0,"outputinfo":[0,1,2],"outputinfodict":[0,1,2],"outputmimetyp":0,"outputtokenlimit":0,"outputtranscript":0,"outputuri":0,"outputuriprefix":0,"outsid":0,"over":0,"overal":0,"overall_reward":[0,1,2],"overallreward":0,"overlap":0,"overli":0,"overload":0,"overrid":0,"overridden":0,"override_replay_id":[0,1,2],"overridereplayid":0,"overs":0,"overwritten":0,"overwritten_threshold":[0,1,2],"overwrittenthreshold":0,"own":0,"ownership":0,"p5":[0,1,2],"p95":[0,1,2],"pad":[0,1,2],"page":0,"page_numb":[0,1,2],"page_s":[0,1,2],"page_span":[0,1,2],"page_token":[0,1,2],"pagenumb":0,"pager":0,"pages":0,"pagespan":0,"pagetoken":0,"pagin":0,"pai":0,"pair":0,"pairwis":0,"pairwise_choic":[0,1,2],"pairwise_choice_unspecifi":[0,1,2],"pairwise_metric_result":[0,1,2],"pairwisechoic":[0,1,2],"pairwisemetricresult":[0,1,2],"pairwisemetricresultdict":[0,1,2],"pairwisemetricspec":[0,1,2],"pairwisemetricspecdict":[0,1,2],"paragraph":0,"parallel":0,"parallel_ai_search":[0,1,2],"parallelaisearch":0,"param":0,"param1":0,"param2":0,"paramet":[0,1,2],"parameter_nam":[0,1,2],"parameternam":0,"parameters_json_schema":[0,1,2],"parametersjsonschema":0,"parent":[0,1,2],"pari":0,"parrot":0,"pars":[0,1,2],"parse_and_reduce_fn":[0,1,2],"parse_response_config":[0,1,2],"parse_typ":[0,1,2],"parseandreducefn":0,"parsed_response_conversion_scor":[0,1,2],"parsedresponseconversionscor":0,"parser":0,"parseresponseconfig":0,"parsetyp":0,"parsing_funct":[0,1,2],"parsingfunct":0,"part":[0,2],"part_index":[0,1,2],"part_metadata":[0,1,2],"partdict":[0,1,2],"parti":0,"partial":0,"partial_arg":[0,1,2],"partial_match":[0,1,2],"partialarg":[0,1,2],"partialargdict":[0,1,2],"particular":0,"particularli":0,"partindex":0,"partmediaresolut":[0,1,2],"partmediaresolutiondict":[0,1,2],"partmediaresolutionlevel":[0,1,2],"partmetadata":0,"partner":0,"partner_model_tuning_spec":[0,1,2],"partnermodeltuningspec":[0,1,2],"partnermodeltuningspecdict":[0,1,2],"partunion":1,"pass":[0,1],"password":[0,1],"path":[0,1],"pathlib":0,"pattern":[0,1,2],"paus":[0,1,2],"paywal":0,"pcm":0,"pdf":[0,1],"peft":0,"pem":1,"penal":0,"pending_documents_count":[0,1,2],"pendingdocumentscount":0,"peopl":0,"per":0,"perceiv":0,"percentag":0,"percentil":0,"percentile_p90":[0,1,2],"percentile_p95":[0,1,2],"percentile_p99":[0,1,2],"percuss":1,"perform":[0,1],"permiss":0,"person":0,"person_gener":[0,1,2],"person_imag":[0,1,2],"persongener":[0,1,2],"personimag":0,"pet":0,"petal":0,"philschmid":1,"phish_block_threshold_unspecifi":[0,1,2],"phishblockthreshold":[0,1,2],"photo":0,"photo_uri":[0,1,2],"photographi":0,"photouri":0,"phrase":0,"pick":1,"piec":0,"pil":0,"ping":[0,1,2],"pip":1,"pipelin":0,"pipeline_job":[0,1,2],"pipeline_root_directori":[0,1,2],"pipelinejob":0,"pipelinerootdirectori":0,"pixel":0,"place":[0,1,2],"place_answer_sourc":[0,1,2],"place_id":[0,1,2],"placeanswersourc":0,"placehold":0,"placeid":0,"plai":[0,1,2],"plain":0,"plan":0,"plane":1,"platform":[0,1],"play_audio_chunk":0,"playback":0,"playback_control":[0,1,2],"playback_control_unspecifi":[0,1,2],"playbackcontrol":0,"pleas":[0,1],"png":[0,1],"point":0,"pointwis":0,"pointwise_metric_result":[0,1,2],"pointwise_metric_spec":[0,1,2],"pointwisemetricresult":[0,1,2],"pointwisemetricresultdict":[0,1,2],"pointwisemetricspec":[0,1,2],"pointwisemetricspecdict":[0,1,2],"polici":0,"poll":1,"polylin":0,"polylinealgorithm":0,"popul":[0,1],"port":1,"portrait":[0,1,2],"portugues":0,"posit":0,"positive_prompt_safety_attribut":[0,1,2],"positivepromptsafetyattribut":0,"possibl":0,"post":0,"potenti":0,"power":0,"practic":0,"pre":0,"pre_tuned_model":[0,1,2],"pre_tuned_model_checkpoint_id":[0,1,2],"prebuilt":0,"prebuilt_voice_config":[0,1,2],"prebuiltvoiceconfig":[0,1,2],"prebuiltvoiceconfigdict":[0,1,2],"preced":[0,1],"predefin":0,"predefined_metric_spec":[0,1,2],"predefined_rubric_generation_spec":[0,1,2],"predefinedmetricspec":[0,1,2],"predefinedmetricspecdict":[0,1,2],"predefinedrubricgenerationspec":0,"predict":[0,2],"predictions_timestamp":0,"predictionservic":0,"predictor":0,"preemptiv":0,"prefer":[0,1],"preference_optimization_data_stat":[0,1,2],"preference_optimization_spec":[0,1,2],"preference_tun":[0,1,2],"preferenceoptimizationdatastat":[0,1,2],"preferenceoptimizationdatastatsdict":[0,1,2],"preferenceoptimizationhyperparamet":[0,1,2],"preferenceoptimizationhyperparametersdict":[0,1,2],"preferenceoptimizationspec":[0,1,2],"preferenceoptimizationspecdict":[0,1,2],"prefil":0,"prefix":0,"prefix_padding_m":[0,1,2],"prefix_turn":0,"prefixitem":0,"prefixpaddingm":0,"prepar":0,"preprocess":0,"presenc":0,"presence_penalti":[0,1,2],"presencepenalti":0,"present":0,"preserv":0,"pretrain":0,"pretunedmodel":[0,1,2],"pretunedmodelcheckpointid":0,"pretunedmodeldict":[0,1,2],"prevent":0,"preview":[0,1,2],"previou":[0,1],"previous":0,"previous_interaction_id":0,"price":0,"primit":0,"print":[0,1],"prioriti":[0,1,2],"prioritize_cost":[0,1,2],"prioritize_qu":[0,1,2],"privat":0,"pro":[0,1],"proactiv":[0,1,2],"proactive_audio":[0,1,2],"proactiveaudio":0,"proactivityconfig":[0,1,2],"proactivityconfigdict":[0,1,2],"probability_scor":[0,1,2],"probabilityscor":0,"probabl":[0,1,2],"problem":0,"proce":0,"process":[0,1,2],"produc":0,"product":0,"product_imag":[0,1,2],"productimag":[0,1,2],"productimagedict":[0,1,2],"profil":[0,1],"program":0,"progress":0,"prohibit":0,"prohibited_cont":[0,1,2],"prohibited_input_cont":[0,1,2],"project":[0,1,2],"projectid":0,"projectoper":[0,1,2],"projectoperationdict":[0,1,2],"promin":0,"prominent_peopl":[0,1,2],"prominent_people_unspecifi":[0,1,2],"prominentpeopl":[0,1,2],"promot":0,"prompt":[0,1,2],"prompt_dataset_uri":[0,1,2],"prompt_feedback":[0,1,2],"prompt_templ":[0,1,2],"prompt_template_nam":[0,1,2],"prompt_token_count":[0,1,2],"prompt_tokens_detail":[0,1,2],"promptdataseturi":0,"promptfeedback":0,"promptmessag":0,"prompttempl":0,"prompttemplatenam":0,"prompttokencount":0,"prompttokensdetail":0,"propag":0,"properli":1,"properti":[0,1,2],"property_ord":[0,1,2],"propertyord":0,"protect":0,"proto":0,"protobuf":0,"protocol":0,"protojson":0,"provid":0,"provis":0,"provisioned_throughput":[0,1,2],"proxy_uri":1,"pt":[0,1,2],"public":[0,1],"publication_d":[0,1,2],"publicationd":0,"publish":0,"pubsub":0,"pubsub_top":[0,1,2],"pubsubtop":0,"purpos":0,"put":1,"pydant":0,"pydantic_cor":0,"pyguid":0,"python":[0,2],"python_code_assert":[0,1,2],"python_code_snippet":[0,1,2],"pythoncodesnippet":0,"pyyaml":0,"q":1,"q2":0,"q3":0,"qualifi":0,"qualiti":[0,1,2],"queri":0,"query_bas":[0,1,2],"querybas":0,"queryplac":0,"question":[0,1],"queue":0,"quickli":0,"quickstart":0,"quot":[0,1],"quota":0,"rag":0,"rag_chunk":[0,1,2],"rag_corpora":[0,1,2],"rag_corpu":[0,1,2],"rag_file_id":[0,1,2],"rag_resourc":[0,1,2],"rag_retrieval_config":[0,1,2],"ragchunk":[0,1,2],"ragchunkdict":[0,1,2],"ragchunkpagespan":[0,1,2],"ragchunkpagespandict":[0,1,2],"ragcorpora":0,"ragcorpu":0,"ragfil":0,"ragfileid":0,"ragresourc":0,"ragretrievalconfig":[0,1,2],"ragretrievalconfigdict":[0,1,2],"ragretrievalconfigfilt":[0,1,2],"ragretrievalconfigfilterdict":[0,1,2],"ragretrievalconfighybridsearch":[0,1,2],"ragretrievalconfighybridsearchdict":[0,1,2],"ragretrievalconfigrank":[0,1,2],"ragretrievalconfigrankingdict":[0,1,2],"ragretrievalconfigrankingllmrank":[0,1,2],"ragretrievalconfigrankingllmrankerdict":[0,1,2],"ragretrievalconfigrankingrankservic":[0,1,2],"ragretrievalconfigrankingrankservicedict":[0,1,2],"rai":0,"rai_filtered_reason":[0,1,2],"rai_media_filtered_count":[0,1,2],"rai_media_filtered_reason":[0,1,2],"raifilteredreason":0,"raimediafilteredcount":0,"raimediafilteredreason":0,"raini":1,"rais":[0,1],"raise_error_on_unsupported_field":0,"ram":0,"ran":0,"random":[0,1],"randomli":0,"rang":0,"rank":[0,1,2],"rank_servic":[0,1,2],"ranker":0,"rankservic":0,"rate":0,"rather":[0,1],"ratio":0,"raw":0,"raw_output":[0,1,2],"raw_ref_imag":[0,1],"rawoutput":[0,1,2],"rawoutputdict":[0,1,2],"rawreferenceimag":[0,1,2],"rawreferenceimagedict":[0,1,2],"rb":1,"re":[0,1],"reach":0,"read":[0,1],"read_audio":0,"read_byt":0,"readabl":0,"readi":0,"real":0,"realist":0,"realtim":0,"realtime_input":[0,1,2],"realtime_input_config":[0,1,2],"realtimeinput":0,"realtimeinputconfig":[0,1,2],"realtimeinputconfigdict":[0,1,2],"reason":0,"receiv":[0,1,2],"recent":0,"recit":[0,1,2],"recogn":0,"recognit":0,"recommend":[0,1],"reconnect":0,"recontext":0,"recontext_imag":[0,1,2],"recontextimageconfig":[0,1,2],"recontextimageconfigdict":[0,1,2],"recontextimagerespons":[0,1,2],"recontextimageresponsedict":[0,1,2],"recontextimagesourc":[0,1,2],"recontextimagesourcedict":[0,1,2],"recontextu":0,"record":0,"rectangular":0,"red":0,"reduc":[0,1],"reduct":0,"ref":[0,1,2],"refer":[0,2],"referenc":0,"reference_id":[0,1,2],"reference_imag":[0,1,2],"reference_typ":[0,1,2],"referenceid":0,"referenceimag":0,"referencetyp":0,"refin":0,"reflect":[0,1],"refram":0,"regardless":0,"regener":0,"regex":0,"regex_contain":[0,1,2],"regex_extract":[0,1,2],"regex_extract_express":[0,1,2],"regexextractexpress":0,"regexp_contain":0,"regexp_extract":0,"region":0,"regist":[0,1,2],"registerfilesconfig":[0,1,2],"registerfilesconfigdict":[0,1,2],"registerfilesrespons":[0,1,2],"registerfilesresponsedict":[0,1,2],"regular":[0,1,2],"reinforc":0,"reinforcement_tun":[0,1,2],"reinforcement_tuning_data_stat":[0,1,2],"reinforcement_tuning_spec":[0,1,2],"reinforcement_tuning_thinking_level_unspecifi":[0,1,2],"reinforcement_tuning_user_dataset_exampl":[0,1,2],"reinforcementtuningautoraterscor":[0,1,2],"reinforcementtuningautoraterscorerdict":[0,1,2],"reinforcementtuningautoraterscorerexactmatchscor":[0,1,2],"reinforcementtuningautoraterscorerexactmatchscorerdict":[0,1,2],"reinforcementtuningautoraterscorerparsedresponseconversionscor":[0,1,2],"reinforcementtuningautoraterscorerparsedresponseconversionscorerdict":[0,1,2],"reinforcementtuningcloudrunrewardscor":[0,1,2],"reinforcementtuningcloudrunrewardscorerdict":[0,1,2],"reinforcementtuningcodeexecutionrewardscor":[0,1,2],"reinforcementtuningcodeexecutionrewardscorerdict":[0,1,2],"reinforcementtuningdatastat":0,"reinforcementtuningexampl":[0,1,2],"reinforcementtuningexampledict":[0,1,2],"reinforcementtuninghyperparamet":[0,1,2],"reinforcementtuninghyperparametersdict":[0,1,2],"reinforcementtuningparseresponseconfig":[0,1,2],"reinforcementtuningparseresponseconfigdict":[0,1,2],"reinforcementtuningrewardinfo":[0,1,2],"reinforcementtuningrewardinfodict":[0,1,2],"reinforcementtuningspec":[0,1,2],"reinforcementtuningspecdict":[0,1,2],"reinforcementtuningstringmatchrewardscor":[0,1,2],"reinforcementtuningstringmatchrewardscorerdict":[0,1,2],"reinforcementtuningstringmatchrewardscorerjsonmatchexpress":[0,1,2],"reinforcementtuningstringmatchrewardscorerjsonmatchexpressiondict":[0,1,2],"reinforcementtuningstringmatchrewardscorerstringmatchexpress":[0,1,2],"reinforcementtuningstringmatchrewardscorerstringmatchexpressiondict":[0,1,2],"reinforcementtuningthinkinglevel":[0,1,2],"reinforcementtuninguserdatasetexampl":[0,1,2],"reinforcementtuninguserdatasetexamplesdict":[0,1,2],"reject":0,"rel":0,"relat":0,"relative_publish_time_descript":[0,1,2],"relativepublishtimedescript":0,"releas":[0,1],"relev":0,"reli":0,"remain":0,"remot":[0,1],"remov":[0,1,2],"remove_stat":[0,1,2],"render":0,"rendered_cont":[0,1,2],"rendered_part":[0,1,2],"renderedcont":0,"renderedpart":0,"reopen":0,"repeat":0,"repeatedli":0,"repetit":0,"replac":0,"replai":0,"replay_id":[0,1,2],"replayfil":[0,1,2],"replayfiledict":[0,1,2],"replayid":0,"replayinteract":[0,1,2],"replayinteractiondict":[0,1,2],"replayrequest":[0,1,2],"replayrequestdict":[0,1,2],"replayrespons":[0,1,2],"replayresponsedict":[0,1,2],"replays_directori":[0,1,2],"repli":0,"replic":0,"replicated_voice_config":[0,1,2],"replicatedvoiceconfig":[0,1,2],"replicatedvoiceconfigdict":[0,1,2],"repo":0,"report":0,"repositori":0,"repres":0,"represent":0,"reproduc":0,"request":[0,2],"request_1":1,"request_2":1,"requir":[0,1,2],"requires_act":0,"rerank":0,"reset":0,"reset_context":[0,1,2],"resiz":0,"resize_mod":[0,1,2],"resizemod":0,"resolut":[0,1,2],"resourc":[1,2],"resourcescop":[0,1,2],"respect":[0,1],"respond":[0,1],"respons":[0,2],"response1":1,"response2":1,"response3":1,"response_1":[0,1],"response_2":[0,1],"response_format":[0,1,2],"response_id":[0,1,2],"response_json_schema":[0,1,2],"response_logprob":[0,1,2],"response_mime_typ":[0,1,2],"response_mod":[0,1,2],"response_parse_type_unspecifi":[0,1,2],"response_reject":[0,1,2],"response_schema":[0,1,2],"response_str":0,"response_template_nam":[0,1,2],"response_token_count":[0,1,2],"response_tokens_detail":[0,1,2],"responseformat":[0,1,2],"responseformatdict":[0,1,2],"responseid":0,"responsejsonschema":0,"responselogprob":0,"responsemimetyp":0,"responsemod":0,"responseparsetyp":[0,1,2],"responseschema":0,"responsetemplatenam":0,"responsetokencount":0,"responsetokensdetail":0,"responsiv":0,"rest":[0,1],"restart":0,"restor":0,"restrict":0,"result":[0,1,2],"result_parser_config":[0,1,2],"resultparserconfig":0,"resum":[0,1,2],"resumpt":0,"retain":0,"retir":[0,1,2],"retirement_tim":[0,1,2],"retirementtim":0,"retri":0,"retriev":[0,1,2],"retrieval_config":[0,1,2],"retrieval_docu":0,"retrieval_metadata":[0,1,2],"retrieval_queri":[0,1,2],"retrievalconfig":[0,1,2],"retrievalconfigdict":[0,1,2],"retrievaldict":[0,1,2],"retrievalmetadata":[0,1,2],"retrievalmetadatadict":[0,1,2],"retrievalqueri":0,"retrieved_context":[0,1,2],"retrieved_url":[0,1,2],"retrievedcontext":0,"retrievedurl":0,"retry_opt":[0,1,2],"retryabl":0,"retryopt":0,"return":[0,1],"return_raw_output":[0,1,2],"returnrawoutput":0,"reus":0,"reusabl":0,"review":[0,1,2],"review_id":[0,1,2],"review_snippet":[0,1,2],"reviewid":0,"reviewsnippet":0,"revoc":0,"revocation_behavior":0,"reward":[0,1,2],"reward_a":0,"reward_b":0,"reward_config":[0,1,2],"reward_info_detail":[0,1,2],"reward_nam":[0,1,2],"rewardconfig":0,"rewardinfodetail":0,"rewardnam":0,"rewawrd":0,"rewrit":0,"rewritten":0,"rfc":0,"rfc9535":0,"rich":0,"ridicul":0,"right":[0,1,2],"risk":0,"riski":0,"rl":0,"rng":0,"role":[0,1,2],"root":0,"rotate_signing_secret":[0,1,2],"roug":[0,1,2],"rouge_metric_valu":[0,1,2],"rouge_spec":[0,1,2],"rouge_typ":[0,1,2],"rougel":0,"rougelsum":0,"rougemetricvalu":[0,1,2],"rougemetricvaluedict":[0,1,2],"rougen":0,"rougespec":[0,1,2],"rougespecdict":[0,1,2],"rougetyp":0,"roughli":0,"rout":[0,1,2],"router":0,"routing_config":[0,1,2],"routingconfig":0,"row":0,"rpc":0,"rubric":0,"rubric_content_typ":[0,1,2],"rubric_content_type_unspecifi":[0,1,2],"rubric_generation_spec":[0,1,2],"rubric_group":0,"rubric_group_kei":[0,1,2],"rubric_type_ontologi":[0,1,2],"rubric_verdict":0,"rubriccontenttyp":[0,1,2],"rubricgenerationspec":[0,1,2],"rubricgenerationspecdict":[0,1,2],"rubricgroupkei":0,"rubrictypeontologi":0,"run":[0,1,2],"runtim":0,"runtime_auth_config":0,"sa":0,"safetensor":0,"safeti":[0,2],"safety_attribut":[0,1,2],"safety_filter_level":[0,1,2],"safety_policy_unspecifi":[0,1,2],"safety_r":[0,1,2],"safety_set":[0,1,2],"safetyattribut":[0,1,2],"safetyattributesdict":[0,1,2],"safetyfilterlevel":[0,1,2],"safetypolici":[0,1,2],"safetyr":[0,1,2],"safetyratingdict":[0,1,2],"safetyset":[0,1,2],"safetysettingdict":[0,1,2],"sai":1,"same":[0,1],"sampl":[0,1],"sample_r":[0,1,2],"sample_respons":0,"sampler":0,"samples_per_prompt":[0,1,2],"samplesperprompt":0,"sampling_count":[0,1,2],"samplingcount":0,"san":1,"sandbox":0,"sanit":0,"save":[0,1,2],"scale":[0,1,2],"scale_unspecifi":[0,1,2],"scene":0,"schedul":[0,1,2],"scheduling_unspecifi":[0,1,2],"schema":[0,2],"schemadict":[0,1,2],"scheme":0,"scone":[0,1],"scope":0,"score":[0,1,2],"score_variance_per_example_distribut":[0,1,2],"scorer":0,"scores_distribut":[0,1,2],"scoresdistribut":0,"scorevarianceperexampledistribut":0,"screen":0,"scribbl":0,"scribble_imag":[0,1,2],"scribbleimag":[0,1,2],"scribbleimagedict":[0,1,2],"sdk":0,"sdk_blob":[0,1,2],"sdk_http_respons":[0,1,2],"sdk_response_seg":[0,1,2],"sdkblob":0,"sdkhttprespons":0,"sdkresponseseg":0,"search":0,"search_entry_point":[0,1,2],"search_templ":[0,1,2],"search_typ":[0,1,2],"searchalongrout":0,"searchentrypoint":[0,1,2],"searchentrypointdict":[0,1,2],"searchtempl":0,"searchtyp":[0,1,2],"searchtypesdict":[0,1,2],"sec4":0,"second":0,"secret":0,"secretmanag":0,"section":1,"secur":0,"see":[0,1],"seed":[0,1,2],"segment":[0,1,2],"segment_imag":[0,1,2],"segmentation_class":[0,1,2],"segmentationclass":0,"segmentdict":[0,1,2],"segmentimageconfig":[0,1,2],"segmentimageconfigdict":[0,1,2],"segmentimagerespons":[0,1,2],"segmentimageresponsedict":[0,1,2],"segmentimagesourc":[0,1,2],"segmentimagesourcedict":[0,1,2],"segmentmod":[0,1,2],"select":0,"self":0,"sell":0,"semant":[0,1,2],"send":[0,2],"send_client_cont":[0,1,2],"send_messag":1,"send_message_stream":[0,1],"send_realtime_input":[0,1,2],"send_tool_respons":[0,1,2],"sensit":0,"sensitive_data_modif":[0,1,2],"sent":0,"sentenc":[0,1],"separ":[0,1],"sequenc":0,"serv":0,"server":[0,1],"server_cont":[0,1,2],"server_param":1,"servercont":0,"servic":[0,1],"service_account":[0,1,2],"service_ti":[0,1,2],"serviceaccount":0,"serviceti":[0,1,2],"session":[0,1],"session_id":[0,1,2],"session_resumpt":[0,1,2],"session_resumption_upd":[0,1,2],"sessionid":0,"sessionresumpt":0,"sessionresumptionconfig":[0,1,2],"sessionresumptionconfigdict":[0,1,2],"sessionresumptiontoken":0,"sessionresumptiontokenupd":0,"sessionresumptionupd":0,"set":0,"setup":[0,1,2],"setup_complet":[0,1,2],"setupcomplet":0,"sever":[0,1,2],"severity_scor":[0,1,2],"severityscor":0,"sexual":0,"sft":0,"sft_loss_weight_multipli":[0,1,2],"sftlossweightmultipli":0,"sha":0,"sha256_hash":[0,1,2],"sha256hash":0,"shall":0,"share":0,"shop":0,"short":0,"shorten":0,"shorter":0,"should":0,"should_return_http_respons":[0,1,2],"shouldreturnhttprespons":0,"show":[0,1,2],"shown":[0,1],"side":0,"sign":0,"signal":0,"signatur":[0,1,2],"signific":0,"silenc":0,"silence_duration_m":[0,1,2],"silencedurationm":0,"silent":[0,1,2],"similar":0,"similarity_top_k":[0,1,2],"similaritytopk":0,"simpi":0,"simpl":[0,1],"simple_search":[0,1,2],"simple_search_param":[0,1,2],"simplesearchparam":0,"sinc":0,"singl":[0,1],"single_reward_config":[0,1,2],"singleembedcontentrespons":[0,1,2],"singleembedcontentresponsedict":[0,1,2],"singlereinforcementtuningrewardconfig":[0,1,2],"singlereinforcementtuningrewardconfigdict":[0,1,2],"singlerewardconfig":0,"sit":0,"site":0,"size":0,"size_byt":[0,1,2],"sizebyt":0,"sketch":0,"skip":0,"skip_in_api_mod":[0,1,2],"skipinapimod":0,"sky":[0,1],"sleep":[0,1],"slide":0,"sliding_window":[0,1,2],"slidingwindow":[0,1,2],"slidingwindowdict":[0,1,2],"slot":0,"small":0,"smaller":0,"smallest":0,"snake":0,"sneaker":1,"snippet":0,"so":[0,1],"sock":1,"socks5":1,"some":[0,1],"someth":1,"soon":0,"sort":0,"sound":0,"sourc":[0,1,2],"source_flagging_uri":[0,1,2],"source_id":[0,1,2],"source_metadata":[0,1,2],"source_polici":0,"source_unspecifi":[0,1,2],"source_uri":[0,1,2],"sourceflagginguri":0,"sourceid":0,"sourcemetadata":0,"sourceuri":0,"south":0,"space":0,"spanish":0,"spars":0,"speak":0,"speaker":[0,1,2],"speaker_label":[0,1,2],"speaker_voice_config":[0,1,2],"speakerlabel":0,"speakervoiceconfig":[0,1,2],"speakervoiceconfigdict":[0,1,2],"spec":0,"special":0,"specif":0,"specifi":[0,1],"speech":0,"speech_config":[0,1,2],"speechconfig":[0,1,2],"speechconfigdict":[0,1,2],"speed":[0,1],"spii":[0,1,2],"spk_1":0,"spk_2":0,"split":0,"split_summari":[0,1,2],"splitsummari":0,"spoken":0,"sql":0,"src":[0,1,2],"sse":0,"sse_read_timeout":[0,1,2],"ssereadtimeout":0,"ssl":1,"ssl_cert_fil":1,"stabl":[0,1,2],"stage":0,"stai":0,"standard":[0,1,2],"standard_devi":[0,1,2],"start":[0,1],"start_index":[0,1,2],"start_of_activity_interrupt":[0,1,2],"start_of_speech_sensit":[0,1,2],"start_offset":[0,1,2],"start_sensitivity_high":[0,1,2],"start_sensitivity_low":[0,1,2],"start_sensitivity_unspecifi":[0,1,2],"start_stream":[0,1,2],"start_tim":[0,1,2],"startindex":0,"startoffset":0,"startofspeechsensit":0,"startsensit":[0,1,2],"starttim":0,"stat":0,"state":[0,1,2],"state_act":[0,1,2],"state_fail":[0,1,2],"state_pend":[0,1,2],"state_unspecifi":[0,1,2],"static":0,"statist":[0,1,2],"statu":0,"status_cod":[0,1,2],"statuscod":0,"stderr":0,"stdio":1,"stdio_client":1,"stdioserverparamet":1,"stdout":0,"steer":0,"stemmer":0,"step":[0,1,2],"stepdelta":0,"stepstart":0,"stepstop":0,"still":0,"stop":[0,1,2],"stop_sequ":[0,1,2],"stopsequ":0,"storag":[0,1],"store":[0,1],"store_context":[0,1,2],"storecontext":0,"stori":1,"str":[0,1],"stream":0,"stream_function_call_argu":[0,1,2],"streamable_http_transport":[0,1,2],"streamablehttptransport":[0,1,2],"streamablehttptransportdict":[0,1,2],"streamfunctioncallargu":0,"strftime":1,"string":[0,2],"string_funct":0,"string_list_valu":[0,1,2],"string_match_express":[0,1,2],"string_match_reward_scor":[0,1,2],"string_valu":[0,1,2],"stringlist":[0,1,2],"stringlistdict":[0,1,2],"stringlistvalu":0,"stringmatchexpress":0,"stringmatchrewardscor":0,"stringvalu":0,"structur":0,"stub":0,"student":0,"student_model":[0,1,2],"studentmodel":0,"style":[0,1,2],"style_descript":[0,1,2],"style_image_config":[0,1,2],"style_reference_config":0,"styledescript":0,"styleguid":0,"styleimageconfig":0,"stylereferenceconfig":[0,1,2],"stylereferenceconfigdict":[0,1,2],"stylereferenceimag":[0,1,2],"stylereferenceimagedict":[0,1,2],"sub":0,"subclass":[0,1],"subject":0,"subject_descript":[0,1,2],"subject_image_config":[0,1,2],"subject_reference_config":0,"subject_typ":[0,1,2],"subject_type_anim":[0,1,2],"subject_type_default":[0,1,2],"subject_type_person":[0,1,2],"subject_type_product":[0,1,2],"subjectdescript":0,"subjectimageconfig":0,"subjectreferenceconfig":[0,1,2],"subjectreferenceconfigdict":[0,1,2],"subjectreferenceimag":[0,1,2],"subjectreferenceimagedict":[0,1,2],"subjectreferencetyp":[0,1,2],"subjecttyp":0,"submodul":[1,2],"subschema":0,"subscrib":0,"subscribed_ev":0,"subscript":0,"subsequ":0,"subset":0,"substitut":0,"substr":0,"subtyp":0,"succe":0,"succeed":0,"success":0,"successful_count":[0,1,2],"successful_forecast_point_count":[0,1,2],"successfulcount":0,"successfulforecastpointcount":0,"successfulli":0,"suffici":0,"suffix":0,"suggest":0,"suitabl":0,"sum":[0,1,2],"summar":1,"summari":0,"sunlight":1,"sunni":1,"sunnyval":1,"supervis":[0,1],"supervised_fine_tun":[0,1,2],"supervised_tuning_data_stat":[0,1,2],"supervised_tuning_spec":[0,1,2],"supervisedhyperparamet":[0,1,2],"supervisedhyperparametersdict":[0,1,2],"supervisedtuningdatasetdistribut":[0,1,2],"supervisedtuningdatasetdistributiondatasetbucket":[0,1,2],"supervisedtuningdatasetdistributiondatasetbucketdict":[0,1,2],"supervisedtuningdatasetdistributiondict":[0,1,2],"supervisedtuningdatastat":[0,1,2],"supervisedtuningdatastatsdict":[0,1,2],"supervisedtuningspec":[0,1,2],"supervisedtuningspecdict":[0,1,2],"suppli":0,"support":0,"supported_act":[0,1,2],"supported_model":0,"supportedact":0,"suppress":0,"surfac":0,"sync":[0,1],"synchron":0,"synthesi":0,"synthid":0,"system":0,"system_instruct":[0,1,2],"systeminstruct":0,"t":[0,1],"tabl":[0,1],"tag":0,"take":[0,1],"talk":0,"target":0,"target_language_cod":[0,1,2],"target_token":[0,1,2],"targetlanguagecod":0,"targettoken":0,"task":0,"task_typ":[0,1,2],"tasktyp":0,"teacher":0,"technic":0,"tell":[0,1],"temperatur":[0,1,2],"templat":0,"temporarili":0,"term":0,"termin":0,"terminate_on_clos":[0,1,2],"terminateonclos":0,"terminologi":0,"test":[0,1],"test_dataset_exampl":1,"test_method":[0,1,2],"test_tabl":[0,1,2],"test_token":1,"testmethod":0,"testtabl":0,"testtablefil":[0,1,2],"testtablefiledict":[0,1,2],"testtableitem":[0,1,2],"testtableitemdict":[0,1,2],"text":[0,2],"text_count":[0,1,2],"text_input":[0,1,2],"text_quality_v1":0,"textcount":0,"textinput":0,"textresponseformat":[0,1,2],"textresponseformatdict":[0,1,2],"textur":0,"than":[0,1],"thei":0,"them":0,"thi":[0,1],"think":[0,1,2],"thinking_budget":[0,1,2],"thinking_config":[0,1,2],"thinking_level":[0,1,2],"thinking_level_unspecifi":[0,1,2],"thinkingbudget":0,"thinkingconfig":[0,1,2],"thinkingconfigdict":[0,1,2],"thinkinglevel":[0,1,2],"third":0,"those":[0,1],"thought":[0,1,2],"thought_signatur":[0,1,2],"thoughts_token_count":[0,1,2],"thoughtsignatur":0,"thoughtstokencount":0,"threaten":0,"three":0,"threshold":[0,1,2],"through":[0,1],"throughput":0,"thu":0,"tie":[0,1,2],"tier":0,"time":[0,1],"time_left":[0,1,2],"time_range_filt":[0,1,2],"time_zon":0,"timeleft":0,"timeless":0,"timeofdai":0,"timeout":[0,1,2],"timerangefilt":0,"timestamp":0,"titl":[0,1,2],"to_yaml_fil":[0,1,2],"togeth":0,"token":2,"token_count":[0,1,2],"token_id":[0,1,2],"tokencount":0,"tokenid":0,"tokens_detail":[0,1,2],"tokens_info":[0,1,2],"tokensdetail":0,"tokensinfo":[0,1,2],"tokensinfodict":[0,1,2],"told":1,"too":0,"too_many_tool_cal":[0,1,2],"tool":[0,2],"tool_cal":[0,1,2],"tool_call_cancel":[0,1,2],"tool_config":[0,1,2],"tool_respons":[0,1,2],"tool_typ":[0,1,2],"tool_type_unspecifi":[0,1,2],"tool_use_prompt_token_count":[0,1,2],"tool_use_prompt_tokens_detail":[0,1,2],"toolcal":[0,1,2],"toolcallcancel":0,"toolcalldict":[0,1,2],"toolcallmessag":0,"toolcodeexecut":[0,1,2],"toolcodeexecutiondict":[0,1,2],"toolconfig":[0,1,2],"toolconfigdict":[0,1,2],"tooldict":[0,1,2],"toolexaaisearch":[0,1,2],"toolexaaisearchdict":[0,1,2],"toolparallelaisearch":[0,1,2],"toolparallelaisearchdict":[0,1,2],"toolrespons":[0,1,2],"toolresponsedict":[0,1,2],"tooltyp":[0,1,2],"tooluseprompttokencount":0,"tooluseprompttokensdetail":0,"top":[0,1],"top_candid":[0,1,2],"top_k":[0,1,2],"top_p":[0,1,2],"topcandid":0,"topic":0,"topk":0,"topp":0,"torment":0,"total":0,"total_area_sq_mi":1,"total_billable_character_count":[0,1,2],"total_billable_token_count":[0,1,2],"total_prompts_in_dataset":0,"total_reward":0,"total_step":0,"total_token":[0,1,2],"total_token_count":[0,1,2],"total_truncated_example_count":[0,1,2],"total_tuning_character_count":[0,1,2],"totalbillablecharactercount":0,"totalbillabletokencount":0,"totaltoken":0,"totaltokencount":0,"totaltruncatedexamplecount":0,"totaltuningcharactercount":0,"toward":0,"track":0,"trade":0,"tradit":0,"traffic":0,"traffic_typ":[0,1,2],"traffic_type_unspecifi":[0,1,2],"traffictyp":[0,1,2],"train":0,"training_dataset":[0,1,2],"training_dataset_stat":[0,1,2],"training_dataset_uri":[0,1,2],"trainingdataset":0,"trainingdatasetstat":0,"trainingdataseturi":0,"transact":0,"transcript":[0,1,2],"transcriptiondict":[0,1,2],"transit":0,"translat":0,"translation_config":[0,1,2],"translationconfig":[0,1,2],"translationconfigdict":[0,1,2],"transpar":[0,1,2],"transport":0,"treat":0,"trigger":[0,1,2],"trigger_id":0,"trigger_token":[0,1,2],"triggertoken":0,"true":[0,1],"truncat":[0,1,2],"truncated_example_indic":[0,1,2],"truncatedexampleindic":0,"trust_env":1,"try":[0,1],"ttl":[0,1,2],"tune":2,"tuned_model":[0,1,2],"tuned_model_display_nam":[0,1,2],"tuned_model_info":[0,1,2],"tuned_model_nam":[0,1,2],"tuned_teacher_model_sourc":[0,1,2],"tunedmodel":[0,1,2],"tunedmodelcheckpoint":[0,1,2],"tunedmodelcheckpointdict":[0,1,2],"tunedmodeldict":[0,1,2],"tunedmodeldisplaynam":0,"tunedmodelinfo":[0,1,2],"tunedmodelinfodict":[0,1,2],"tunedmodelnam":0,"tunedteachermodelsourc":0,"tuning_data_stat":[0,1,2],"tuning_dataset_example_count":[0,1,2],"tuning_job":[0,1,2],"tuning_job_id":0,"tuning_job_metadata":[0,1,2],"tuning_job_st":[0,1,2],"tuning_job_state_post_process":[0,1,2],"tuning_job_state_processing_dataset":[0,1,2],"tuning_job_state_tun":[0,1,2],"tuning_job_state_unspecifi":[0,1,2],"tuning_job_state_waiting_for_capac":[0,1,2],"tuning_job_state_waiting_for_quota":[0,1,2],"tuning_mod":[0,1,2],"tuning_mode_ful":[0,1,2],"tuning_mode_peft_adapt":[0,1,2],"tuning_mode_unspecifi":[0,1,2],"tuning_spe":[0,1,2],"tuning_speed_unspecifi":[0,1,2],"tuning_step_count":[0,1,2],"tuning_task":[0,1,2],"tuning_task_i2v":[0,1,2],"tuning_task_r2v":[0,1,2],"tuning_task_t2v":[0,1,2],"tuning_task_unspecifi":[0,1,2],"tuningdataset":[0,1,2],"tuningdatasetdict":[0,1,2],"tuningdatasetexamplecount":0,"tuningdatastat":[0,1,2],"tuningdatastatsdict":[0,1,2],"tuningexampl":[0,1,2],"tuningexampledict":[0,1,2],"tuningjob":[0,1,2],"tuningjobdict":[0,1,2],"tuningjobmetadata":[0,1,2],"tuningjobmetadatadict":[0,1,2],"tuningjobst":[0,1,2],"tuningmethod":[0,1,2],"tuningmod":[0,1,2],"tuningoper":[0,1,2],"tuningoperationdict":[0,1,2],"tuningspe":[0,1,2],"tuningstepcount":0,"tuningtask":[0,1,2],"tuningvalidationdataset":[0,1,2],"tuningvalidationdatasetdict":[0,1,2],"tupl":0,"turn":[0,1,2],"turn_complet":[0,1,2],"turn_complete_reason":[0,1,2],"turn_complete_reason_unspecifi":[0,1,2],"turn_coverag":[0,1,2],"turn_coverage_unspecifi":[0,1,2],"turn_includes_all_input":[0,1,2],"turn_includes_audio_activity_and_all_video":[0,1,2],"turn_includes_only_act":[0,1,2],"turn_on_the_light":0,"turncomplet":0,"turncompletereason":[0,1,2],"turncoverag":[0,1,2],"two":[0,1],"txt":[0,1],"type":2,"type_check":0,"type_unspecifi":[0,1,2],"typeddict":[0,1],"typic":0,"u":[0,1],"u2019":0,"u2019t":0,"ui":0,"ultra":0,"umbrella":1,"unari":0,"uncertain":0,"uncertainti":0,"unchang":0,"uncondition":0,"undefin":0,"under":0,"underli":[0,1],"underscor":0,"understand":0,"undo":0,"unexpect":0,"unexpected_tool_cal":[0,1,2],"unicod":0,"unifi":0,"unifiedmetr":[0,1,2],"unifiedmetricdict":[0,1,2],"union":0,"uniontyp":0,"uniqu":[0,1],"unique_id":0,"unique_item":[0,1,2],"uniqueitem":0,"unit":[0,1],"unknown":0,"unknowninteractionsseev":0,"unless":0,"unlock":0,"unrol":0,"unsaf":0,"unsafe_prompt_for_image_gener":[0,1,2],"unset":0,"unspecifi":[0,1,2],"unstable_experiment":[0,1,2],"unsupport":0,"until":[0,1],"unus":0,"up":[0,1],"updat":[0,2],"update_mask":0,"update_tim":[0,1,2],"updatecachedcontentconfig":[0,1,2],"updatecachedcontentconfigdict":[0,1,2],"updatemodelconfig":[0,1,2],"updatemodelconfigdict":[0,1,2],"updatetim":0,"upload":[0,2],"uploadfileconfig":[0,1,2],"uploadfileconfigdict":[0,1,2],"uploadtofilesearchstor":0,"uploadtofilesearchstoreconfig":[0,1,2],"uploadtofilesearchstoreconfigdict":[0,1,2],"uploadtofilesearchstoreoper":[0,1,2],"uploadtofilesearchstorerespons":[0,1,2],"uploadtofilesearchstoreresponsedict":[0,1,2],"uploadtofilesearchstoreresumablerespons":[0,1,2],"uploadtofilesearchstoreresumableresponsedict":[0,1,2],"upper":0,"upscal":0,"upscale_factor":[0,1,2],"upscale_imag":[0,1,2],"upscalefactor":0,"upscaleimageconfig":[0,1,2],"upscaleimageconfigdict":[0,1,2],"upscaleimageparamet":[0,1,2],"upscaleimageparametersdict":[0,1,2],"upscaleimagerespons":[0,1,2],"upscaleimageresponsedict":[0,1,2],"uri":[0,1,2],"url":[0,2],"url_context":[0,1,2],"url_context_metadata":[0,1,2],"url_metadata":[0,1,2],"url_retrieval_statu":[0,1,2],"url_retrieval_status_error":[0,1,2],"url_retrieval_status_paywal":[0,1,2],"url_retrieval_status_success":[0,1,2],"url_retrieval_status_unsaf":[0,1,2],"url_retrieval_status_unspecifi":[0,1,2],"urlcontext":[0,1,2],"urlcontextdict":[0,1,2],"urlcontextmetadata":[0,1,2],"urlcontextmetadatadict":[0,1,2],"urllib":1,"urlmetadata":[0,1,2],"urlmetadatadict":[0,1,2],"urlretrievalstatu":[0,1,2],"us":[0,2],"usag":0,"usage_metadata":[0,1,2],"usagemetadata":[0,1,2],"usagemetadatadict":[0,1,2],"use_effective_ord":[0,1,2],"use_stemm":[0,1,2],"useeffectiveord":0,"user":[0,1],"user_consent_manag":[0,1,2],"user_cont":0,"user_dataset_exampl":[0,1,2],"user_input_token_distribut":[0,1,2],"user_message_per_example_distribut":[0,1,2],"user_metadata":[0,1,2],"user_output_token_distribut":[0,1,2],"user_profil":1,"user_prompt_cont":1,"user_requested_aux_info":[0,1,2],"usercont":[0,1,2],"userdatasetexampl":0,"userinputtokendistribut":0,"usermessageperexampledistribut":0,"usermetadata":0,"usernam":1,"useroutputtokendistribut":0,"userrequestedauxinfo":0,"usestemm":0,"utc":0,"utf":0,"util":0,"uv":1,"v1":[0,1],"v1alpha":[0,1],"v3":0,"vad":0,"vad_sign":0,"vad_signal_typ":[0,1,2],"vad_signal_type_eo":[0,1,2],"vad_signal_type_so":[0,1,2],"vad_signal_type_unspecifi":[0,1,2],"vadsignaltyp":[0,1,2],"valid":[0,1,2],"validate_nam":[0,1,2],"validate_reward":[0,1,2],"validatereinforcementtuningreward":0,"validaterewardconfig":[0,1,2],"validaterewardconfigdict":[0,1,2],"validaterewardrespons":[0,1,2],"validaterewardresponsedict":[0,1,2],"validation_dataset":[0,1,2],"validation_dataset_uri":[0,1,2],"validationdataset":0,"validationdataseturi":0,"validationerror":0,"valu":[0,1,2],"value1":0,"value2":0,"value_string_match_express":[0,1,2],"valueerror":0,"valuestringmatchexpress":0,"vari":0,"variabl":[0,1],"varianc":[0,1,2],"variat":0,"varieti":0,"variou":0,"vector":0,"vector_distance_threshold":[0,1,2],"vector_similarity_threshold":[0,1,2],"vectordistancethreshold":0,"vectorsimilaritythreshold":0,"veo":0,"veo_data_mixture_ratio":[0,1,2],"veo_lora_tuning_spec":[0,1,2],"veo_tuning_spec":[0,1,2],"veodatamixtureratio":0,"veohyperparamet":[0,1,2],"veohyperparametersdict":[0,1,2],"veoloratuningspec":[0,1,2],"veoloratuningspecdict":[0,1,2],"veotuningspec":[0,1,2],"veotuningspecdict":[0,1,2],"verbose_answ":0,"veri":0,"verif":0,"verifi":0,"versa":0,"version":[0,1,2],"version_id":0,"vertex":[0,1],"vertex_ai":0,"vertex_ai_search":[0,1,2],"vertex_dataset":[0,1,2],"vertex_dataset_nam":[0,1,2],"vertex_dataset_resourc":[0,1,2],"vertex_multimodal_dataset_nam":[0,1,2],"vertex_rag_stor":[0,1,2],"vertexai":[0,1,2],"vertexaisearch":[0,1,2],"vertexaisearchdatastorespec":[0,1,2],"vertexaisearchdatastorespecdict":[0,1,2],"vertexaisearchdict":[0,1,2],"vertexdataset":0,"vertexdatasetnam":0,"vertexdatasetresourc":0,"vertexmultimodaldatasetdestin":[0,1,2],"vertexmultimodaldatasetdestinationdict":[0,1,2],"vertexmultimodaldatasetnam":0,"vertexragdataservic":0,"vertexragstor":[0,1,2],"vertexragstoredict":[0,1,2],"vertexragstoreragresourc":[0,1,2],"vertexragstoreragresourcedict":[0,1,2],"via":[0,1],"vice":0,"video":[0,2],"video_bitrate_bp":[0,1,2],"video_byt":[0,1,2],"video_duration_second":[0,1,2],"video_metadata":[0,1,2],"video_orient":[0,1,2],"video_orientation_unspecifi":[0,1,2],"videobitratebp":0,"videobyt":0,"videocompressionqu":[0,1,2],"videodict":[0,1,2],"videodurationsecond":0,"videogenerationmask":[0,1,2],"videogenerationmaskdict":[0,1,2],"videogenerationmaskmod":[0,1,2],"videogenerationreferenceimag":[0,1,2],"videogenerationreferenceimagedict":[0,1,2],"videogenerationreferencetyp":[0,1,2],"videometadata":[0,1,2],"videometadatadict":[0,1,2],"videoorient":[0,1,2],"videoresponseformat":[0,1,2],"videoresponseformatdict":[0,1,2],"view":0,"violat":0,"violenc":0,"virtual":0,"virtual_try_on_respons":0,"vocabulari":0,"vocal":[0,1,2],"voic":0,"voice_act":[0,1,2],"voice_activity_detection_sign":[0,1,2],"voice_activity_typ":[0,1,2],"voice_activity_type_unspecifi":0,"voice_config":[0,1,2],"voice_consent_signatur":[0,1,2],"voice_nam":[0,1,2],"voice_sample_audio":[0,1,2],"voiceact":[0,1,2],"voiceactivitydetectionsign":[0,1,2],"voiceactivitydetectionsignaldict":[0,1,2],"voiceactivitydict":[0,1,2],"voiceactivitytyp":[0,1,2],"voiceconfig":[0,1,2],"voiceconfigdict":[0,1,2],"voiceconsentsignatur":[0,1,2],"voiceconsentsignaturedict":[0,1,2],"voicenam":0,"voicesampleaudio":0,"vscode":0,"wa":0,"wai":[0,1],"wait":0,"waiting_for_input":[0,1,2],"waitingforinput":0,"want":[0,1],"warn":0,"watermark":0,"wav":0,"we":[0,1],"wear":0,"weather":1,"web":[0,1,2],"web_search":[0,1,2],"web_search_queri":[0,1,2],"webhook":[0,1,2],"webhook_config":[0,1,2],"webhook_id":0,"webhookconfig":[0,1,2],"webhookconfigdict":[0,1,2],"websearch":[0,1,2],"websearchdict":[0,1,2],"websearchqueri":0,"websit":0,"websocket":0,"webview":0,"weight":[0,1,2],"weight_a":0,"weight_b":0,"weighted_prompt":[0,1,2],"weighted_reward_config":[0,1,2],"weightedprompt":[0,1,2],"weightedpromptdict":[0,1,2],"weightedrewardconfig":0,"welcom":0,"well":[0,1],"were":0,"west":0,"wget":1,"wgs84":0,"what":[0,1],"when":[0,1],"when_idl":[0,1,2],"where":[0,1],"whether":[0,1],"which":0,"whichev":0,"while":[0,1],"white":[0,1],"white_space_config":[0,1,2],"whitespaceconfig":[0,1,2],"whitespaceconfigdict":[0,1,2],"who":0,"whole":0,"whose":0,"why":[0,1],"widget":0,"wikipedia":0,"wildcard":0,"will_continu":[0,1,2],"willcontinu":0,"win":0,"window":0,"winner":0,"wish":0,"with_raw_respons":[0,1,2],"with_streaming_respons":[0,1,2],"within":[0,1],"without":0,"woodwind":1,"word":[0,1,2],"word_timestamp":[0,1,2],"wordinfo":[0,1,2],"wordinfodict":[0,1,2],"wordtimestamp":0,"work":[0,1],"workload":0,"world":0,"would":0,"wrap":0,"wrap_sdk_cal":0,"wrapper":0,"write":1,"written":0,"wrong":0,"wrong_answer_reward":[0,1,2],"wronganswerreward":0,"x":1,"x2":[0,1],"x4":0,"xmqnxf":0,"y":1,"yaml":0,"ye":0,"year":[0,1,2],"yet":[0,1],"yield":0,"york":1,"you":[0,1],"your":[0,1],"your_image_mime_typ":1,"your_image_path":1,"z":0,"zero":0,"zh":[0,1,2],"zone":0,"zoom":0},"titles":["Submodules","Google Gen AI SDK","google"],"titleterms":{"ai":1,"aiohttp":1,"ani":1,"api":1,"argument":1,"async":1,"asynchron":1,"automat":1,"base":1,"batch":1,"bodi":1,"cach":1,"call":1,"chat":1,"client":[0,1],"close":1,"comput":1,"config":1,"content":1,"context":1,"count":1,"creat":1,"custom":1,"declar":1,"delet":1,"develop":1,"disabl":1,"edit":1,"emb":1,"enum":1,"error":1,"experiment":1,"extra":1,"faster":1,"file":1,"function":1,"gao":0,"gemini":1,"gen":1,"genai":0,"gener":1,"generate_cont":1,"get":1,"googl":[1,2],"handl":1,"how":1,"imag":1,"imagen":1,"import":1,"input":1,"instal":1,"instanc":1,"instruct":1,"invok":1,"job":1,"json":1,"list":1,"live":0,"local":1,"manag":1,"manual":1,"mcp":1,"messag":1,"mix":1,"mode":1,"model":[0,1],"modul":0,"non":1,"onli":1,"option":1,"other":1,"output":1,"pager":1,"part":1,"predict":1,"protocol":1,"provid":1,"proxi":1,"pydant":1,"python":1,"refer":1,"request":1,"resourc":0,"respons":1,"safeti":1,"schema":1,"sdk":1,"select":1,"send":1,"set":1,"stream":1,"string":1,"structur":1,"submodul":0,"support":1,"synchron":1,"system":1,"text":1,"token":[0,1],"tool":1,"tune":[0,1],"type":[0,1],"updat":1,"upload":1,"upscal":1,"url":1,"us":1,"veo":1,"video":1}}) \ No newline at end of file From e1f7c40f0a831f25ee71294fc8c195576d5fd126 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Thu, 6 Aug 2026 21:38:10 -0700 Subject: [PATCH 04/19] feat(api): make the deferred service tier publicly available on Vertex PiperOrigin-RevId: 960685753 --- google/genai/_gaos/types/interactions/servicetier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/google/genai/_gaos/types/interactions/servicetier.py b/google/genai/_gaos/types/interactions/servicetier.py index 97d60f87e..426635343 100644 --- a/google/genai/_gaos/types/interactions/servicetier.py +++ b/google/genai/_gaos/types/interactions/servicetier.py @@ -26,6 +26,7 @@ "flex", "standard", "priority", + "deferred", ], UnrecognizedStr, ] From 62d50d6f172da5d6efa30838ab92da95b1327b5e Mon Sep 17 00:00:00 2001 From: Yvonne Yu Date: Fri, 7 Aug 2026 10:41:56 -0700 Subject: [PATCH 05/19] feat: enable json schema in FunctionDeclaration parser PiperOrigin-RevId: 961007695 --- .../genai/_automatic_function_calling_util.py | 126 +++++++++++++++++- google/genai/_transformers.py | 2 +- google/genai/tests/live/test_live.py | 9 +- .../models/test_generate_content_tools.py | 67 +++++----- .../genai/tests/transformers/test_t_tool.py | 15 ++- .../genai/tests/transformers/test_t_tools.py | 15 ++- google/genai/types.py | 39 ++++-- 7 files changed, 208 insertions(+), 65 deletions(-) diff --git a/google/genai/_automatic_function_calling_util.py b/google/genai/_automatic_function_calling_util.py index ec7f9a702..d8de1a940 100644 --- a/google/genai/_automatic_function_calling_util.py +++ b/google/genai/_automatic_function_calling_util.py @@ -40,6 +40,8 @@ '_is_default_value_compatible', '_parse_schema_from_parameter', '_get_required_fields', + '_get_required_fields_from_json_schema', + 'parse_function_declaration_json_schema', ] _py_builtin_type_to_schema_type = { @@ -138,7 +140,7 @@ def _is_default_value_compatible( def _parse_schema_from_parameter( # type: ignore[return] - api_option: Literal['VERTEX_AI', 'GEMINI_API'], + api_option: Literal['ENTERPRISE', 'GEMINI_API', 'VERTEX_AI'], param: inspect.Parameter, func_name: str, ) -> types.Schema: @@ -323,3 +325,125 @@ def _get_required_fields(schema: types.Schema) -> Optional[list[str]]: for field_name, field_schema in schema.properties.items() if not field_schema.nullable and field_schema.default is None ] + + +def _get_required_fields_from_json_schema(json_schema: dict[str, Any]) -> Optional[list[str]]: + properties = json_schema.get('properties', {}) + if not properties: + return None + required_fields = [] + for field_name, field_schema in properties.items(): + if not field_schema: + continue + if 'nullable' in field_schema and not field_schema['nullable']: + required_fields.append(field_name) + if 'default' not in field_schema and field_name not in required_fields: + required_fields.append(field_name) + return required_fields + + +def parse_function_declaration_json_schema( + callable: Callable[..., Any], + behavior: Optional[types.Behavior] + ) -> types.FunctionDeclaration: + """Parse function declaration JSON schema from a callable.""" + annotation_under_future = typing.get_type_hints(callable) + parameters_properties_json_schema = {} + root_defs = {} + + for name, param in inspect.signature(callable).parameters.items(): + if param.kind in ( + inspect.Parameter.POSITIONAL_OR_KEYWORD, + inspect.Parameter.KEYWORD_ONLY, + inspect.Parameter.POSITIONAL_ONLY, + ): + try: + param = _handle_params_as_deferred_annotations( + param, annotation_under_future, name + ) + json_schema_dict = {} + if _extra_utils.is_annotation_pydantic_model(param.annotation): + json_schema_dict = param.annotation.model_json_schema() + else: + param_schema_adapter = pydantic.TypeAdapter( + param.annotation, + config=pydantic.ConfigDict(arbitrary_types_allowed=True), + ) + json_schema_dict = param_schema_adapter.json_schema() + json_schema_dict = _add_unevaluated_items_to_fixed_len_tuple_schema( + json_schema_dict + ) + + # Extract parameter-level $defs and promote to top-level root_defs + if '$defs' in json_schema_dict: + root_defs.update(json_schema_dict.pop('$defs')) + if 'definitions' in json_schema_dict: + root_defs.update(json_schema_dict.pop('definitions')) + # pydantic doesn't assign the `type` field when the schema has 'anyOf'. + # but Vertex requires it. + if not 'type' in json_schema_dict and 'anyOf' in json_schema_dict: + json_schema_dict['type'] = 'object' + if param.default is not inspect._empty: + json_schema_dict['default'] = param.default + parameters_properties_json_schema[name] = json_schema_dict + except Exception as e: + _raise_for_unsupported_param( + param, callable.__name__, e + ) + + declaration = types.FunctionDeclaration( + name=callable.__name__, + description=inspect.cleandoc(callable.__doc__) + if callable.__doc__ + else '', + behavior=behavior, + ) + if parameters_properties_json_schema: + declaration.parameters_json_schema = { + 'type': 'object', + 'properties': parameters_properties_json_schema, + } + if root_defs: + declaration.parameters_json_schema['$defs'] = root_defs + declaration.parameters_json_schema['required'] = ( + _get_required_fields_from_json_schema( + declaration.parameters_json_schema + ) + ) + return_annotation = inspect.signature(callable).return_annotation + if return_annotation is inspect.Parameter.empty: + return declaration + + return_value = inspect.Parameter( + 'return_value', + inspect.Parameter.POSITIONAL_OR_KEYWORD, + annotation=return_annotation, + ) + # This snippet catches the case when type hints are stored as strings + if isinstance(return_value.annotation, str): + return_value = return_value.replace( + annotation=annotation_under_future['return'] + ) + response_json_schema: dict[str, Any] = {} + try: + if _extra_utils.is_annotation_pydantic_model(return_value.annotation): + response_json_schema = return_value.annotation.model_json_schema() + else: + return_value_schema_adapter = pydantic.TypeAdapter( + return_value.annotation, + config=pydantic.ConfigDict(arbitrary_types_allowed=True), + ) + response_json_schema = return_value_schema_adapter.json_schema() + response_json_schema = _add_unevaluated_items_to_fixed_len_tuple_schema( + response_json_schema + ) + # pydantic doesn't assign the `type` field when the schema has 'anyOf'. + # but Vertex requires it. + if 'type' not in response_json_schema and 'anyOf' in response_json_schema: + response_json_schema['type'] = 'object' + except Exception as e: + _raise_for_unsupported_param( + return_value, callable.__name__, e + ) + declaration.response_json_schema = response_json_schema + return declaration diff --git a/google/genai/_transformers.py b/google/genai/_transformers.py index 49868bac1..673964713 100644 --- a/google/genai/_transformers.py +++ b/google/genai/_transformers.py @@ -958,7 +958,7 @@ def t_tool( return types.Tool( function_declarations=[ types.FunctionDeclaration.from_callable( - client=client, callable=origin + client=client, callable=origin, use_json_schema=True ) ] ) diff --git a/google/genai/tests/live/test_live.py b/google/genai/tests/live/test_live.py index 046b08a0a..2a69b61e3 100644 --- a/google/genai/tests/live/test_live.py +++ b/google/genai/tests/live/test_live.py @@ -1133,17 +1133,18 @@ async def test_bidi_setup_to_api_with_config_tools_function_directly( 'model': 'test_model', 'tools': [{ 'functionDeclarations': [{ - 'parameters': { - 'type': 'OBJECT', + 'parameters_json_schema': { + 'type': 'object', 'properties': { 'location': { - 'type': 'STRING', + 'type': 'string', 'description': ( 'The location to get the weather for' ), }, - 'unit': {'type': 'STRING', 'enum': ['C', 'F']}, + 'unit': {'type': 'string', 'enum': ['C', 'F']}, }, + 'required': ['location', 'unit'], }, 'name': 'get_current_weather', 'description': 'Get the current weather in a city.', diff --git a/google/genai/tests/models/test_generate_content_tools.py b/google/genai/tests/models/test_generate_content_tools.py index 40721bbbf..f9f0f30da 100644 --- a/google/genai/tests/models/test_generate_content_tools.py +++ b/google/genai/tests/models/test_generate_content_tools.py @@ -65,6 +65,23 @@ }, }, }] +function_declarations_json_schema = [{ + 'name': 'get_current_weather', + 'description': 'Get the current weather in a city', + 'parameters_json_schema': { + 'type': 'object', + 'properties': { + 'location': { + 'type': 'string', + 'description': 'The location to get the weather for', + }, + 'unit': { + 'type': 'string', + 'enum': ['C', 'F'], + }, + }, + }, +}] computer_use_override_function_declarations = [{ 'name': 'type_text_at', 'description': 'Types text at a certain coordinate.', @@ -949,7 +966,7 @@ def customized_divide_integers(numerator: int, denominator: int) -> int: ) def test_automatic_function_calling(client): response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='what is the result of 1000/2?', config={ 'tools': [divide_integers], @@ -1398,7 +1415,7 @@ def get_information( return f'The object of interest is {object_of_interest}' response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents=( 'I have a one year old cat named Sundae, can you get the' ' information of the cat for me?' @@ -1422,7 +1439,7 @@ def output_latlng( return f'The latitude is {latlng[0]} and the longitude is {latlng[1]}' response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents=( 'The coordinates are (51.509, -0.118). What is the latitude and longitude?' ), @@ -1461,7 +1478,7 @@ def get_cheese_age(cheese: int) -> int | float: return 0.0 response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='How old is the cheese with id 2?', config={ 'tools': [get_cheese_age], @@ -1491,7 +1508,7 @@ def describe_cities( ) response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='Can you describe the city of San Francisco, USA?', config={ 'tools': [describe_cities], @@ -1679,24 +1696,6 @@ def mystery_function(a: int, b: int) -> int: ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', -) -@pytest.mark.asyncio -async def test_automatic_function_calling_async_float_without_decimal(client): - response = await client.aio.models.generate_content( - model='gemini-2.5-flash', - contents='what is the result of 1000.0/2.0?', - config={ - 'tools': [divide_floats, divide_integers], - 'automatic_function_calling': {'ignore_call_history': True}, - }, - ) - - assert '500.0' in response.text - - @pytest.mark.skipif( 'config.getoption("--private")', reason='AFC by default is disabled in private models.py', @@ -1715,7 +1714,7 @@ def get_weather_pydantic_model( return f'The weather in {city_object.city_name} is sunny and 100 degrees.' response = await client.aio.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='it is winter now, what is the weather in Boston?', config={ 'tools': [get_weather_pydantic_model], @@ -1723,9 +1722,7 @@ def get_weather_pydantic_model( }, ) - # ML Dev couldn't understand pydantic model - if client.vertexai: - assert 'cold' in response.text and 'Boston' in response.text + assert 'cold' in response.text and 'Boston' in response.text @pytest.mark.skipif( @@ -1914,7 +1911,7 @@ def test_class_method_tools(client): function_holder = FunctionHolder() response = client.models.generate_content( - model='gemini-2.0-flash-exp', + model='gemini-3.1-pro-preview', contents=( 'Print the verbatim output of is_a_duck and is_a_rabbit for the' ' number 100.' @@ -1932,7 +1929,7 @@ def test_class_method_tools(client): ) def test_disable_afc_in_any_mode(client): response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='what is the result of 1000/2?', config=types.GenerateContentConfig( tools=[divide_integers], @@ -1952,7 +1949,7 @@ def test_disable_afc_in_any_mode(client): ) def test_afc_once_in_any_mode(client): response = client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='what is the result of 1000/2?', config=types.GenerateContentConfig( tools=[divide_integers], @@ -1992,7 +1989,7 @@ def test_code_execution_tool(client): def test_afc_logs_to_logger_instance(client, caplog): caplog.set_level(logging.DEBUG, logger='google_genai.models') client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='what is the result of 1000/2?', config={ 'tools': [divide_integers], @@ -2021,7 +2018,7 @@ def test_suppress_logs_with_sdk_logger(client, caplog): sdk_logger = logging.getLogger('google_genai.models') sdk_logger.setLevel(logging.ERROR) client.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.1-pro-preview', contents='what is the result of 1000/2?', config={ 'tools': [divide_integers], @@ -2075,7 +2072,7 @@ def test_function_declaration_with_callable(client): config={ 'tools': [ divide_integers, - {'function_declarations': function_declarations}, + {'function_declarations': function_declarations_json_schema}, ], }, ) @@ -2089,7 +2086,7 @@ def test_function_declaration_with_callable_stream_now(client): config={ 'tools': [ divide_integers, - {'function_declarations': function_declarations}, + {'function_declarations': function_declarations_json_schema}, ], }, ): @@ -2107,7 +2104,7 @@ async def test_function_declaration_with_callable_async(client): config={ 'tools': [ divide_integers, - {'function_declarations': function_declarations}, + {'function_declarations': function_declarations_json_schema}, ], }, ) diff --git a/google/genai/tests/transformers/test_t_tool.py b/google/genai/tests/transformers/test_t_tool.py index 32d86221b..da1915bb3 100644 --- a/google/genai/tests/transformers/test_t_tool.py +++ b/google/genai/tests/transformers/test_t_tool.py @@ -62,14 +62,15 @@ def test_func(arg1: str, arg2: int): function_declarations=[ types.FunctionDeclaration( name='test_func', - parameters=types.Schema( - type='OBJECT', - properties={ - 'arg1': types.Schema(type='STRING'), - 'arg2': types.Schema(type='INTEGER'), + description='', + parameters_json_schema={ + 'type': 'object', + 'properties': { + 'arg1': {'type': 'string'}, + 'arg2': {'type': 'integer'}, }, - required=['arg1', 'arg2'], - ), + 'required': ['arg1', 'arg2'], + }, ) ] ) diff --git a/google/genai/tests/transformers/test_t_tools.py b/google/genai/tests/transformers/test_t_tools.py index 05d8ce263..9cf4213bf 100644 --- a/google/genai/tests/transformers/test_t_tools.py +++ b/google/genai/tests/transformers/test_t_tools.py @@ -65,14 +65,15 @@ def test_func(arg1: str, arg2: int): function_declarations=[ types.FunctionDeclaration( name='test_func', - parameters=types.Schema( - type='OBJECT', - properties={ - 'arg1': types.Schema(type='STRING'), - 'arg2': types.Schema(type='INTEGER'), + description='', + parameters_json_schema={ + 'type': 'object', + 'properties': { + 'arg1': {'type': 'string'}, + 'arg2': {'type': 'integer'}, }, - required=['arg1', 'arg2'], - ), + 'required': ['arg1', 'arg2'], + } ) ] ) diff --git a/google/genai/types.py b/google/genai/types.py index fdcd187dd..49fb72faf 100644 --- a/google/genai/types.py +++ b/google/genai/types.py @@ -3056,7 +3056,9 @@ def from_json_schema( cls, *, json_schema: 'JSONSchema', - api_option: Literal['VERTEX_AI', 'GEMINI_API'] = 'GEMINI_API', + api_option: Literal['ENTERPRISE', 'GEMINI_API', 'VERTEX_AI'] = ( + 'GEMINI_API' + ), raise_error_on_unsupported_field: bool = False, ) -> 'Schema': """Converts a JSONSchema object to a Schema object. @@ -3217,7 +3219,7 @@ def normalize_json_schema_type( def raise_error_if_cannot_convert( json_schema_dict: dict[str, Any], - api_option: Literal['VERTEX_AI', 'GEMINI_API'], + api_option: Literal['ENTERPRISE', 'GEMINI_API', 'VERTEX_AI'], raise_error_on_unsupported_field: bool, ) -> None: """Raises an error if the JSONSchema cannot be converted to the specified Schema object.""" @@ -3262,7 +3264,7 @@ def copy_schema_fields( def convert_json_schema( current_json_schema: 'JSONSchema', root_json_schema_dict: dict[str, Any], - api_option: Literal['VERTEX_AI', 'GEMINI_API'], + api_option: Literal['ENTERPRISE', 'GEMINI_API', 'VERTEX_AI'], raise_error_on_unsupported_field: bool, visited_refs: Optional[set[str]] = None, ) -> 'Schema': @@ -4770,16 +4772,20 @@ def from_callable_with_api_option( cls, *, callable: Callable[..., Any], - api_option: Literal['VERTEX_AI', 'GEMINI_API'] = 'GEMINI_API', + api_option: Literal[ + 'ENTERPRISE', 'GEMINI_API', 'VERTEX_AI' + ] = 'GEMINI_API', behavior: Optional[Behavior] = None, + use_json_schema: bool = False, ) -> 'FunctionDeclaration': """Converts a Callable to a FunctionDeclaration based on the API option. - Supported API option is 'VERTEX_AI' or 'GEMINI_API'. If api_option is unset, - it will default to 'GEMINI_API'. If unsupported api_option is provided, it - will raise ValueError. + Supported API option is 'ENTERPRISE', 'GEMINI_API' or 'VERTEX_AI'. If + api_option is unset, it will default to 'GEMINI_API'. If unsupported + api_option is provided, it will raise ValueError. + Note: 'VERTEX_AI' is to be deprecated, please use 'ENTERPRISE' instead. """ - supported_api_options = ['VERTEX_AI', 'GEMINI_API'] + supported_api_options = ['ENTERPRISE', 'GEMINI_API', 'VERTEX_AI'] if api_option not in supported_api_options: raise ValueError( f'Unsupported api_option value: {api_option}. Supported api_option' @@ -4787,6 +4793,12 @@ def from_callable_with_api_option( ) from . import _automatic_function_calling_util + if use_json_schema: + return _automatic_function_calling_util.parse_function_declaration_json_schema( + callable=callable, + behavior=behavior, + ) + parameters_properties = {} parameters_json_schema = {} annotation_under_future = typing.get_type_hints(callable) @@ -4937,6 +4949,7 @@ def from_callable( client: 'BaseApiClient', callable: Callable[..., Any], behavior: Optional[Behavior] = None, + use_json_schema: bool = False, ) -> 'FunctionDeclaration': """Converts a Callable to a FunctionDeclaration based on the client. @@ -4950,11 +4963,17 @@ def from_callable( """ if client.vertexai: return cls.from_callable_with_api_option( - callable=callable, api_option='VERTEX_AI', behavior=behavior + callable=callable, + api_option='ENTERPRISE', + behavior=behavior, + use_json_schema=use_json_schema, ) else: return cls.from_callable_with_api_option( - callable=callable, api_option='GEMINI_API', behavior=behavior + callable=callable, + api_option='GEMINI_API', + behavior=behavior, + use_json_schema=use_json_schema, ) From 66e224c39c9527e0fef3a4f049ac33ec941e2f99 Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Fri, 7 Aug 2026 13:04:48 -0700 Subject: [PATCH 06/19] feat: Add interaction_status to LiveServerContent PiperOrigin-RevId: 961081368 --- google/genai/types.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/google/genai/types.py b/google/genai/types.py index 49fb72faf..d67a59c54 100644 --- a/google/genai/types.py +++ b/google/genai/types.py @@ -1311,6 +1311,17 @@ class TurnCompleteReason(_common.CaseInSensitiveEnum): """Max regeneration attempts reached.""" +class InteractionStatus(_common.CaseInSensitiveEnum): + """The different activity states of the live session.""" + + INTERACTION_STATUS_UNSPECIFIED = 'INTERACTION_STATUS_UNSPECIFIED' + """Unspecified interaction status.""" + IN_PROGRESS = 'IN_PROGRESS' + """The server is still actively processing user input or running background reasoning. More model output may follow.""" + REQUIRES_ACTION = 'REQUIRES_ACTION' + """The server has completed all processing and background reasoning.""" + + class VadSignalType(_common.CaseInSensitiveEnum): """The type of the VAD signal.""" @@ -20274,6 +20285,10 @@ class LiveServerContent(_common.BaseModel): default=None, description="""Low latency transcription updated while the user is speaking.""", ) + interaction_status: Optional[InteractionStatus] = Field( + default=None, + description="""The current activity status of the live session. Always sent alongside `turn_complete`.""", + ) class LiveServerContentDict(TypedDict, total=False): @@ -20330,6 +20345,9 @@ class LiveServerContentDict(TypedDict, total=False): interim_input_transcription: Optional[TranscriptionDict] """Low latency transcription updated while the user is speaking.""" + interaction_status: Optional[InteractionStatus] + """The current activity status of the live session. Always sent alongside `turn_complete`.""" + LiveServerContentOrDict = Union[LiveServerContent, LiveServerContentDict] From 6a4c0b0a1748bf42ecd78bae9d401592be32eaca Mon Sep 17 00:00:00 2001 From: Ayush Agrawal Date: Mon, 10 Aug 2026 09:50:03 -0700 Subject: [PATCH 07/19] chore: internal PiperOrigin-RevId: 962209435 --- google/genai/_local_tokenizer_loader.py | 1 - .../genai/tests/local_tokenizer/test_local_tokenizer_loader.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/google/genai/_local_tokenizer_loader.py b/google/genai/_local_tokenizer_loader.py index e80926601..27f4781b8 100644 --- a/google/genai/_local_tokenizer_loader.py +++ b/google/genai/_local_tokenizer_loader.py @@ -53,7 +53,6 @@ "gemini-3.5-flash": "gemma4", "gemini-3.1-flash-lite": "gemma4", "gemini-3.1-pro-preview": "gemma4", - "gemini-4-flash-preview": "gemma4", } GEMMA_TOKENIZER_TO_MODEL_NAMES = { diff --git a/google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py b/google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py index 99ed29cce..492963e6c 100644 --- a/google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py +++ b/google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py @@ -66,9 +66,6 @@ def test_get_tokenizer_name_huggingface(self): self.assertEqual( loader.get_tokenizer_name("gemini-3.1-pro-preview"), "gemma4" ) - self.assertEqual( - loader.get_tokenizer_name("gemini-4-flash-preview"), "gemma4" - ) def test_get_tokenizer_name_unsupported(self): with self.assertRaisesRegex( From ccbc6c58bf872885cfc0a453325060340e415f34 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 11:53:42 -0700 Subject: [PATCH 08/19] chore(main): release 2.17.0 Copybara import of the project: -- a13f9bde4e0e4fbfbc38bf3f79acaafd94c9aae2 by release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>: COPYBARA_INTEGRATE_REVIEW=https://github.com/googleapis/python-genai/pull/2794 from googleapis:release-please--branches--main a13f9bde4e0e4fbfbc38bf3f79acaafd94c9aae2 PiperOrigin-RevId: 962282718 --- CHANGELOG.md | 21 +++++++++++++++++++++ google/genai/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c52a0d3a8..bb0d8ea2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [2.17.0](https://github.com/googleapis/python-genai/compare/v2.16.0...v2.17.0) (2026-08-06) + + +### Features + +* Add the Gemini Robotics ER 2 Preview model ([61d4645](https://github.com/googleapis/python-genai/commit/61d4645c6f7acab5fdc1dd6a4f6943fe8c937347)) +* Add TOO_MANY_TOOL_CALLS to FinishReason enum. ([a8ec86e](https://github.com/googleapis/python-genai/commit/a8ec86eab28c2806205fc8ec746b492110113c44)) +* Add top-level errors array to Interaction resource (iAPI) ([c74505b](https://github.com/googleapis/python-genai/commit/c74505b03f53e5bf54b0aed5741267f00703d218)) + + +### Bug Fixes + +* Add propertyOrdering auto-population for ResponseSchema and ResponseJsonSchema for Dotnet SDK ([3ec2081](https://github.com/googleapis/python-genai/commit/3ec20812f4e6228bfa8dc766167ede2e1f925526)) + + +### Documentation + +* Fix interactions ([80d80ff](https://github.com/googleapis/python-genai/commit/80d80ffb98e95b0c62590e5593df47c74ee6e0b7)) +* Regenerate docs for 2.16.0 ([f03ecfd](https://github.com/googleapis/python-genai/commit/f03ecfd7734e08b60d7ea5f2123152ff1b6bdfbf)) +* Update GenerateVideos docstrings and samples ([c41ba11](https://github.com/googleapis/python-genai/commit/c41ba1163f4bc7cb90d913674d1ba481d18d1248)) + ## [2.16.0](https://github.com/googleapis/python-genai/compare/v2.15.0...v2.16.0) (2026-07-29) diff --git a/google/genai/version.py b/google/genai/version.py index 18772144c..602b199e4 100644 --- a/google/genai/version.py +++ b/google/genai/version.py @@ -13,4 +13,4 @@ # limitations under the License. # -__version__ = '2.16.0' # x-release-please-version +__version__ = '2.17.0' # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index b07c2d44a..b58055fa4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel", "twine>=6.1.0", "packaging>=24.2", "pkginfo>= [project] name = "google-genai" -version = "2.16.0" +version = "2.17.0" description = "GenAI Python SDK" readme = "README.md" license = "Apache-2.0" From 66bfe956f7a8b6c8d7c7eb949a9b6a499a4e2860 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Tue, 11 Aug 2026 09:39:38 -0700 Subject: [PATCH 09/19] perf: build model validators on first use instead of at import Close #2784 PiperOrigin-RevId: 962831329 --- google/genai/_common.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/google/genai/_common.py b/google/genai/_common.py index f4a6984f7..3bcfe2ebc 100644 --- a/google/genai/_common.py +++ b/google/genai/_common.py @@ -559,6 +559,11 @@ class BaseModel(pydantic.BaseModel): ser_json_bytes='base64', val_json_bytes='base64', ignored_types=(typing.TypeVar,), + # Build each model's validator and serializer on first use rather than + # at import. `types` defines several hundred models and any one caller + # touches a small fraction of them, so building them all up front is + # most of what importing this package costs. + defer_build=True, ) @pydantic.model_validator(mode='before') From 012804d9b649a20da46a6041e37d126b9a0b79e0 Mon Sep 17 00:00:00 2001 From: Amy Wu Date: Tue, 11 Aug 2026 21:08:07 -0700 Subject: [PATCH 10/19] feat: Support injecting httpx2 client. Closes #2680 PiperOrigin-RevId: 963182265 --- google/genai/_api_client.py | 52 ++++-- google/genai/_extra_utils.py | 6 +- google/genai/_mcp_utils.py | 34 ++-- google/genai/errors.py | 19 ++- .../genai/tests/client/test_httpx2_client.py | 149 ++++++++++++++++++ .../tests/mcp/test_mcp_to_gemini_tools.py | 9 +- google/genai/types.py | 20 ++- requirements.txt | 7 +- 8 files changed, 265 insertions(+), 31 deletions(-) create mode 100644 google/genai/tests/client/test_httpx2_client.py diff --git a/google/genai/_api_client.py b/google/genai/_api_client.py index e71e63216..f4d24fe4c 100644 --- a/google/genai/_api_client.py +++ b/google/genai/_api_client.py @@ -80,6 +80,12 @@ pass +try: + import httpx2 +except ImportError: + httpx2 = None # type: ignore[assignment] + + if TYPE_CHECKING: from multidict import CIMultiDictProxy @@ -93,6 +99,27 @@ _MULTI_REGIONAL_LOCATIONS = {'us', 'eu'} +# httpx2 (https://github.com/pydantic/httpx2) is a drop-in fork of httpx under a +# separate import namespace, so its classes are not instances of the httpx +# equivalents. Widen the runtime type checks to accept either when httpx2 is +# installed. +_HTTPX_RESPONSE_TYPES = ( + (httpx.Response,) if httpx2 is None else (httpx.Response, httpx2.Response) +) +_HTTPX_HEADERS_TYPES = ( + (httpx.Headers,) if httpx2 is None else (httpx.Headers, httpx2.Headers) +) +_HTTPX_TRANSIENT_EXC = ( + (httpx.TimeoutException, httpx.ConnectError) + if httpx2 is None + else ( + httpx.TimeoutException, + httpx.ConnectError, + httpx2.TimeoutException, + httpx2.ConnectError, + ) +) + class EphemeralTokenAPIKeyError(ValueError): """Error raised when the API key is invalid.""" @@ -256,9 +283,9 @@ def __init__( ): if isinstance(headers, dict): self.headers = headers - elif isinstance(headers, httpx.Headers): + elif isinstance(headers, _HTTPX_HEADERS_TYPES): self.headers = { - key: ', '.join(headers.get_list(key)) for key in headers.keys() + key: ', '.join(headers.get_list(key)) for key in headers.keys() # type: ignore[attr-defined] } elif isinstance(headers, CaseInsensitiveDict): self.headers = {key: value for key, value in headers.items()} @@ -339,7 +366,7 @@ def _copy_to_dict(self, response_payload: dict[str, object]) -> None: def _iter_response_stream(self) -> Iterator[str]: """Iterates over chunks retrieved from the API.""" if not ( - isinstance(self.response_stream, httpx.Response) + isinstance(self.response_stream, _HTTPX_RESPONSE_TYPES) or isinstance(self.response_stream, requests.Response) ): raise TypeError( @@ -350,7 +377,7 @@ def _iter_response_stream(self) -> Iterator[str]: chunk = '' balance = 0 data_buffer: list[str] = [] - if isinstance(self.response_stream, httpx.Response): + if isinstance(self.response_stream, _HTTPX_RESPONSE_TYPES): response_stream = self.response_stream.iter_lines() else: response_stream = self.response_stream.iter_lines(decode_unicode=True) @@ -389,7 +416,9 @@ def _iter_response_stream(self) -> Iterator[str]: async def _aiter_response_stream(self) -> AsyncIterator[str]: """Asynchronously iterates over chunks retrieved from the API.""" - is_valid_response = isinstance(self.response_stream, httpx.Response) or ( + is_valid_response = isinstance( + self.response_stream, _HTTPX_RESPONSE_TYPES + ) or ( has_aiohttp and isinstance(self.response_stream, aiohttp.ClientResponse) ) if not is_valid_response: @@ -403,9 +432,10 @@ async def _aiter_response_stream(self) -> AsyncIterator[str]: balance = 0 data_buffer: list[str] = [] # httpx.Response has a dedicated async line iterator. - if isinstance(self.response_stream, httpx.Response): + if isinstance(self.response_stream, _HTTPX_RESPONSE_TYPES): try: - async for line in self.response_stream.aiter_lines(): + response_stream: Any = self.response_stream + async for line in response_stream.aiter_lines(): if not line: if data_buffer: yield '\n'.join(data_buffer) @@ -437,7 +467,7 @@ async def _aiter_response_stream(self) -> AsyncIterator[str]: yield '\n'.join(data_buffer) finally: # Close the response and release the connection. - await self.response_stream.aclose() + await response_stream.aclose() # aiohttp.ClientResponse uses a content stream that we read line by line. elif has_aiohttp and isinstance( @@ -540,7 +570,7 @@ def retry_args(options: Optional[HttpRetryOptions]) -> _common.StringDict: retriable_codes = options.http_status_codes or _RETRY_HTTP_STATUS_CODES retry = tenacity.retry_if_exception( lambda e: (isinstance(e, errors.APIError) and e.code in retriable_codes) - or isinstance(e, (httpx.TimeoutException, httpx.ConnectError)), + or isinstance(e, _HTTPX_TRANSIENT_EXC), ) wait = tenacity.wait_exponential_jitter( initial=options.initial_delay or _RETRY_INITIAL_DELAY, @@ -1468,7 +1498,7 @@ def _request_once( headers=http_request.headers, timeout=http_request.timeout, ) - response = self._httpx_client.send(httpx_request, stream=stream) # type: ignore[union-attr] + response = self._httpx_client.send(httpx_request, stream=stream) # type: ignore[union-attr, arg-type] errors.APIError.raise_for_response(response) return HttpResponse( response.headers, response if stream else [response.text] @@ -1582,7 +1612,7 @@ async def _async_request_once( timeout=http_request.timeout, ) client_response = await self._async_httpx_client.send( # type: ignore[union-attr] - httpx_request, + httpx_request, # type: ignore[arg-type] stream=stream, ) await errors.APIError.raise_for_async_response(client_response) diff --git a/google/genai/_extra_utils.py b/google/genai/_extra_utils.py index 8e1445fdd..bb2c901d3 100644 --- a/google/genai/_extra_utils.py +++ b/google/genai/_extra_utils.py @@ -389,7 +389,11 @@ async def get_function_response_parts_async( mcp_tool_response = await func.call_tool( types.FunctionCall(name=func_name, args=args) ) - if mcp_tool_response.isError: + if getattr( + mcp_tool_response, + 'is_error', + getattr(mcp_tool_response, 'isError', False), + ): func_response = {'error': mcp_tool_response} else: func_response = {'result': mcp_tool_response} diff --git a/google/genai/_mcp_utils.py b/google/genai/_mcp_utils.py index 74b24b363..106f385c4 100644 --- a/google/genai/_mcp_utils.py +++ b/google/genai/_mcp_utils.py @@ -16,6 +16,11 @@ """Utils for working with MCP tools.""" import contextlib import httpx + +try: + import httpx2 +except ImportError: + httpx2 = None # type: ignore[assignment] import sys from importlib.metadata import PackageNotFoundError, version @@ -51,7 +56,11 @@ def mcp_to_gemini_tool(tool: McpTool) -> types.Tool: "description": tool.description, "parameters": types.Schema.from_json_schema( json_schema=types.JSONSchema( - **_filter_to_supported_schema(tool.inputSchema) + **_filter_to_supported_schema( + getattr( + tool, "input_schema", getattr(tool, "inputSchema", {}) + ) + ) ) ), }] @@ -61,13 +70,13 @@ def mcp_to_gemini_tool(tool: McpTool) -> types.Tool: def agent_platform_to_gemini_tool(tool: McpTool) -> types.Tool: """Translates an Agent Platform tool to a Google GenAI tool.""" return types.Tool( - function_declarations=[ - { - "name": tool.name, - "description": tool.description, - "parameters_json_schema": tool.inputSchema, - } - ] + function_declarations=[{ + "name": tool.name, + "description": tool.description, + "parameters_json_schema": getattr( + tool, "input_schema", getattr(tool, "inputSchema", {}) + ), + }] ) @@ -201,14 +210,19 @@ async def _connect_agent_platform_mcp(api_client: Any, toolset_name: str) -> typ set_mcp_usage_header(headers) - http_client = httpx.AsyncClient(headers=headers, timeout=None) + http_client: Any + if httpx2 is not None: + http_client = httpx2.AsyncClient(headers=headers, timeout=None) + else: + http_client = httpx.AsyncClient(headers=headers, timeout=None) try: async with http_client: async with streamable_http_client( url=mcp_url, http_client=http_client ) as streams: - read_stream, write_stream, _ = streams + read_stream = streams[0] + write_stream = streams[1] async with McpClientSession(read_stream, write_stream) as session: await session.initialize() try: diff --git a/google/genai/errors.py b/google/genai/errors.py index 48bf1b131..1b2f79959 100644 --- a/google/genai/errors.py +++ b/google/genai/errors.py @@ -19,6 +19,12 @@ import httpx import json import requests + +try: + import httpx2 +except ImportError: + httpx2 = None # type: ignore[assignment] + from . import _common @@ -28,6 +34,15 @@ from google.auth.aio.transport.aiohttp import Response as AsyncAuthorizedSessionResponse +# httpx2 (https://github.com/pydantic/httpx2) is a drop-in fork of httpx under a +# separate import namespace, so its Response is not an instance of +# httpx.Response. Widen the runtime type checks to accept either when httpx2 is +# installed. +_HTTPX_RESPONSE_TYPES = ( + (httpx.Response,) if httpx2 is None else (httpx.Response, httpx2.Response) +) + + class APIError(Exception): """General errors raised by the GenAI API.""" code: int @@ -129,7 +144,7 @@ def raise_for_response( if response.status_code == 200: return - if isinstance(response, httpx.Response): + if isinstance(response, _HTTPX_RESPONSE_TYPES): try: response.read() response_json = response.json() @@ -198,7 +213,7 @@ async def raise_for_async_response( ], ) -> None: """Raises an error with detailed error message if the response has an error status.""" - if isinstance(response, httpx.Response): + if isinstance(response, _HTTPX_RESPONSE_TYPES): if response.status_code == 200: return try: diff --git a/google/genai/tests/client/test_httpx2_client.py b/google/genai/tests/client/test_httpx2_client.py new file mode 100644 index 000000000..5471169de --- /dev/null +++ b/google/genai/tests/client/test_httpx2_client.py @@ -0,0 +1,149 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +"""Tests for injecting a Pydantic `httpx2` client into the SDK. + +`httpx2` (https://github.com/pydantic/httpx2) is a drop-in fork of `httpx` under +a separate import namespace, so `httpx2` classes fail `isinstance(x, httpx.*)`. +These tests pin the two "walls" that must be widened for the SDK to accept an +injected `httpx2` client (see issue #2680): + +- WALL 1: `HttpOptions.httpx_async_client` / `httpx_client` must accept an + `httpx2` client at construction (aliases in the generated `types.py`). +- WALL 2: the hand-written `isinstance` checks in `errors.py` / `_api_client.py` + must recognize an `httpx2.Response`. +""" + +import pytest + +try: + import httpx2 +except ImportError: + httpx2 = None + +# Mark all tests in this module to be skipped if httpx2 is not available +pytestmark = pytest.mark.skipif( + httpx2 is None, reason='httpx2 is not available' +) + +from ... import _api_client as api_client +from ... import Client +from ... import errors +from ...types import HttpOptions + + +# WALL 1 — the client must be accepted at construction. +def test_http_options_accepts_httpx2_clients(): + # Previously raised ValidationError because the aliases were typed to the + # httpx clients only, so Pydantic emitted an is_instance_of(httpx.*) check. + http_options = HttpOptions( + httpx_client=httpx2.Client(trust_env=False), + httpx_async_client=httpx2.AsyncClient(trust_env=False), + ) + assert isinstance(http_options.httpx_client, httpx2.Client) + assert isinstance(http_options.httpx_async_client, httpx2.AsyncClient) + + +def test_constructor_with_httpx2_clients(): + mldev_client = Client( + api_key='google_api_key', + http_options={ + 'httpx_client': httpx2.Client(trust_env=False), + 'httpx_async_client': httpx2.AsyncClient(trust_env=False), + }, + ) + assert not mldev_client.models._api_client._httpx_client.trust_env + assert not mldev_client.models._api_client._async_httpx_client.trust_env + + vertexai_client = Client( + vertexai=True, + project='fake_project_id', + location='fake-location', + http_options={ + 'httpx_client': httpx2.Client(trust_env=False), + 'httpx_async_client': httpx2.AsyncClient(trust_env=False), + }, + ) + assert not vertexai_client.models._api_client._httpx_client.trust_env + assert not vertexai_client.models._api_client._async_httpx_client.trust_env + + +# WALL 2 — the response must be processed by the error/raise functions. +def test_raise_for_response_httpx2_success(): + assert ( + errors.APIError.raise_for_response(httpx2.Response(status_code=200)) + is None + ) + + +def test_raise_for_response_httpx2_client_error(): + class FakeResponse(httpx2.Response): + + def read(self) -> bytes: + self._content = ( + b'{"error": {"code": 400, "message": "error message", "status":' + b' "INVALID_ARGUMENT"}}' + ) + return self._content + + with pytest.raises(errors.ClientError) as exc_info: + errors.APIError.raise_for_response(FakeResponse(status_code=400)) + assert exc_info.value.code == 400 + assert exc_info.value.message == 'error message' + assert exc_info.value.status == 'INVALID_ARGUMENT' + + +@pytest.mark.asyncio +async def test_raise_for_async_response_httpx2_success(): + # The async success path early-returns from inside the isinstance branch, so + # without widening it every httpx2 response (success and error) is rejected. + assert ( + await errors.APIError.raise_for_async_response( + httpx2.Response(status_code=200) + ) + is None + ) + + +@pytest.mark.asyncio +async def test_raise_for_async_response_httpx2_client_error(): + class FakeResponse(httpx2.Response): + + async def aread(self) -> bytes: + self._content = ( + b'{"error": {"code": 400, "message": "error message", "status":' + b' "INVALID_ARGUMENT"}}' + ) + return self._content + + with pytest.raises(errors.ClientError) as exc_info: + await errors.APIError.raise_for_async_response(FakeResponse(status_code=400)) + assert exc_info.value.code == 400 + assert exc_info.value.message == 'error message' + assert exc_info.value.status == 'INVALID_ARGUMENT' + + +# WALL 2 — an httpx2.Response must flow through the async streaming iterator. +@pytest.mark.asyncio +async def test_httpx2_response_flows_through_async_stream(): + response = httpx2.Response( + status_code=200, + content=b'data: {"first": 1}\n\ndata: {"second": 2}\n\n', + ) + http_response = api_client.HttpResponse(headers={}, response_stream=response) + + chunks = [chunk async for chunk in http_response._aiter_response_stream()] + + assert chunks == ['{"first": 1}', '{"second": 2}'] diff --git a/google/genai/tests/mcp/test_mcp_to_gemini_tools.py b/google/genai/tests/mcp/test_mcp_to_gemini_tools.py index 61d64102c..a8e476c35 100644 --- a/google/genai/tests/mcp/test_mcp_to_gemini_tools.py +++ b/google/genai/tests/mcp/test_mcp_to_gemini_tools.py @@ -22,6 +22,10 @@ from ... import types from ..._api_client import BaseApiClient +try: + import httpx2 +except ImportError: + httpx2 = None try: from mcp import types as mcp_types @@ -310,8 +314,11 @@ def test_agent_platform_preserves_unknown_fields(): assert schema['some_new_future_field'] == 'value' +@pytest.mark.skipif( + httpx2 is None, reason='httpx2 is not available' +) @pytest.mark.asyncio -@mock.patch('httpx.AsyncClient') +@mock.patch('httpx2.AsyncClient') @mock.patch.object(_mcp_utils, 'streamable_http_client') @mock.patch.object(_mcp_utils, 'McpClientSession') @mock.patch('google.auth.default') diff --git a/google/genai/types.py b/google/genai/types.py index d67a59c54..5b2a1280a 100644 --- a/google/genai/types.py +++ b/google/genai/types.py @@ -109,9 +109,10 @@ def __getattr__(name: str) -> Any: _is_httpx_imported = False if typing.TYPE_CHECKING: import httpx + import httpx2 - HttpxClient = httpx.Client - HttpxAsyncClient = httpx.AsyncClient + HttpxClient = Union[httpx.Client, httpx2.Client] + HttpxAsyncClient = Union[httpx.AsyncClient, httpx2.AsyncClient] _is_httpx_imported = True else: HttpxClient: typing.Type = Any @@ -127,6 +128,19 @@ def __getattr__(name: str) -> Any: HttpxClient = None HttpxAsyncClient = None + try: + import httpx2 + + if _is_httpx_imported: + HttpxClient = Union[httpx.Client, httpx2.Client] + HttpxAsyncClient = Union[httpx.AsyncClient, httpx2.AsyncClient] + else: + HttpxClient = httpx2.Client + HttpxAsyncClient = httpx2.AsyncClient + _is_httpx_imported = True + except ImportError: + pass + _is_aiohttp_imported = False if typing.TYPE_CHECKING: from aiohttp import ClientSession @@ -1997,7 +2011,7 @@ def from_mcp_response( ' imported.' ) - if response.isError: + if getattr(response, 'is_error', getattr(response, 'isError', False)): return cls(name=name, response={'error': 'MCP response is error.'}) else: return cls(name=name, response={'result': response.content}) diff --git a/requirements.txt b/requirements.txt index b6c18ad3f..4583be06a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,14 +1,15 @@ absl-py==2.1.0 annotated-types==0.7.0 -anyio==4.8.0 +anyio==4.14.2 cachetools==5.5.0 certifi==2024.8.30 charset-normalizer==3.4.0 coverage==7.6.9 distro==1.9.0 httpx==0.28.1 +httpx2==2.7.0; python_version >= '3.10' google-auth==2.56.0 -idna==3.10 +idna==3.18 iniconfig==2.0.0 packaging==24.2 pillow==11.0.0 @@ -29,6 +30,6 @@ tenacity==8.2.3 typing_extensions>=4.14.1 urllib3==2.5.0 websockets==16.0 -mcp>=1.14.0; python_version > '3.9' +mcp>=1.14.0,<2.0.0; python_version > '3.9' sentencepiece>=0.2.0 protobuf From 288d2ef561f396569059340228c4176fe7d83169 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Wed, 12 Aug 2026 04:48:59 -0700 Subject: [PATCH 11/19] No public description PiperOrigin-RevId: 963368024 --- .../_gaos/resources/interactions/__init__.py | 2 + .../interactions/videocontent/__init__.py | 21 +++++ .../_gaos/types/interactions/__init__.py | 25 +++++- .../genai/_gaos/types/interactions/content.py | 2 +- .../types/interactions/mediaprocessing.py | 26 ++++++ .../interactions/staticmediaprocessing.py | 84 +++++++++++++++++++ .../_gaos/types/interactions/videocontent.py | 29 ++++++- 7 files changed, 185 insertions(+), 4 deletions(-) create mode 100644 google/genai/_gaos/resources/interactions/videocontent/__init__.py create mode 100644 google/genai/_gaos/types/interactions/mediaprocessing.py create mode 100644 google/genai/_gaos/types/interactions/staticmediaprocessing.py diff --git a/google/genai/_gaos/resources/interactions/__init__.py b/google/genai/_gaos/resources/interactions/__init__.py index f2468290f..5bdf1ef5e 100644 --- a/google/genai/_gaos/resources/interactions/__init__.py +++ b/google/genai/_gaos/resources/interactions/__init__.py @@ -125,6 +125,7 @@ from . import urlcontextcallstep from . import urlcontextresultstep from . import usage +from . import videocontent CreateAgentInteractionParamsStreaming = CreateAgentInteractionParamsNonStreaming CreateModelInteractionParamsStreaming = CreateModelInteractionParamsNonStreaming @@ -228,4 +229,5 @@ "urlcontextcallstep", "urlcontextresultstep", "usage", + "videocontent", ] diff --git a/google/genai/_gaos/resources/interactions/videocontent/__init__.py b/google/genai/_gaos/resources/interactions/videocontent/__init__.py new file mode 100644 index 000000000..c3b4b2e06 --- /dev/null +++ b/google/genai/_gaos/resources/interactions/videocontent/__init__.py @@ -0,0 +1,21 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# pyformat: disable + +"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" + +from ....types.interactions.staticmediaprocessing import StaticMediaProcessing as Static + +__all__ = ["Static"] diff --git a/google/genai/_gaos/types/interactions/__init__.py b/google/genai/_gaos/types/interactions/__init__.py index aeb438ea8..3ba034039 100644 --- a/google/genai/_gaos/types/interactions/__init__.py +++ b/google/genai/_gaos/types/interactions/__init__.py @@ -290,6 +290,7 @@ MCPServerToolResultStepResultUnion, MCPServerToolResultStepResultUnionParam, ) + from .mediaprocessing import MediaProcessing, MediaProcessingParam from .mediaresolution import MediaResolution from .modalitytokens import ModalityTokens, ModalityTokensTypedDict from .model import Model @@ -325,6 +326,7 @@ from .sessionconfig import SessionConfig, SessionConfigParam from .source import Source, SourceParam, SourceType from .speechconfig import SpeechConfig, SpeechConfigParam + from .staticmediaprocessing import StaticMediaProcessing, StaticMediaProcessingParam from .status import Status, StatusParam from .step import Step, StepParam, UnknownStep from .stepdelta import StepDelta, StepDeltaTypedDict @@ -384,7 +386,14 @@ from .userinputstep import UserInputStep, UserInputStepParam from .vertexaisearchconfig import VertexAISearchConfig, VertexAISearchConfigParam from .videoconfig import Task, VideoConfig, VideoConfigParam - from .videocontent import VideoContent, VideoContentMimeType, VideoContentParam + from .videocontent import ( + Processing, + ProcessingEnum, + ProcessingParam, + VideoContent, + VideoContentMimeType, + VideoContentParam, + ) from .videodelta import VideoDelta, VideoDeltaMimeType, VideoDeltaTypedDict from .videoresponseformat import ( VideoResponseFormat, @@ -616,6 +625,8 @@ "MCPServerToolResultStepResultParam", "MCPServerToolResultStepResultUnion", "MCPServerToolResultStepResultUnionParam", + "MediaProcessing", + "MediaProcessingParam", "MediaResolution", "Method", "ModalityTokens", @@ -631,6 +642,9 @@ "ParallelAISearchConfigParam", "PlaceCitation", "PlaceCitationParam", + "Processing", + "ProcessingEnum", + "ProcessingParam", "RagResource", "RagResourceParam", "RagRetrievalConfig", @@ -664,6 +678,8 @@ "SourceType", "SpeechConfig", "SpeechConfigParam", + "StaticMediaProcessing", + "StaticMediaProcessingParam", "Status", "StatusParam", "Step", @@ -1000,6 +1016,8 @@ "MCPServerToolResultStepResultParam": ".mcpservertoolresultstep", "MCPServerToolResultStepResultUnion": ".mcpservertoolresultstep", "MCPServerToolResultStepResultUnionParam": ".mcpservertoolresultstep", + "MediaProcessing": ".mediaprocessing", + "MediaProcessingParam": ".mediaprocessing", "MediaResolution": ".mediaresolution", "ModalityTokens": ".modalitytokens", "ModalityTokensTypedDict": ".modalitytokens", @@ -1045,6 +1063,8 @@ "SourceType": ".source", "SpeechConfig": ".speechconfig", "SpeechConfigParam": ".speechconfig", + "StaticMediaProcessing": ".staticmediaprocessing", + "StaticMediaProcessingParam": ".staticmediaprocessing", "Status": ".status", "StatusParam": ".status", "Step": ".step", @@ -1119,6 +1139,9 @@ "Task": ".videoconfig", "VideoConfig": ".videoconfig", "VideoConfigParam": ".videoconfig", + "Processing": ".videocontent", + "ProcessingEnum": ".videocontent", + "ProcessingParam": ".videocontent", "VideoContent": ".videocontent", "VideoContentMimeType": ".videocontent", "VideoContentParam": ".videocontent", diff --git a/google/genai/_gaos/types/interactions/content.py b/google/genai/_gaos/types/interactions/content.py index 6da27ffe8..8fd96d054 100644 --- a/google/genai/_gaos/types/interactions/content.py +++ b/google/genai/_gaos/types/interactions/content.py @@ -37,8 +37,8 @@ TextContentParam, DocumentContentParam, ImageContentParam, - VideoContentParam, AudioContentParam, + VideoContentParam, ], ) r"""The content of the response.""" diff --git a/google/genai/_gaos/types/interactions/mediaprocessing.py b/google/genai/_gaos/types/interactions/mediaprocessing.py new file mode 100644 index 000000000..cafb7bdc0 --- /dev/null +++ b/google/genai/_gaos/types/interactions/mediaprocessing.py @@ -0,0 +1,26 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# pyformat: disable + +"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" + +from __future__ import annotations +from .staticmediaprocessing import StaticMediaProcessing, StaticMediaProcessingParam + + +MediaProcessingParam = StaticMediaProcessingParam + + +MediaProcessing = StaticMediaProcessing diff --git a/google/genai/_gaos/types/interactions/staticmediaprocessing.py b/google/genai/_gaos/types/interactions/staticmediaprocessing.py new file mode 100644 index 000000000..89b3a6c2a --- /dev/null +++ b/google/genai/_gaos/types/interactions/staticmediaprocessing.py @@ -0,0 +1,84 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# pyformat: disable + +"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" + +from __future__ import annotations +from .. import BaseModel, UNSET_SENTINEL +from ...utils import validate_const +import pydantic +from pydantic import model_serializer +from pydantic.functional_validators import AfterValidator +from typing import Literal, Optional +from typing_extensions import Annotated, NotRequired, TypedDict + + +class StaticMediaProcessingParam(TypedDict): + end_offset: NotRequired[str] + r"""Optional. Segment end time. Specified as a decimal number of seconds followed + by an 's' suffix, e.g., \"30s\". Must be non-negative and greater than + `start_offset` if `start_offset` is set. + """ + fps: NotRequired[float] + r"""Optional. Video frame-rate sampling density.""" + start_offset: NotRequired[str] + r"""Optional. Segment start time. Specified as a decimal number of seconds followed + by an 's' suffix, e.g., \"10.5s\". Must be non-negative. + """ + type: Literal["static"] + + +class StaticMediaProcessing(BaseModel): + end_offset: Optional[str] = None + r"""Optional. Segment end time. Specified as a decimal number of seconds followed + by an 's' suffix, e.g., \"30s\". Must be non-negative and greater than + `start_offset` if `start_offset` is set. + """ + + fps: Optional[float] = None + r"""Optional. Video frame-rate sampling density.""" + + start_offset: Optional[str] = None + r"""Optional. Segment start time. Specified as a decimal number of seconds followed + by an 's' suffix, e.g., \"10.5s\". Must be non-negative. + """ + + type: Annotated[ + Annotated[Literal["static"], AfterValidator(validate_const("static"))], + pydantic.Field(alias="type"), + ] = "static" + + @model_serializer(mode="wrap") + def serialize_model(self, handler): + optional_fields = set(["end_offset", "fps", "start_offset"]) + serialized = handler(self) + m = {} + + for n, f in type(self).model_fields.items(): + k = f.alias or n + val = serialized.get(k, serialized.get(n)) + + if val != UNSET_SENTINEL: + if val is not None or k not in optional_fields: + m[k] = val + + return m + + +try: + StaticMediaProcessing.model_rebuild() +except NameError: + pass diff --git a/google/genai/_gaos/types/interactions/videocontent.py b/google/genai/_gaos/types/interactions/videocontent.py index 1826789a1..b92bb7675 100644 --- a/google/genai/_gaos/types/interactions/videocontent.py +++ b/google/genai/_gaos/types/interactions/videocontent.py @@ -25,12 +25,32 @@ UnrecognizedStr, ) from ...utils import validate_const +from .mediaprocessing import MediaProcessing, MediaProcessingParam from .mediaresolution import MediaResolution import pydantic from pydantic import model_serializer from pydantic.functional_validators import AfterValidator from typing import Literal, Optional, Union -from typing_extensions import Annotated, NotRequired, TypedDict +from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict + + +ProcessingEnum = Union[ + Literal[ + "static", + "agentic", + ], + UnrecognizedStr, +] + + +ProcessingParam = TypeAliasType( + "ProcessingParam", Union[MediaProcessingParam, ProcessingEnum] +) +r"""How the model processes this video for understanding.""" + + +Processing = TypeAliasType("Processing", Union[MediaProcessing, ProcessingEnum]) +r"""How the model processes this video for understanding.""" VideoContentMimeType = Union[ @@ -55,6 +75,8 @@ class VideoContentParam(TypedDict): data: NotRequired[Union[str, Base64FileInput]] r"""The video content.""" + processing: NotRequired[ProcessingParam] + r"""How the model processes this video for understanding.""" resolution: NotRequired[MediaResolution] type: Literal["video"] uri: NotRequired[str] @@ -69,6 +91,9 @@ class VideoContent(BaseModel): data: Optional[Base64EncodedString] = None r"""The video content.""" + processing: Optional[Processing] = None + r"""How the model processes this video for understanding.""" + resolution: Optional[MediaResolution] = None type: Annotated[ @@ -84,7 +109,7 @@ class VideoContent(BaseModel): @model_serializer(mode="wrap") def serialize_model(self, handler): - optional_fields = set(["data", "resolution", "uri", "mime_type"]) + optional_fields = set(["data", "processing", "resolution", "uri", "mime_type"]) serialized = handler(self) m = {} From 89dcfe5b28f5e794f9a5ac84e2d45e9e7b7bd803 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Wed, 12 Aug 2026 10:28:03 -0700 Subject: [PATCH 12/19] perf: lazily import the interactions API to speed up import google.genai The top-level package eagerly imported the interactions submodule, and client.py eagerly imported the _gaos backend, so every `import google.genai` paid for hundreds of interactions-API modules even when the caller only uses generate_content. Defer both: make `interactions` a lazy module attribute via __getattr__, and move the _gaos imports in client.py under TYPE_CHECKING plus into the Client/AsyncClient properties that construct them. `from __future__ import annotations` keeps the property return annotations valid without the eager import. The _gaos modules now load only when .interactions/.agents/ .webhooks (or the nextgen client) are first accessed. PiperOrigin-RevId: 963526443 --- google/genai/__init__.py | 14 +++++++-- google/genai/client.py | 66 ++++++++++++++++++++++++++-------------- 2 files changed, 56 insertions(+), 24 deletions(-) diff --git a/google/genai/__init__.py b/google/genai/__init__.py index 9c98f6ef6..e9d37f6bb 100644 --- a/google/genai/__init__.py +++ b/google/genai/__init__.py @@ -15,7 +15,9 @@ """Google Gen AI SDK""" -from . import interactions +import importlib +from typing import Any + from . import types from . import version from .client import Client @@ -23,4 +25,12 @@ __version__ = version.__version__ -__all__ = ['Client'] +__all__ = ['Client', 'interactions', 'types'] + + +def __getattr__(name: str) -> Any: + if name == 'interactions': + module = importlib.import_module('.interactions', __name__) + globals()[name] = module + return module + raise AttributeError(f'module {__name__!r} has no attribute {name!r}') diff --git a/google/genai/client.py b/google/genai/client.py index e730fb28d..8a939306c 100644 --- a/google/genai/client.py +++ b/google/genai/client.py @@ -13,13 +13,17 @@ # limitations under the License. # +from __future__ import annotations + import asyncio import os -from typing import Any, Optional, Union +from typing import Any, Optional, TYPE_CHECKING, Union +import warnings import google.auth import pydantic +from . import _common from ._api_client import BaseApiClient from ._base_url import get_base_url from ._replay_api_client import ReplayApiClient @@ -35,26 +39,21 @@ from .tunings import AsyncTunings, Tunings from .types import HttpOptions, HttpOptionsDict, HttpRetryOptions -import warnings - -from . import _common - -from ._gaos.google_genai import ( - AsyncGeminiNextGenAgents, - AsyncGeminiNextGenEnvironments, - AsyncGeminiNextGenInteractions, - AsyncGeminiNextGenTriggers, - AsyncGeminiNextGenWebhooks, - GeminiNextGenAgents, - GeminiNextGenEnvironments, - GeminiNextGenInteractions, - GeminiNextGenTriggers, - GeminiNextGenWebhooks, - build_google_genai_async_client, - build_google_genai_client, -) -from ._gaos.sdk import AsyncGenAI as AsyncGeminiNextGenAPI -from ._gaos.sdk import GenAI as GeminiNextGenAPI +if TYPE_CHECKING: + from ._gaos.google_genai import ( + AsyncGeminiNextGenAgents, + AsyncGeminiNextGenEnvironments, + AsyncGeminiNextGenInteractions, + AsyncGeminiNextGenTriggers, + AsyncGeminiNextGenWebhooks, + GeminiNextGenAgents, + GeminiNextGenEnvironments, + GeminiNextGenInteractions, + GeminiNextGenTriggers, + GeminiNextGenWebhooks, + ) + from ._gaos.sdk import AsyncGenAI as AsyncGeminiNextGenAPI + from ._gaos.sdk import GenAI as GeminiNextGenAPI _agent_experimental_warned = False _trigger_experimental_warned = False @@ -86,6 +85,8 @@ def __init__(self, api_client: BaseApiClient): @property def _nextgen_client(self) -> AsyncGeminiNextGenAPI: if self._nextgen_client_instance is None: + from ._gaos.google_genai import build_google_genai_async_client + self._nextgen_client_instance = build_google_genai_async_client( self._api_client ) @@ -94,12 +95,16 @@ def _nextgen_client(self) -> AsyncGeminiNextGenAPI: @property def interactions(self) -> AsyncGeminiNextGenInteractions: if self._interactions is None: + from ._gaos.google_genai import AsyncGeminiNextGenInteractions + self._interactions = AsyncGeminiNextGenInteractions(self._api_client) return self._interactions @property def webhooks(self) -> AsyncGeminiNextGenWebhooks: if self._webhooks is None: + from ._gaos.google_genai import AsyncGeminiNextGenWebhooks + self._webhooks = AsyncGeminiNextGenWebhooks(self._api_client) return self._webhooks @@ -114,6 +119,8 @@ def agents(self) -> AsyncGeminiNextGenAgents: stacklevel=1, ) if self._agents is None: + from ._gaos.google_genai import AsyncGeminiNextGenAgents + self._agents = AsyncGeminiNextGenAgents(self._api_client) return self._agents @@ -128,6 +135,8 @@ def triggers(self) -> AsyncGeminiNextGenTriggers: stacklevel=1, ) if self._triggers is None: + from ._gaos.google_genai import AsyncGeminiNextGenTriggers + self._triggers = AsyncGeminiNextGenTriggers(self._api_client) return self._triggers @@ -143,10 +152,11 @@ def environments(self) -> AsyncGeminiNextGenEnvironments: stacklevel=1, ) if self._environments is None: + from ._gaos.google_genai import AsyncGeminiNextGenEnvironments + self._environments = AsyncGeminiNextGenEnvironments(self._api_client) return self._environments - @property def models(self) -> AsyncModels: return self._models @@ -441,6 +451,8 @@ def _get_api_client( @property def _nextgen_client(self) -> GeminiNextGenAPI: if self._nextgen_client_instance is None: + from ._gaos.google_genai import build_google_genai_client + self._nextgen_client_instance = build_google_genai_client( self._api_client ) @@ -449,12 +461,16 @@ def _nextgen_client(self) -> GeminiNextGenAPI: @property def interactions(self) -> GeminiNextGenInteractions: if self._interactions is None: + from ._gaos.google_genai import GeminiNextGenInteractions + self._interactions = GeminiNextGenInteractions(self._api_client) return self._interactions @property def webhooks(self) -> GeminiNextGenWebhooks: if self._webhooks is None: + from ._gaos.google_genai import GeminiNextGenWebhooks + self._webhooks = GeminiNextGenWebhooks(self._api_client) return self._webhooks @@ -469,6 +485,8 @@ def agents(self) -> GeminiNextGenAgents: stacklevel=2, ) if self._agents is None: + from ._gaos.google_genai import GeminiNextGenAgents + self._agents = GeminiNextGenAgents(self._api_client) return self._agents @@ -483,6 +501,8 @@ def triggers(self) -> GeminiNextGenTriggers: stacklevel=2, ) if self._triggers is None: + from ._gaos.google_genai import GeminiNextGenTriggers + self._triggers = GeminiNextGenTriggers(self._api_client) return self._triggers @@ -497,6 +517,8 @@ def environments(self) -> GeminiNextGenEnvironments: stacklevel=2, ) if self._environments is None: + from ._gaos.google_genai import GeminiNextGenEnvironments + self._environments = GeminiNextGenEnvironments(self._api_client) return self._environments From 3a44936ea783363489967bd9d219fb26401585dd Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Wed, 12 Aug 2026 10:59:52 -0700 Subject: [PATCH 13/19] perf: stop importing the requests HTTP stack at module scope PiperOrigin-RevId: 963546158 --- google/genai/_api_client.py | 23 ++++++++++++++++------- google/genai/_common.py | 12 ++++++++++++ google/genai/errors.py | 15 +++++++++------ google/genai/live.py | 23 +++++++++++++++++------ 4 files changed, 54 insertions(+), 19 deletions(-) diff --git a/google/genai/_api_client.py b/google/genai/_api_client.py index f4d24fe4c..3c4cbc247 100644 --- a/google/genai/_api_client.py +++ b/google/genai/_api_client.py @@ -45,13 +45,10 @@ import google.auth.credentials from google.auth.credentials import Credentials from google.auth.transport import mtls -from google.auth.transport.requests import AuthorizedSession from google.auth import exceptions as auth_exceptions import httpx from pydantic import BaseModel from pydantic import ValidationError -import requests -from requests.structures import CaseInsensitiveDict import tenacity from . import _common @@ -87,7 +84,9 @@ if TYPE_CHECKING: + from google.auth.transport.requests import AuthorizedSession # pylint: disable=g-import-not-at-top from multidict import CIMultiDictProxy + from requests.structures import CaseInsensitiveDict # pylint: disable=g-import-not-at-top logger = logging.getLogger('google_genai._api_client') @@ -276,7 +275,7 @@ def __init__( dict[str, str], httpx.Headers, 'CIMultiDictProxy[str]', - CaseInsensitiveDict, + 'CaseInsensitiveDict', ], response_stream: Union[Any, str] = None, byte_stream: Union[Any, bytes] = None, @@ -287,7 +286,11 @@ def __init__( self.headers = { key: ', '.join(headers.get_list(key)) for key in headers.keys() # type: ignore[attr-defined] } - elif isinstance(headers, CaseInsensitiveDict): + elif ( + requests_module := _common.loaded_requests() + ) is not None and isinstance( + headers, requests_module.structures.CaseInsensitiveDict + ): self.headers = {key: value for key, value in headers.items()} elif type(headers).__name__ == 'CIMultiDictProxy': self.headers = { @@ -365,9 +368,13 @@ def _copy_to_dict(self, response_payload: dict[str, object]) -> None: def _iter_response_stream(self) -> Iterator[str]: """Iterates over chunks retrieved from the API.""" + requests_module = _common.loaded_requests() if not ( isinstance(self.response_stream, _HTTPX_RESPONSE_TYPES) - or isinstance(self.response_stream, requests.Response) + or ( + requests_module is not None + and isinstance(self.response_stream, requests_module.Response) + ) ): raise TypeError( 'Expected self.response_stream to be an httpx.Response object, ' @@ -848,7 +855,7 @@ def __init__( vertexai=bool(self.vertexai), ) self._async_httpx_client_args = async_client_args - self._authorized_session: Optional[AuthorizedSession] = None + self._authorized_session: Optional['AuthorizedSession'] = None if self._use_google_auth_sync(): self._httpx_client = None @@ -1467,6 +1474,8 @@ def _request_once( if self._use_google_auth_sync(): url = str(http_request.url) if self._authorized_session is None: + from google.auth.transport.requests import AuthorizedSession # pylint: disable=g-import-not-at-top + self._authorized_session = AuthorizedSession( # type: ignore[no-untyped-call] self._credentials, max_refresh_attempts=1, diff --git a/google/genai/_common.py b/google/genai/_common.py index 3bcfe2ebc..64dd44274 100644 --- a/google/genai/_common.py +++ b/google/genai/_common.py @@ -22,6 +22,7 @@ import functools import logging import re +import sys import typing from typing import Any, Callable, FrozenSet, Optional, Union, get_args, get_origin import uuid @@ -35,6 +36,17 @@ StringDict: TypeAlias = dict[str, Any] +def loaded_requests() -> Optional[Any]: + """Returns the `requests` module, or None if nothing has imported it. + + Only the synchronous google-auth path uses `requests`, and importing it + costs around 300 modules. An object can only be an instance of a `requests` + class once that module is loaded, so callers doing an isinstance check + against one can consult this instead of importing it themselves. + """ + return sys.modules.get('requests') + + class ExperimentalWarning(Warning): """Warning for experimental features.""" diff --git a/google/genai/errors.py b/google/genai/errors.py index 1b2f79959..d54b463ec 100644 --- a/google/genai/errors.py +++ b/google/genai/errors.py @@ -18,7 +18,6 @@ from typing import Any, Callable, Optional, TYPE_CHECKING, Union import httpx import json -import requests try: import httpx2 @@ -32,6 +31,7 @@ from .replay_api_client import ReplayResponse import aiohttp from google.auth.aio.transport.aiohttp import Response as AsyncAuthorizedSessionResponse + import requests # pylint: disable=g-import-not-at-top # httpx2 (https://github.com/pydantic/httpx2) is a drop-in fork of httpx under a @@ -47,7 +47,7 @@ class APIError(Exception): """General errors raised by the GenAI API.""" code: int response: Union[ - requests.Response, + 'requests.Response', 'ReplayResponse', httpx.Response, 'AsyncAuthorizedSessionResponse', @@ -62,7 +62,7 @@ def __init__( response_json: Any, response: Optional[ Union[ - requests.Response, + 'requests.Response', 'ReplayResponse', httpx.Response, 'AsyncAuthorizedSessionResponse', @@ -138,7 +138,8 @@ def _to_replay_record(self) -> _common.StringDict: @classmethod def raise_for_response( - cls, response: Union['ReplayResponse', httpx.Response, requests.Response] + cls, + response: Union['ReplayResponse', httpx.Response, 'requests.Response'], ) -> None: """Raises an error with detailed error message if the response has an error status.""" if response.status_code == 200: @@ -154,7 +155,9 @@ def raise_for_response( 'message': message, 'status': response.reason_phrase, } - elif isinstance(response, requests.Response): + elif (requests := _common.loaded_requests()) is not None and isinstance( + response, requests.Response + ): try: # do not do any extra muanipulation on the response. # return the raw response json as is. @@ -178,7 +181,7 @@ def raise_error( Union[ 'ReplayResponse', httpx.Response, - requests.Response, + 'requests.Response', ] ], ) -> None: diff --git a/google/genai/live.py b/google/genai/live.py index b9cf0c33e..96a696a33 100644 --- a/google/genai/live.py +++ b/google/genai/live.py @@ -54,10 +54,20 @@ from websockets.client import ClientConnection # type: ignore from websockets.client import connect as ws_connect # type: ignore -try: - from google.auth.transport import requests -except ImportError: - requests = None # type: ignore[assignment] + +def _auth_requests() -> Any: + """Returns google-auth's requests transport, or None if it is unavailable. + + Resolved on use rather than at module scope, because importing it pulls in + the whole `requests` stack and only credential refresh below needs it. + """ + try: + from google.auth.transport import requests + + return requests + except ImportError: + return None + if typing.TYPE_CHECKING: from mcp import ClientSession as McpClientSession @@ -1037,9 +1047,10 @@ async def connect( # creds.valid is False, and creds.token is None # Need to refresh credentials to populate those if not (creds.token and creds.valid): - if requests is None: + auth_requests = _auth_requests() + if auth_requests is None: raise ValueError('The requests module is required to refresh google-auth credentials. Please install with `pip install google-auth[requests]`') - auth_req = requests.Request() # type: ignore + auth_req = auth_requests.Request() creds.refresh(auth_req) # type: ignore[no-untyped-call] bearer_token = creds.token From d4850494816c40d943182f4f80f7200a67bd2b5a Mon Sep 17 00:00:00 2001 From: Ayush Agrawal Date: Wed, 12 Aug 2026 13:08:09 -0700 Subject: [PATCH 14/19] test: retry transient errors in the shared integration test clients PiperOrigin-RevId: 963617932 --- google/genai/tests/conftest.py | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/google/genai/tests/conftest.py b/google/genai/tests/conftest.py index f147858fc..8f172d6d0 100644 --- a/google/genai/tests/conftest.py +++ b/google/genai/tests/conftest.py @@ -25,6 +25,42 @@ from .. import _common from .. import _replay_api_client from .. import client as google_genai_client_module +from .. import types + + +# Retry options for the shared integration tests, applied to every request the +# test client makes so that a transient 5xx or 429 does not fail the nightly. +# +# Deliberately shorter than the SDK defaults: a multistep test retries per +# request, so the backoff has to stay well inside the test timeout. Keep aligned with +# the shared test clients in the other SDKs. +_SHARED_TEST_RETRY_OPTIONS = types.HttpRetryOptions( + attempts=3, + initial_delay=1.0, + max_delay=10.0, + exp_base=2.0, + http_status_codes=[408, 429, 500, 502, 503, 504], +) + + +def _is_shared_integration_test(request): + """True only for the curated cross-SDK suite under tests/shared.""" + return 'shared' in os.fspath(request.path).split(os.sep) + + +def _with_shared_test_retry_options(http_options): + """Adds the shared retry options, leaving any caller-supplied ones alone.""" + if http_options is None: + return types.HttpOptions(retry_options=_SHARED_TEST_RETRY_OPTIONS) + if isinstance(http_options, dict): + if http_options.get('retry_options') or http_options.get('retryOptions'): + return http_options + return {**http_options, 'retry_options': _SHARED_TEST_RETRY_OPTIONS} + if getattr(http_options, 'retry_options', None): + return http_options + return http_options.model_copy( + update={'retry_options': _SHARED_TEST_RETRY_OPTIONS} + ) def pytest_addoption(parser): @@ -140,6 +176,11 @@ def client(use_vertex, replays_prefix, http_options, request): if os.environ.get('GOOGLE_CLOUD_LOCATION') == 'global': location_override = 'us-central1' + # Scoped to the shared suite rather than all of api mode, so no other test's + # behaviour changes. + if mode == 'api' and _is_shared_integration_test(request): + http_options = _with_shared_test_retry_options(http_options) + replay_client = _replay_api_client.ReplayApiClient( mode=mode, replay_id=replay_id, From 4272f27241b581b844c38f911fe0be9b5124b545 Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Wed, 12 Aug 2026 15:09:36 -0700 Subject: [PATCH 15/19] chore: allow httpx2 in GAOS Python SDK PiperOrigin-RevId: 963683767 --- google/genai/_gaos/basesdk.py | 15 +- google/genai/_gaos/lib/compat_errors.py | 26 +- google/genai/_gaos/utils/retries.py | 15 +- .../tests/interactions/test_httpx_compat.py | 253 ++++++++++++++++++ 4 files changed, 302 insertions(+), 7 deletions(-) create mode 100644 google/genai/tests/interactions/test_httpx_compat.py diff --git a/google/genai/_gaos/basesdk.py b/google/genai/_gaos/basesdk.py index 7c8497f24..2a2fa7292 100644 --- a/google/genai/_gaos/basesdk.py +++ b/google/genai/_gaos/basesdk.py @@ -26,6 +26,17 @@ from .sdkconfiguration import SDKConfiguration from .utils import RetryConfig, SerializedRequestBody, get_body_content import httpx + +try: + import httpx2 +except ImportError: + httpx2 = None + +_HTTPX_TIMEOUT_TYPES = ( + (httpx.Timeout,) + if httpx2 is None + else (httpx.Timeout, httpx2.Timeout) +) from typing import Any, Callable, List, Mapping, Optional, Tuple from urllib.parse import parse_qs, urlparse @@ -62,7 +73,7 @@ def _coerce_timeout_ms(self, timeout: Optional[Any]) -> Optional[int]: return None if isinstance(timeout, (int, float)): return int(timeout * 1000) - if isinstance(timeout, httpx.Timeout): + if isinstance(timeout, _HTTPX_TIMEOUT_TYPES): values = [timeout.connect, timeout.read, timeout.write, timeout.pool] finite_values = [value for value in values if value is not None] if not finite_values: @@ -329,7 +340,7 @@ def _coerce_timeout_ms(self, timeout: Optional[Any]) -> Optional[int]: return None if isinstance(timeout, (int, float)): return int(timeout * 1000) - if isinstance(timeout, httpx.Timeout): + if isinstance(timeout, _HTTPX_TIMEOUT_TYPES): values = [timeout.connect, timeout.read, timeout.write, timeout.pool] finite_values = [value for value in values if value is not None] if not finite_values: diff --git a/google/genai/_gaos/lib/compat_errors.py b/google/genai/_gaos/lib/compat_errors.py index a9de44ede..970564c43 100644 --- a/google/genai/_gaos/lib/compat_errors.py +++ b/google/genai/_gaos/lib/compat_errors.py @@ -28,8 +28,24 @@ import json from typing import Any, Awaitable, Callable, Optional, TypeVar, cast +try: + import httpx2 +except ImportError: + httpx2 = None + import httpx +_HTTPX_TIMEOUT_ERRORS = ( + (httpx.TimeoutException,) + if httpx2 is None + else (httpx.TimeoutException, httpx2.TimeoutException) +) +_HTTPX_HTTP_ERRORS = ( + (httpx.HTTPError,) + if httpx2 is None + else (httpx.HTTPError, httpx2.HTTPError) +) + from ..errors.genaierror import GenAiError from ..errors.no_response_error import NoResponseError from ..errors.responsevalidationerror import ResponseValidationError @@ -271,7 +287,7 @@ def _wrap_httpx_error(error: BaseException) -> APIConnectionError: tolerates the edge case rather than fabricating a misleading stand-in. """ request = getattr(error, "_request", None) - if isinstance(error, httpx.TimeoutException): + if isinstance(error, _HTTPX_TIMEOUT_ERRORS): wrapped: APIConnectionError = APITimeoutError(request=request) # type: ignore[arg-type] else: wrapped = APIConnectionError( @@ -300,7 +316,7 @@ def wrap_sdk_error(error: BaseException) -> BaseException: return _wrap_validation_error(error) if isinstance(error, NoResponseError): return _wrap_no_response_error(error) - if isinstance(error, httpx.HTTPError): + if isinstance(error, _HTTPX_HTTP_ERRORS): return _wrap_httpx_error(error) if not isinstance(error, GenAiError): return error @@ -317,7 +333,11 @@ def wrap_sdk_error(error: BaseException) -> BaseException: return wrapped -_WRAP_EXCEPTIONS = (GenAiError, NoResponseError, httpx.HTTPError) +_WRAP_EXCEPTIONS = ( + (GenAiError, NoResponseError, httpx.HTTPError) + if httpx2 is None + else (GenAiError, NoResponseError, httpx.HTTPError, httpx2.HTTPError) +) class CompatErrorHook: diff --git a/google/genai/_gaos/utils/retries.py b/google/genai/_gaos/utils/retries.py index 152733c87..68ab8bca4 100644 --- a/google/genai/_gaos/utils/retries.py +++ b/google/genai/_gaos/utils/retries.py @@ -25,6 +25,17 @@ import httpx +try: + import httpx2 +except ImportError: + httpx2 = None + +_RETRY_EXCEPTIONS = ( + (httpx.NetworkError, httpx.TimeoutException) + if httpx2 is None + else (httpx.NetworkError, httpx.TimeoutException, httpx2.NetworkError, httpx2.TimeoutException) +) + class BackoffStrategy: """Exponential backoff strategy configuration.""" @@ -236,7 +247,7 @@ def do_request(attempt: int) -> httpx.Response: if should_retry: raise TemporaryError(res) - except (httpx.NetworkError, httpx.TimeoutException) as exception: + except _RETRY_EXCEPTIONS as exception: if retries.config.retry_connection_errors: raise @@ -296,7 +307,7 @@ async def do_request(attempt: int) -> httpx.Response: if should_retry: raise TemporaryError(res) - except (httpx.NetworkError, httpx.TimeoutException) as exception: + except _RETRY_EXCEPTIONS as exception: if retries.config.retry_connection_errors: raise diff --git a/google/genai/tests/interactions/test_httpx_compat.py b/google/genai/tests/interactions/test_httpx_compat.py new file mode 100644 index 000000000..ddf931ead --- /dev/null +++ b/google/genai/tests/interactions/test_httpx_compat.py @@ -0,0 +1,253 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Tests for httpx and httpx2 compatibility across the GAOS client.""" + +import httpx +import pytest + +try: + import httpx2 +except ImportError: + httpx2 = None + +from ... import client as client_lib +from ..._gaos.basesdk import AsyncBaseSDK, BaseSDK +from ..._gaos.httpclient import AsyncHttpClient, HttpClient +from ..._gaos.lib import compat_errors +from ..._gaos.utils import eventstreaming, retries + + +# --- Standard httpx tests --- + + +def test_error_wrapping_httpx_errors(): + req = httpx.Request("GET", "https://example.com") + err = httpx.ConnectError("failed to connect", request=req) + wrapped = compat_errors.wrap_sdk_error(err) + assert isinstance(wrapped, compat_errors.APIConnectionError) + assert wrapped.__cause__ is err + + timeout_err = httpx.TimeoutException("timed out", request=req) + wrapped_timeout = compat_errors.wrap_sdk_error(timeout_err) + assert isinstance(wrapped_timeout, compat_errors.APITimeoutError) + assert wrapped_timeout.__cause__ is timeout_err + + +def test_base_sdk_timeout_coercion(): + sdk = BaseSDK.__new__(BaseSDK) + + assert sdk._coerce_timeout_ms(None) is None + assert sdk._coerce_timeout_ms(5) == 5000 + assert sdk._coerce_timeout_ms(2.5) == 2500 + assert ( + sdk._coerce_timeout_ms( + httpx.Timeout(connect=1.0, read=4.0, write=2.0, pool=None) + ) + == 4000 + ) + + with pytest.raises( + TypeError, match="timeout must be a float, int, httpx.Timeout, or None" + ): + sdk._coerce_timeout_ms("invalid_timeout") + + +def test_injected_client_passed_to_gaos(): + http_client = httpx.Client() + try: + client = client_lib.Client( + api_key="fake-key", + http_options={"httpx_client": http_client}, + ) + + assert client._api_client._httpx_client is http_client + interactions_client = client.interactions + assert interactions_client.sdk_configuration.client is http_client + finally: + http_client.close() + + +def test_stream_error_wrapping_httpx_errors(): + def failing_gen(): + yield "chunk1" + raise httpx.ConnectError("stream network broken") + + stream = eventstreaming.Stream.__new__(eventstreaming.Stream) + stream.generator = failing_gen() + wrapped_stream = compat_errors.wrap_stream_errors(stream) + + gen = wrapped_stream.generator + assert next(gen) == "chunk1" + with pytest.raises(compat_errors.APIConnectionError) as exc_info: + next(gen) + assert "stream network broken" in str(exc_info.value) + + +@pytest.mark.asyncio +async def test_async_stream_error_wrapping_httpx_errors(): + async def failing_agen(): + yield "async_chunk1" + raise httpx.ConnectError("async stream network broken") + + stream = eventstreaming.AsyncStream.__new__(eventstreaming.AsyncStream) + stream.generator = failing_agen() + wrapped_stream = compat_errors.wrap_async_stream_errors(stream) + + agen = wrapped_stream.generator + chunk = await agen.__anext__() + assert chunk == "async_chunk1" + with pytest.raises(compat_errors.APIConnectionError) as exc_info: + await agen.__anext__() + assert "async stream network broken" in str(exc_info.value) + + +# --- httpx2 tests (run in CI when httpx2 is installed) --- + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +def test_httpx2_error_wrapping(): + req = httpx2.Request("GET", "https://example.com") + err = httpx2.ConnectError("failed to connect", request=req) + wrapped = compat_errors.wrap_sdk_error(err) + assert isinstance(wrapped, compat_errors.APIConnectionError) + assert wrapped.__cause__ is err + + timeout_err = httpx2.TimeoutException("timed out", request=req) + wrapped_timeout = compat_errors.wrap_sdk_error(timeout_err) + assert isinstance(wrapped_timeout, compat_errors.APITimeoutError) + assert wrapped_timeout.__cause__ is timeout_err + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +def test_httpx2_timeout_coercion(): + sdk = BaseSDK.__new__(BaseSDK) + timeout = httpx2.Timeout(connect=1.0, read=4.0, write=2.0, pool=None) + assert sdk._coerce_timeout_ms(timeout) == 4000 + + async_sdk = AsyncBaseSDK.__new__(AsyncBaseSDK) + assert async_sdk._coerce_timeout_ms(timeout) == 4000 + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +def test_httpx2_client_protocols(): + assert issubclass(httpx2.Client, HttpClient) + assert issubclass(httpx2.AsyncClient, AsyncHttpClient) + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +def test_httpx2_retries(): + attempts = 0 + + def flaky_operation(_attempt): + nonlocal attempts + attempts += 1 + if attempts < 3: + raise httpx2.NetworkError("temporary network error") + return httpx2.Response(200, json={"status": "ok"}) + + config = retries.RetryConfig( + strategy="attempt-count-backoff", + retry_connection_errors=True, + backoff=retries.BackoffStrategy( + initial_interval=1, + max_interval=5, + exponent=1.1, + max_elapsed_time=100, + ), + max_retries=3, + ) + res = retries.retry(flaky_operation, retries.Retries(config, ["5XX"])) + assert res.status_code == 200 + assert attempts == 3 + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +@pytest.mark.asyncio +async def test_httpx2_async_retries(): + attempts = 0 + + async def flaky_async_operation(_attempt): + nonlocal attempts + attempts += 1 + if attempts < 3: + raise httpx2.NetworkError("temporary async network error") + return httpx2.Response(200, json={"status": "ok"}) + + config = retries.RetryConfig( + strategy="attempt-count-backoff", + retry_connection_errors=True, + backoff=retries.BackoffStrategy( + initial_interval=1, + max_interval=5, + exponent=1.1, + max_elapsed_time=100, + ), + max_retries=3, + ) + res = await retries.retry_async( + flaky_async_operation, retries.Retries(config, ["5XX"]) + ) + assert res.status_code == 200 + assert attempts == 3 + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +def test_httpx2_stream_error_wrapping(): + def failing_gen(): + yield "chunk1" + raise httpx2.ConnectError("stream network broken") + + stream = eventstreaming.Stream.__new__(eventstreaming.Stream) + stream.generator = failing_gen() + wrapped_stream = compat_errors.wrap_stream_errors(stream) + + gen = wrapped_stream.generator + assert next(gen) == "chunk1" + with pytest.raises(compat_errors.APIConnectionError) as exc_info: + next(gen) + assert "stream network broken" in str(exc_info.value) + + +@pytest.mark.skipif( + httpx2 is None, reason="httpx2 not installed in this environment" +) +@pytest.mark.asyncio +async def test_httpx2_async_stream_error_wrapping(): + async def failing_agen(): + yield "async_chunk1" + raise httpx2.ConnectError("async stream network broken") + + stream = eventstreaming.AsyncStream.__new__(eventstreaming.AsyncStream) + stream.generator = failing_agen() + wrapped_stream = compat_errors.wrap_async_stream_errors(stream) + + agen = wrapped_stream.generator + chunk = await agen.__anext__() + assert chunk == "async_chunk1" + with pytest.raises(compat_errors.APIConnectionError) as exc_info: + await agen.__anext__() + assert "async stream network broken" in str(exc_info.value) From ce444c61c1cf4a4d320822cb0c4c71ce99cb9cab Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Wed, 12 Aug 2026 15:51:40 -0700 Subject: [PATCH 16/19] chore: drop unused auth imports from the MCP utils module PiperOrigin-RevId: 963703979 --- google/genai/_mcp_utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/google/genai/_mcp_utils.py b/google/genai/_mcp_utils.py index 106f385c4..f8043e2b8 100644 --- a/google/genai/_mcp_utils.py +++ b/google/genai/_mcp_utils.py @@ -27,9 +27,6 @@ import typing from typing import Any -import google.auth -from google.auth.transport.requests import Request - from . import _common from . import types from ._api_client import _MULTI_REGIONAL_LOCATIONS From fe6118e3c7a9e83406bc722e34b7efca75f1ef13 Mon Sep 17 00:00:00 2001 From: Yvonne Yu Date: Wed, 12 Aug 2026 16:14:52 -0700 Subject: [PATCH 17/19] fix: improve AFC(automatic function calling) in chat including fixing bugs in AFC for generate_content_stream. also log warnings in generate_content, generate_content_stream and their async variants that AFC is meant to be used in chat experience, not directly in models module. PiperOrigin-RevId: 963715749 --- google/genai/_extra_utils.py | 32 +- google/genai/_mcp_utils.py | 2 + google/genai/chats.py | 799 +++++++++++++++--- google/genai/models.py | 274 ++---- .../afc/test_generate_content_stream_afc.py | 36 +- .../genai/tests/afc/test_get_function_map.py | 8 +- .../afc/test_get_function_response_parts.py | 65 +- .../tests/afc/test_should_disable_afc.py | 7 - google/genai/tests/chats/test_get_history.py | 85 -- google/genai/tests/chats/test_send_message.py | 4 - .../models/test_function_call_streaming.py | 8 - .../tests/models/test_generate_content.py | 4 - .../tests/models/test_generate_content_mcp.py | 12 +- .../models/test_generate_content_tools.py | 234 ++--- google/genai/tests/private/__init__.py | 17 - .../private/test_send_message_private.py | 250 ------ .../test_send_message_stream_private.py | 273 ------ google/genai/tests/pytest_helper.py | 9 + google/genai/types.py | 5 +- 19 files changed, 954 insertions(+), 1170 deletions(-) delete mode 100644 google/genai/tests/private/__init__.py delete mode 100644 google/genai/tests/private/test_send_message_private.py delete mode 100644 google/genai/tests/private/test_send_message_stream_private.py diff --git a/google/genai/_extra_utils.py b/google/genai/_extra_utils.py index bb2c901d3..98a75748e 100644 --- a/google/genai/_extra_utils.py +++ b/google/genai/_extra_utils.py @@ -142,6 +142,33 @@ def find_afc_incompatible_tool_indexes( return incompatible_tools_indexes +def log_afc_incompatible_tools_warning( + config: Optional[types.GenerateContentConfigOrDict], + incompatible_tools_indexes: list[int], +) -> None: + """Logs a warning if any tools are incompatible with automatic function calling.""" + if not incompatible_tools_indexes: + return + original_tools_length = 0 + if isinstance(config, types.GenerateContentConfig): + if config.tools: + original_tools_length = len(config.tools) + elif isinstance(config, dict): + tools = config.get('tools', []) + if tools: + original_tools_length = len(tools) + if len(incompatible_tools_indexes) != original_tools_length: + indices_str = ', '.join(map(str, incompatible_tools_indexes)) + logger.warning( + 'Tools at indices [%s] are not compatible with automatic function ' + 'calling (AFC). AFC is disabled. If AFC is intended, please ' + 'include python callables in the tool list, and do not include ' + 'function declaration and MCP server in the tool list.', + indices_str, + ) + + + def get_function_map( config: Optional[types.GenerateContentConfigOrDict] = None, mcp_to_genai_tool_adapters: Optional[ @@ -389,11 +416,12 @@ async def get_function_response_parts_async( mcp_tool_response = await func.call_tool( types.FunctionCall(name=func_name, args=args) ) - if getattr( + is_error = getattr( mcp_tool_response, 'is_error', getattr(mcp_tool_response, 'isError', False), - ): + ) + if is_error: func_response = {'error': mcp_tool_response} else: func_response = {'result': mcp_tool_response} diff --git a/google/genai/_mcp_utils.py b/google/genai/_mcp_utils.py index f8043e2b8..24ba79804 100644 --- a/google/genai/_mcp_utils.py +++ b/google/genai/_mcp_utils.py @@ -47,6 +47,7 @@ def _is_mcp_loaded() -> bool: def mcp_to_gemini_tool(tool: McpTool) -> types.Tool: """Translates an MCP tool to a Google GenAI tool.""" + input_schema = getattr(tool, "inputSchema", getattr(tool, "input_schema", {})) return types.Tool( function_declarations=[{ "name": tool.name, @@ -66,6 +67,7 @@ def mcp_to_gemini_tool(tool: McpTool) -> types.Tool: def agent_platform_to_gemini_tool(tool: McpTool) -> types.Tool: """Translates an Agent Platform tool to a Google GenAI tool.""" + input_schema = getattr(tool, "inputSchema", getattr(tool, "input_schema", {})) return types.Tool( function_declarations=[{ "name": tool.name, diff --git a/google/genai/chats.py b/google/genai/chats.py index 8ab765db0..be10298bc 100644 --- a/google/genai/chats.py +++ b/google/genai/chats.py @@ -14,12 +14,16 @@ # from collections.abc import Iterator +import contextlib +import logging import sys -from typing import AsyncIterator, Awaitable, Optional, Union, get_args +from typing import Any, AsyncIterator, Optional, Union, get_args from . import _extra_utils +from . import _mcp_utils from . import _transformers as t +from . import errors from . import types from .models import AsyncModels, Models from .types import Content, ContentOrDict, GenerateContentConfigOrDict, GenerateContentResponse, Part, PartUnionDict @@ -30,6 +34,7 @@ else: from typing_extensions import TypeGuard +logger = logging.getLogger("google_genai.chats") def _validate_content(content: Content) -> bool: if not content.parts: @@ -136,7 +141,6 @@ def record_history( self, user_input: Content, model_output: list[Content], - automatic_function_calling_history: list[Content], is_valid: bool, ) -> None: """Records the chat history. @@ -147,20 +151,10 @@ def record_history( user_input: The user's input content. model_output: A list of `Content` from the model's response. This can be an empty list if the model produced no output. - automatic_function_calling_history: A list of `Content` representing the - history of automatic function calls, including the user input as the - first entry. is_valid: A boolean flag indicating whether the current model output is considered valid. """ - input_contents = ( - # Because the AFC input contains the entire curated chat history in - # addition to the new user input, we need to truncate the AFC history - # to deduplicate the existing chat history. - automatic_function_calling_history[len(self._curated_history) :] - if automatic_function_calling_history - else [user_input] - ) + input_contents = [user_input] # Appends an empty content when model returns empty response, so that the # history is always alternating between user and model. output_contents = ( @@ -252,34 +246,138 @@ def send_message( f"Message must be a valid part type: {types.PartUnion} or" f" {types.PartUnionDict}, got {type(message)}" ) - input_content = t.t_content(message) method_config = config if config else self._config method_config = _extra_utils.get_usage_header( method_config, types.GenerateContentConfig, usage="chat" # type: ignore[arg-type] ) - response = self._modules.generate_content( - model=self._model, - contents=self._curated_history + [input_content], # type: ignore[arg-type] - config=method_config, + parsed_config = _extra_utils.parse_config_for_mcp_usage(method_config) + if ( + parsed_config + and parsed_config.tools + and _mcp_utils.has_mcp_session_usage(parsed_config.tools) + ): + raise errors.UnsupportedFunctionError( + "MCP sessions are not supported in synchronous methods." + ) + incompatible_tools_indexes = ( + _extra_utils.find_afc_incompatible_tool_indexes(method_config) ) + user_input = t.t_content(message) + contents_to_model = self._curated_history + [user_input] # type: ignore[arg-type] + if _extra_utils.should_disable_afc(method_config): + response = self._modules.generate_content( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ) + model_output = ( + [response.candidates[0].content] + if response.candidates and response.candidates[0].content + else [] + ) + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + return response + + if incompatible_tools_indexes: + _extra_utils.log_afc_incompatible_tools_warning( + method_config, incompatible_tools_indexes + ) + + if parsed_config: + parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig(disable=True) + ) + response = self._modules.generate_content( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ) + model_output = ( + [response.candidates[0].content] + if response.candidates and response.candidates[0].content + else [] + ) + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + return response + # AFC handling + remaining_remote_calls_afc = _extra_utils.get_max_remote_calls_afc( + parsed_config + ) + # Because we cannot remove automatic_function_calling from the + # GenerateContentConfig, we set it to None to disable it + if parsed_config: + parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig(disable=True) + ) + logger.info( + f"AFC is enabled with max remote calls: {remaining_remote_calls_afc}." + ) + parsed_config = _extra_utils.get_usage_header( + parsed_config, types.GenerateContentConfig, usage='afc' # type: ignore[arg-type] + ) + response = types.GenerateContentResponse() + function_map = _extra_utils.get_function_map(parsed_config) + i = 0 + while remaining_remote_calls_afc > 0: + i += 1 + response = self._modules.generate_content( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ) + if ( + not function_map + or not response + or not response.candidates + or not response.candidates[0].content + or not response.candidates[0].content.parts + ): + break + + func_response_parts = _extra_utils.get_function_response_parts( + response, function_map + ) + if not func_response_parts: + break + logger.info(f"AFC remote call {i} is done.") + remaining_remote_calls_afc -= 1 + if remaining_remote_calls_afc == 0: + logger.info("Reached max remote calls for automatic function calling.") + func_call_content = response.candidates[0].content + func_response_content = types.Content( + role="user", parts=func_response_parts + ) + contents_to_model.append(func_call_content) + contents_to_model.append(func_response_content) + model_output = [func_call_content] + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + user_input = func_response_content + model_output = ( [response.candidates[0].content] if response.candidates and response.candidates[0].content else [] ) - automatic_function_calling_history = ( - response.automatic_function_calling_history - if response.automatic_function_calling_history - else [] - ) self.record_history( - user_input=input_content, + user_input=user_input, model_output=model_output, - automatic_function_calling_history=automatic_function_calling_history, is_valid=_validate_response(response), ) return response + def send_message_stream( self, message: Union[list[PartUnionDict], PartUnionDict], @@ -304,45 +402,154 @@ def send_message_stream( print(chunk.text) """ + method_config = config if config else self._config + method_config = _extra_utils.get_usage_header( + method_config, types.GenerateContentConfig, usage="chat" # type: ignore[arg-type] + ) + parsed_config = _extra_utils.parse_config_for_mcp_usage(method_config) + if ( + parsed_config + and parsed_config.tools + and _mcp_utils.has_mcp_session_usage(parsed_config.tools) + ): + raise errors.UnsupportedFunctionError( + "MCP sessions are not supported in synchronous methods." + ) if not _is_part_type(message): raise ValueError( f"Message must be a valid part type: {types.PartUnion} or" f" {types.PartUnionDict}, got {type(message)}" ) - input_content = t.t_content(message) - output_contents = [] + incompatible_tools_indexes = ( + _extra_utils.find_afc_incompatible_tool_indexes(method_config) + ) + user_input = t.t_content(message) + contents_to_model = self._curated_history + [user_input] # type: ignore[arg-type] + model_output = [] finish_reason = None is_valid = True chunk = None - method_config = config if config else self._config - method_config = _extra_utils.get_usage_header( - method_config, types.GenerateContentConfig, usage="chat" # type: ignore[arg-type] + disable_afc = _extra_utils.should_disable_afc(method_config) + if not disable_afc and incompatible_tools_indexes: + _extra_utils.log_afc_incompatible_tools_warning( + method_config, incompatible_tools_indexes + ) + if parsed_config: + parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig(disable=True) + ) + disable_afc = True + + if disable_afc: + if isinstance(self._modules, Models): + for chunk in self._modules.generate_content_stream( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ): + if not _validate_response(chunk): + is_valid = False + if chunk.candidates and chunk.candidates[0].content: + model_output.append(chunk.candidates[0].content) + if chunk.candidates and chunk.candidates[0].finish_reason: + finish_reason = chunk.candidates[0].finish_reason + yield chunk + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=is_valid + and model_output is not None + and finish_reason is not None, + ) + return + + # AFC handling + remaining_remote_calls_afc = _extra_utils.get_max_remote_calls_afc( + parsed_config ) - if isinstance(self._modules, Models): - for chunk in self._modules.generate_content_stream( - model=self._model, - contents=self._curated_history + [input_content], # type: ignore[arg-type] - config=method_config, - ): - if not _validate_response(chunk): - is_valid = False - if chunk.candidates and chunk.candidates[0].content: - output_contents.append(chunk.candidates[0].content) - if chunk.candidates and chunk.candidates[0].finish_reason: - finish_reason = chunk.candidates[0].finish_reason - yield chunk - automatic_function_calling_history = ( - chunk.automatic_function_calling_history - if chunk is not None and chunk.automatic_function_calling_history - else [] + # Because we cannot remove automatic_function_calling from the + # GenerateContentConfig, we set it to None to disable it + if parsed_config: + parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig(disable=True) ) + parsed_config = _extra_utils.get_usage_header( + parsed_config, types.GenerateContentConfig, usage="afc" # type: ignore[arg-type] + ) + logger.info( + f"AFC is enabled with max remote calls: {remaining_remote_calls_afc}." + ) + function_map = _extra_utils.get_function_map(parsed_config) + i = 0 + if isinstance(self._modules, Models): + while remaining_remote_calls_afc > 0: + i += 1 + response_stream = self._modules.generate_content_stream( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ) + + model_output = [] + finish_reason = None + is_valid = True + func_response_parts = [] + chunk = None + + for chunk in response_stream: + if not _validate_response(chunk): + is_valid = False + + if ( + function_map + and chunk.candidates + and chunk.candidates[0].content + and chunk.candidates[0].content.parts + ): + chunk_func_response_parts = ( + _extra_utils.get_function_response_parts(chunk, function_map) + ) + if chunk_func_response_parts: + func_response_parts.extend(chunk_func_response_parts) + + if chunk.candidates and chunk.candidates[0].content: + model_output.append(chunk.candidates[0].content) + if chunk.candidates and chunk.candidates[0].finish_reason: + finish_reason = chunk.candidates[0].finish_reason + yield chunk + + if not function_map or not func_response_parts: + break + + logger.info(f"AFC remote call {i} is done.") + remaining_remote_calls_afc -= 1 + if remaining_remote_calls_afc == 0: + logger.info( + "Reached max remote calls for automatic function calling." + ) + + if chunk and chunk.candidates and chunk.candidates[0].content: + func_response_content = types.Content( + role="user", parts=func_response_parts + ) + contents_to_model.extend(model_output) + contents_to_model.append(func_response_content) + + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=is_valid, + ) + user_input = func_response_content + self.record_history( - user_input=input_content, - model_output=output_contents, - automatic_function_calling_history=automatic_function_calling_history, - is_valid=is_valid - and output_contents is not None - and finish_reason is not None, + user_input=user_input, + model_output=model_output, + is_valid=bool( + is_valid + and model_output is not None + and finish_reason is not None + ), ) @@ -417,38 +624,227 @@ async def send_message( chat = client.aio.chats.create(model='gemini-2.0-flash') response = await chat.send_message('tell me a story') """ + method_config = config if config else self._config + method_config = _extra_utils.get_usage_header( + method_config, # type: ignore[arg-type] + types.GenerateContentConfig, + usage="chat", + ) if not _is_part_type(message): raise ValueError( f"Message must be a valid part type: {types.PartUnion} or" f" {types.PartUnionDict}, got {type(message)}" ) - input_content = t.t_content(message) - method_config = config if config else self._config - method_config = _extra_utils.get_usage_header( - method_config, types.GenerateContentConfig, usage="chat" # type: ignore[arg-type] - ) - response = await self._modules.generate_content( - model=self._model, - contents=self._curated_history + [input_content], # type: ignore[arg-type] - config=method_config, - ) - model_output = ( - [response.candidates[0].content] - if response.candidates and response.candidates[0].content - else [] - ) - automatic_function_calling_history = ( - response.automatic_function_calling_history - if response.automatic_function_calling_history - else [] + + user_input = t.t_content(message) + contents_to_model = self._curated_history + [user_input] # type: ignore[arg-type] + + if _extra_utils.should_disable_afc(method_config): + response = await self._modules.generate_content( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=method_config, + ) + model_output = ( + [response.candidates[0].content] + if response.candidates and response.candidates[0].content + else [] + ) + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + return response + + incompatible_tools_indexes = ( + _extra_utils.find_afc_incompatible_tool_indexes( + method_config, + is_agent_platform=getattr( + self._modules._api_client, "vertexai", False + ), + ) ) - self.record_history( - user_input=input_content, - model_output=model_output, - automatic_function_calling_history=automatic_function_calling_history, - is_valid=_validate_response(response), + + if not method_config: + parsed_config = None + elif isinstance(method_config, dict): + parsed_config = types.GenerateContentConfig(**method_config) + else: + parsed_config = method_config.model_copy(deep=True) + + if incompatible_tools_indexes: + _extra_utils.log_afc_incompatible_tools_warning( + method_config, incompatible_tools_indexes + ) + + if parsed_config: + parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig(disable=True) + ) + response = await self._modules.generate_content( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ) + model_output = ( + [response.candidates[0].content] + if response.candidates and response.candidates[0].content + else [] + ) + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + return response + + # AFC handling + parsed_config = _extra_utils.get_usage_header( + parsed_config, # type: ignore[arg-type] + types.GenerateContentConfig, + usage="afc", ) - return response + async with contextlib.AsyncExitStack() as stack: + # Intercept Agent Platform MCP servers and open connections + if ( + self._modules._api_client.vertexai + and _extra_utils.has_agent_platform_mcp_servers(parsed_config) + and parsed_config is not None + ): + new_tools: list[Any] = [] + if parsed_config.tools: + for tool in parsed_config.tools: + if isinstance(tool, types.Tool) and tool.mcp_servers: + # Only keep the tool if it has fields besides mcp_servers + if ( + tool.function_declarations + or tool.google_search + or tool.retrieval + or tool.google_search_retrieval + or tool.code_execution + ): + tool_copy = tool.model_copy(update={'mcp_servers': None}) + new_tools.append(tool_copy) + + for server in tool.mcp_servers: + if ( + getattr(server, 'streamable_http_transport', None) + is not None + ): + raise ValueError( + "The 'streamable_http_transport' parameter is only" + ' supported in Gemini Developer API mode, not in Gemini' + ' Enterprise Agent Platform mode.' + ) + + # Open the stream and tie its lifespan to the AsyncExitStack + if server.name is not None: + session = await stack.enter_async_context( + _mcp_utils._connect_agent_platform_mcp( + self._modules._api_client, server.name + ) + ) + new_tools.append(session) + else: + raise ValueError( + "Agent Platform MCP servers require a 'name' field." + ) + else: + new_tools.append(tool) + parsed_config.tools = new_tools + + # Convert active sessions to tools and adapters + final_parsed_config, mcp_to_genai_tool_adapters = ( + await _extra_utils.parse_config_for_mcp_sessions( + parsed_config, + is_agent_platform=getattr( + self._modules._api_client, "vertexai", False + ), + ) + ) + + remaining_remote_calls_afc = _extra_utils.get_max_remote_calls_afc( + final_parsed_config + ) + if final_parsed_config: + final_parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig( + disable=True, + ) + ) + + logger.info( + f"AFC is enabled with max remote calls: {remaining_remote_calls_afc}." + ) + + response = types.GenerateContentResponse() + function_map = _extra_utils.get_function_map( + final_parsed_config, + mcp_to_genai_tool_adapters, + is_caller_method_async=True, + ) + + i = 0 + while remaining_remote_calls_afc > 0: + i += 1 + response = await self._modules.generate_content( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=final_parsed_config, + ) + if ( + not function_map + or not response + or not response.candidates + or not response.candidates[0].content + or not response.candidates[0].content.parts + ): + break + + func_response_parts = ( + await _extra_utils.get_function_response_parts_async( + response, function_map + ) + ) + if not func_response_parts: + break + + logger.info(f"AFC remote call {i} is done.") + remaining_remote_calls_afc -= 1 + if remaining_remote_calls_afc == 0: + logger.info( + "Reached max remote calls for automatic function calling." + ) + + func_call_content = response.candidates[0].content + func_response_content = types.Content( + role="user", parts=func_response_parts + ) + + contents_to_model.append(func_call_content) + contents_to_model.append(func_response_content) + + model_output = [func_call_content] + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + user_input = func_response_content + + model_output = ( + [response.candidates[0].content] + if response.candidates and response.candidates[0].content + else [] + ) + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=_validate_response(response), + ) + return response + async def send_message_stream( self, @@ -481,40 +877,227 @@ async def send_message_stream( ) input_content = t.t_content(message) - method_config = config if config else self._config - method_config = _extra_utils.get_usage_header( - method_config, types.GenerateContentConfig, usage="chat" # type: ignore[arg-type] - ) - async def async_generator(): # type: ignore[no-untyped-def] - output_contents = [] - finish_reason = None - is_valid = True - chunk = None - async for chunk in await self._modules.generate_content_stream( # type: ignore[attr-defined] - model=self._model, - contents=self._curated_history + [input_content], # type: ignore[arg-type] - config=method_config, - ): - if not _validate_response(chunk): + method_config = config if config else self._config + method_config = _extra_utils.get_usage_header( + method_config, # type: ignore[arg-type] + types.GenerateContentConfig, + usage="chat", + ) + parsed_config = _extra_utils.parse_config_for_mcp_usage(method_config) + disable_afc = _extra_utils.should_disable_afc(method_config) + incompatible_tools_indexes = ( + _extra_utils.find_afc_incompatible_tool_indexes( + method_config, + is_agent_platform=getattr( + self._modules._api_client, "vertexai", False + ), + ) + ) + user_input = input_content + contents_to_model = self._curated_history + [user_input] # type: ignore[arg-type] + if not disable_afc and incompatible_tools_indexes: + _extra_utils.log_afc_incompatible_tools_warning( + method_config, incompatible_tools_indexes + ) + if parsed_config: + parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig( + disable=True, + ) + ) + disable_afc = True + + if disable_afc: + output_contents = [] + finish_reason = None + is_valid = True + chunk = None + async for chunk in await self._modules.generate_content_stream( # type: ignore[attr-defined] + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=parsed_config, + ): + if not _validate_response(chunk): + is_valid = False + if chunk.candidates and chunk.candidates[0].content: + output_contents.append(chunk.candidates[0].content) + if chunk.candidates and chunk.candidates[0].finish_reason: + finish_reason = chunk.candidates[0].finish_reason + yield chunk + + if not output_contents or finish_reason is None: is_valid = False - if chunk.candidates and chunk.candidates[0].content: - output_contents.append(chunk.candidates[0].content) - if chunk.candidates and chunk.candidates[0].finish_reason: - finish_reason = chunk.candidates[0].finish_reason - yield chunk - - if not output_contents or finish_reason is None: - is_valid = False - self.record_history( - user_input=input_content, - model_output=output_contents, - automatic_function_calling_history=chunk.automatic_function_calling_history - if chunk is not None and chunk.automatic_function_calling_history - else [], - is_valid=is_valid, + self.record_history( + user_input=user_input, + model_output=output_contents, + is_valid=is_valid, + ) + return + + # AFC handling + parse_config = _extra_utils.get_usage_header( + parsed_config, # type: ignore[arg-type] + types.GenerateContentConfig, + usage="afc", ) + async with contextlib.AsyncExitStack() as stack: + # Intercept Agent Platform MCP servers and open connections + if ( + self._modules._api_client.vertexai + and _extra_utils.has_agent_platform_mcp_servers(parsed_config) + and parsed_config is not None + ): + new_tools: list[Any] = [] + if parsed_config.tools: + for tool in parsed_config.tools: + if isinstance(tool, types.Tool) and tool.mcp_servers: + # Only keep the tool if it has fields besides mcp_servers + if ( + tool.function_declarations + or tool.google_search + or tool.retrieval + or tool.google_search_retrieval + or tool.code_execution + ): + tool_copy = tool.model_copy(update={'mcp_servers': None}) + new_tools.append(tool_copy) + + for server in tool.mcp_servers: + if ( + getattr(server, 'streamable_http_transport', None) + is not None + ): + raise ValueError( + "The 'streamable_http_transport' parameter is only" + ' supported in Gemini Developer API mode, not in Gemini' + ' Enterprise Agent Platform mode.' + ) + + # Open the stream and tie its lifespan to the AsyncExitStack + if server.name is not None: + session = await stack.enter_async_context( + _mcp_utils._connect_agent_platform_mcp( + self._modules._api_client, server.name + ) + ) + new_tools.append(session) + else: + raise ValueError( + "Agent Platform MCP servers require a 'name' field." + ) + else: + new_tools.append(tool) + parsed_config.tools = new_tools + + # Convert active sessions to tools and adapters + final_parsed_config, mcp_to_genai_tool_adapters = ( + await _extra_utils.parse_config_for_mcp_sessions( + parsed_config, + is_agent_platform=getattr( + self._modules._api_client, "vertexai", False + ), + ) + ) + + remaining_remote_calls_afc = _extra_utils.get_max_remote_calls_afc( + final_parsed_config + ) + if final_parsed_config: + final_parsed_config.automatic_function_calling = ( + types.AutomaticFunctionCallingConfig( + disable=True, + ) + ) + + logger.info( + "AFC is enabled with max remote calls:" + f" {remaining_remote_calls_afc}." + ) + + function_map = _extra_utils.get_function_map( + final_parsed_config, + mcp_to_genai_tool_adapters, + is_caller_method_async=True, + ) + + i = 0 + model_output: list[types.Content] = [] + finish_reason = None + is_valid = True + + while remaining_remote_calls_afc > 0: + i += 1 + response_stream = await self._modules.generate_content_stream( + model=self._model, + contents=contents_to_model, # type: ignore[arg-type] + config=final_parsed_config, + ) + + model_output = [] + finish_reason = None + is_valid = True + func_response_parts = [] + chunk = None + + async for chunk in response_stream: + if not _validate_response(chunk): + is_valid = False + + if ( + function_map + and chunk.candidates + and chunk.candidates[0].content + and chunk.candidates[0].content.parts + ): + chunk_func_response_parts = ( + await _extra_utils.get_function_response_parts_async( + chunk, function_map + ) + ) + if chunk_func_response_parts: + func_response_parts.extend(chunk_func_response_parts) + + if chunk.candidates and chunk.candidates[0].content: + model_output.append(chunk.candidates[0].content) + if chunk.candidates and chunk.candidates[0].finish_reason: + finish_reason = chunk.candidates[0].finish_reason + yield chunk + + if not function_map or not func_response_parts: + break + + logger.info(f"AFC remote call {i} is done.") + remaining_remote_calls_afc -= 1 + if remaining_remote_calls_afc == 0: + logger.info( + "Reached max remote calls for automatic function calling." + ) + + func_response_content = types.Content( + role="user", parts=func_response_parts + ) + + contents_to_model.extend(model_output) + contents_to_model.append(func_response_content) + + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=is_valid, + ) + user_input = func_response_content + + self.record_history( + user_input=user_input, + model_output=model_output, + is_valid=bool( + is_valid + and model_output + and finish_reason is not None + ), + ) return async_generator() # type: ignore[no-untyped-call, no-any-return] diff --git a/google/genai/models.py b/google/genai/models.py index 0bcb2f436..1d8dbd8d6 100644 --- a/google/genai/models.py +++ b/google/genai/models.py @@ -6559,23 +6559,9 @@ def generate_content( model=model, contents=contents, config=parsed_config ) if incompatible_tools_indexes: - original_tools_length = 0 - if isinstance(config, types.GenerateContentConfig): - if config.tools: - original_tools_length = len(config.tools) - elif isinstance(config, dict): - tools = config.get('tools', []) - if tools: - original_tools_length = len(tools) - if len(incompatible_tools_indexes) != original_tools_length: - indices_str = ', '.join(map(str, incompatible_tools_indexes)) - logger.warning( - 'Tools at indices [%s] are not compatible with automatic function ' - 'calling (AFC). AFC is disabled. If AFC is intended, please ' - 'include python callables in the tool list, and do not include ' - 'function declaration and MCP server in the tool list.', - indices_str, - ) + _extra_utils.log_afc_incompatible_tools_warning( + config, incompatible_tools_indexes + ) return self._generate_content( model=model, contents=contents, config=parsed_config ) @@ -6732,21 +6718,9 @@ def generate_content_stream( return if incompatible_tools_indexes: - original_tools_length = 0 - if isinstance(config, types.GenerateContentConfig): - if config.tools: - original_tools_length = len(config.tools) - elif isinstance(config, dict): - tools = config.get('tools', []) - if tools: - original_tools_length = len(tools) - if len(incompatible_tools_indexes) != original_tools_length: - indices_str = ', '.join(map(str, incompatible_tools_indexes)) - logger.warning( - 'Tools at indices [%s] are not compatible with automatic function ' - 'calling. AFC will be disabled.', - indices_str, - ) + _extra_utils.log_afc_incompatible_tools_warning( + config, incompatible_tools_indexes + ) yield from self._generate_content_stream( model=model, contents=contents, config=parsed_config ) @@ -6763,8 +6737,6 @@ def generate_content_stream( f'AFC is enabled with max remote calls: {remaining_remote_calls_afc}.' ) automatic_function_calling_history: list[types.Content] = [] - chunk = None - func_response_parts = None i = 0 while remaining_remote_calls_afc > 0: parsed_config_to_call = ( @@ -6780,73 +6752,57 @@ def generate_content_stream( model=model, contents=contents, config=parsed_config_to_call ) - if i == 1: - # First request gets a function call. - # Then get function response parts. - # Yield chunks only if there's no function response parts. - for chunk in response: - if not function_map: - contents = _extra_utils.append_chunk_contents(contents, chunk) # type: ignore[assignment] - yield chunk - else: - if ( - not chunk.candidates - or not chunk.candidates[0].content - or not chunk.candidates[0].content.parts - ): - break - func_response_parts = _extra_utils.get_function_response_parts( - chunk, function_map - ) - if not func_response_parts: - contents = _extra_utils.append_chunk_contents(contents, chunk) # type: ignore[assignment] - yield chunk + model_output = [] + func_response_parts = [] + chunk = None - else: - # Second request and beyond, yield chunks. - for chunk in response: - if _extra_utils.should_append_afc_history(parsed_config): - chunk.automatic_function_calling_history = ( - automatic_function_calling_history - ) - contents = _extra_utils.append_chunk_contents(contents, chunk) # type: ignore[assignment] - yield chunk + for chunk in response: if ( - chunk is None - or not chunk.candidates - or not chunk.candidates[0].content - or not chunk.candidates[0].content.parts + _extra_utils.should_append_afc_history(parsed_config) + and automatic_function_calling_history ): - break - func_response_parts = _extra_utils.get_function_response_parts( - chunk, function_map - ) + chunk.automatic_function_calling_history = ( + automatic_function_calling_history + ) - if not function_map: - break - if not func_response_parts: + if ( + function_map + and chunk.candidates + and chunk.candidates[0].content + and chunk.candidates[0].content.parts + ): + chunk_func_response_parts = _extra_utils.get_function_response_parts( + chunk, function_map + ) + if chunk_func_response_parts: + func_response_parts.extend(chunk_func_response_parts) + + if chunk.candidates and chunk.candidates[0].content: + model_output.append(chunk.candidates[0].content) + + yield chunk + + if not function_map or not func_response_parts: break + logger.info(f'AFC remote call {i} is done.') remaining_remote_calls_afc -= 1 if remaining_remote_calls_afc == 0: logger.info('Reached max remote calls for automatic function calling.') - # Append function response parts to contents for the next request. - if chunk is not None and chunk.candidates is not None: - func_call_content = chunk.candidates[0].content - func_response_content = types.Content( - role='user', - parts=func_response_parts, - ) - contents = t.t_contents(contents) # type: ignore[assignment] - if not automatic_function_calling_history: - automatic_function_calling_history.extend(contents) # type: ignore[arg-type] - if isinstance(contents, list) and func_call_content is not None: - contents.append(func_call_content) # type: ignore[arg-type] - contents.append(func_response_content) # type: ignore[arg-type] - if func_call_content is not None: - automatic_function_calling_history.append(func_call_content) - automatic_function_calling_history.append(func_response_content) + # Append function call and function response parts to contents for the next request. + func_response_content = types.Content( + role='user', + parts=func_response_parts, + ) + contents = t.t_contents(contents) # type: ignore[assignment] + if not automatic_function_calling_history: + automatic_function_calling_history.extend(contents) # type: ignore[arg-type] + if isinstance(contents, list): + contents.extend(model_output) # type: ignore[arg-type] + contents.append(func_response_content) # type: ignore[arg-type] + automatic_function_calling_history.extend(model_output) + automatic_function_calling_history.append(func_response_content) @_common.experimental_warning( 'The generate_images method is deprecated and will be removed in the ' @@ -8768,23 +8724,9 @@ async def generate_content( ) if incompatible_tools_indexes: - original_tools_length = 0 - if isinstance(config, types.GenerateContentConfig): - if config.tools: - original_tools_length = len(config.tools) - elif isinstance(config, dict): - tools = config.get('tools', []) - if tools: - original_tools_length = len(tools) - if len(incompatible_tools_indexes) != original_tools_length: - indices_str = ', '.join(map(str, incompatible_tools_indexes)) - logger.warning( - 'Tools at indices [%s] are not compatible with automatic function' - ' calling (AFC). AFC is disabled. If AFC is intended, please' - ' include python callables in the tool list, and do not include' - ' function declaration and MCP server in the tool list.', - indices_str, - ) + _extra_utils.log_afc_incompatible_tools_warning( + config, incompatible_tools_indexes + ) return await self._generate_content( model=model, contents=contents, config=final_parsed_config ) @@ -9010,24 +8952,9 @@ async def stream_generator(): # type: ignore[no-untyped-def] return if incompatible_tools_indexes: - original_tools_length = 0 - if isinstance(config, types.GenerateContentConfig): - if config.tools: - original_tools_length = len(config.tools) - elif isinstance(config, dict): - tools = config.get('tools', []) - if tools: - original_tools_length = len(tools) - if len(incompatible_tools_indexes) != original_tools_length: - indices_str = ', '.join(map(str, incompatible_tools_indexes)) - logger.warning( - 'Tools at indices [%s] are not compatible with automatic' - ' function calling (AFC). AFC is disabled. If AFC is intended,' - ' please include python callables in the tool list, and do not' - ' include function declaration and MCP server in the tool' - ' list.', - indices_str, - ) + _extra_utils.log_afc_incompatible_tools_warning( + config, incompatible_tools_indexes + ) response = await self._generate_content_stream( model=model, contents=contents, config=final_parsed_config ) @@ -9047,8 +8974,6 @@ async def stream_generator(): # type: ignore[no-untyped-def] f' {remaining_remote_calls_afc}.' ) automatic_function_calling_history: list[types.Content] = [] - func_response_parts = None - chunk = None i = 0 loop_contents = contents @@ -9080,69 +9005,49 @@ async def stream_generator(): # type: ignore[no-untyped-def] config=final_parsed_config_to_call, ) - if i > 1: - logger.info(f'AFC remote call {i} is done.') - remaining_remote_calls_afc -= 1 - if i > 1 and remaining_remote_calls_afc == 0: - logger.info( - 'Reached max remote calls for automatic function calling.' - ) + model_output = [] + func_response_parts = [] + chunk = None - if i == 1: - async for chunk in response: # type: ignore[attr-defined] - if not function_map: - loop_contents = _extra_utils.append_chunk_contents( - loop_contents, chunk - ) - yield chunk - else: - if ( - not chunk.candidates - or not chunk.candidates[0].content - or not chunk.candidates[0].content.parts - ): - break - func_response_parts = ( - await _extra_utils.get_function_response_parts_async( - chunk, function_map - ) - ) - if not func_response_parts: - loop_contents = _extra_utils.append_chunk_contents( - loop_contents, chunk - ) - yield chunk - else: - async for chunk in response: # type: ignore[attr-defined] - if _extra_utils.should_append_afc_history(final_parsed_config): - chunk.automatic_function_calling_history = ( - automatic_function_calling_history - ) - loop_contents = _extra_utils.append_chunk_contents( - loop_contents, chunk + async for chunk in response: # type: ignore[attr-defined] + if ( + _extra_utils.should_append_afc_history(final_parsed_config) + and automatic_function_calling_history + ): + chunk.automatic_function_calling_history = ( + automatic_function_calling_history ) - yield chunk + if ( - chunk is None - or not chunk.candidates - or not chunk.candidates[0].content - or not chunk.candidates[0].content.parts + function_map + and chunk.candidates + and chunk.candidates[0].content + and chunk.candidates[0].content.parts ): - break - func_response_parts = ( - await _extra_utils.get_function_response_parts_async( - chunk, function_map - ) - ) + chunk_func_response_parts = ( + await _extra_utils.get_function_response_parts_async( + chunk, function_map + ) + ) + if chunk_func_response_parts: + func_response_parts.extend(chunk_func_response_parts) + + if chunk.candidates and chunk.candidates[0].content: + model_output.append(chunk.candidates[0].content) + + yield chunk if not function_map or not func_response_parts: break - if chunk is None: - continue + logger.info(f'AFC remote call {i} is done.') + remaining_remote_calls_afc -= 1 + if remaining_remote_calls_afc == 0: + logger.info( + 'Reached max remote calls for automatic function calling.' + ) # Append function response parts to contents for the next request. - func_call_content = chunk.candidates[0].content func_response_content = types.Content( role='user', parts=func_response_parts, @@ -9150,11 +9055,10 @@ async def stream_generator(): # type: ignore[no-untyped-def] loop_contents = t.t_contents(loop_contents) # type: ignore[assignment] if not automatic_function_calling_history: automatic_function_calling_history.extend(loop_contents) # type: ignore[arg-type] - if isinstance(loop_contents, list) and func_call_content is not None: - loop_contents.append(func_call_content) # type: ignore[arg-type] + if isinstance(loop_contents, list): + loop_contents.extend(model_output) # type: ignore[arg-type] loop_contents.append(func_response_content) # type: ignore[arg-type] - if func_call_content is not None: - automatic_function_calling_history.append(func_call_content) + automatic_function_calling_history.extend(model_output) automatic_function_calling_history.append(func_response_content) return stream_generator() # type: ignore[no-untyped-call, no-any-return] diff --git a/google/genai/tests/afc/test_generate_content_stream_afc.py b/google/genai/tests/afc/test_generate_content_stream_afc.py index b9ec0e282..0a603dd41 100644 --- a/google/genai/tests/afc/test_generate_content_stream_afc.py +++ b/google/genai/tests/afc/test_generate_content_stream_afc.py @@ -21,14 +21,6 @@ from ... import types -pytestmark = [ - pytest.mark.skipif( - "config.getoption('--private')", - reason="AFC logic in private SDK is re-written", - ), -] - - TEST_NO_AFC_PART = types.Part( text=( 'Okay, here is the weather in San Francisco' @@ -321,9 +313,12 @@ def test_generate_content_stream_with_function_tools_used( ) chunk = None + text_match = False for chunk in stream: - assert chunk.text == TEST_AFC_TEXT_PART.text + if chunk.text == TEST_AFC_TEXT_PART.text: + text_match = True + assert text_match assert mock_generate_content_stream_with_afc.call_count == 2 assert mock_get_function_response_parts.call_count == 2 @@ -354,9 +349,12 @@ def test_generate_content_stream_with_thought_summaries( ) chunk = None + text_match = False for chunk in stream: - assert chunk.text == TEST_AFC_TEXT_PART.text + if chunk.text == TEST_AFC_TEXT_PART.text: + text_match = True + assert text_match assert mock_generate_content_stream_with_afc.call_count == 2 assert mock_get_function_response_parts.call_count == 2 @@ -457,8 +455,12 @@ async def test_generate_content_stream_with_function_tools_used_async( ) chunk = None + text_match = False async for chunk in stream: - assert chunk.text == TEST_AFC_TEXT_PART.text + if chunk.text == TEST_AFC_TEXT_PART.text: + text_match = True + + assert text_match assert mock_generate_content_stream_with_afc_async.call_count == 2 @@ -489,8 +491,12 @@ async def test_generate_content_stream_with_function_async_function_used_async( ) chunk = None + text_match = False async for chunk in stream: - assert chunk.text == TEST_AFC_TEXT_PART.text + if chunk.text == TEST_AFC_TEXT_PART.text: + text_match = True + + assert text_match assert mock_generate_content_stream_with_afc_async.call_count == 2 @@ -524,8 +530,12 @@ async def test_generate_content_stream_with_thought_summaries_async( ) chunk = None + text_match = False async for chunk in stream: - assert chunk.text == TEST_AFC_TEXT_PART.text + if chunk.text == TEST_AFC_TEXT_PART.text: + text_match = True + + assert text_match assert mock_generate_content_stream_with_afc_async.call_count == 2 diff --git a/google/genai/tests/afc/test_get_function_map.py b/google/genai/tests/afc/test_get_function_map.py index 8a8bc9334..1aa05c421 100644 --- a/google/genai/tests/afc/test_get_function_map.py +++ b/google/genai/tests/afc/test_get_function_map.py @@ -78,7 +78,13 @@ def test_mcp_tool_raises_error(): if not _is_mcp_imported: return - session = McpClientSession(read_stream=None, write_stream=None) + class MockMcpClientSession(McpClientSession): + + def __init__(self): + self._read_stream = None + self._write_stream = None + + session = MockMcpClientSession() config = GenerateContentConfig(tools=[session]) mcp_to_genai_tool_adapters = {'tool': McpToGenAiToolAdapter(session, [])} with pytest.raises(UnsupportedFunctionError): diff --git a/google/genai/tests/afc/test_get_function_response_parts.py b/google/genai/tests/afc/test_get_function_response_parts.py index e80ec4493..60448ef43 100644 --- a/google/genai/tests/afc/test_get_function_response_parts.py +++ b/google/genai/tests/afc/test_get_function_response_parts.py @@ -197,25 +197,23 @@ async def call_tool(self, name: str, arguments: dict[str, Any]) -> Any: ] ) function_map = {'tool': mcp_to_genai_tool_adapter} - expected_parts = [ - Part( - function_response=FunctionResponse( - name='tool', - response={ - 'result': { - 'content': [{'type': 'text', 'text': '1.01'}], - 'isError': False, - } - }, - ) - ) - ] actual_parts = await get_function_response_parts_async(response, function_map) + actual_part = actual_parts[0] + assert actual_part.function_response.name == 'tool' + assert 'result' in actual_part.function_response.response + assert ( + actual_part.function_response.response['result'].content[0].text + == '1.01' + ) + is_error = getattr( + actual_part.function_response.response['result'], + 'isError', + getattr( + actual_part.function_response.response['result'], 'is_error', False + ), + ) + assert is_error == False - for actual_part, expected_part in zip(actual_parts, expected_parts): - assert actual_part.model_dump_json( - exclude_none=True - ) == expected_part.model_dump_json(exclude_none=True) @pytest.mark.asyncio @@ -256,22 +254,19 @@ async def call_tool(self, name: str, arguments: dict[str, Any]) -> Any: ] ) function_map = {'tool': mcp_to_genai_tool_adapter} - expected_parts = [ - Part( - function_response=FunctionResponse( - name='tool', - response={ - 'error': { - 'content': [{'type': 'text', 'text': 'Internal error'}], - 'isError': True, - } - }, - ) - ) - ] actual_parts = await get_function_response_parts_async(response, function_map) - - for actual_part, expected_part in zip(actual_parts, expected_parts): - assert actual_part.model_dump_json( - exclude_none=True - ) == expected_part.model_dump_json(exclude_none=True) + actual_part = actual_parts[0] + assert actual_part.function_response.name == 'tool' + assert 'error' in actual_part.function_response.response + assert ( + actual_part.function_response.response['error'].content[0].text + == 'Internal error' + ) + is_error = getattr( + actual_part.function_response.response['error'], + 'isError', + getattr( + actual_part.function_response.response['error'], 'is_error', False + ), + ) + assert is_error == True diff --git a/google/genai/tests/afc/test_should_disable_afc.py b/google/genai/tests/afc/test_should_disable_afc.py index bfc002972..bdd78cd42 100644 --- a/google/genai/tests/afc/test_should_disable_afc.py +++ b/google/genai/tests/afc/test_should_disable_afc.py @@ -21,13 +21,6 @@ from ... import types from ..._extra_utils import should_disable_afc -pytestmark = [ - pytest.mark.skipif( - "config.getoption('--private')", - reason="AFC re-written for private SDK", - ), -] - def test_config_is_none(): assert should_disable_afc(None) is False diff --git a/google/genai/tests/chats/test_get_history.py b/google/genai/tests/chats/test_get_history.py index df2ae53d9..37d5eacac 100644 --- a/google/genai/tests/chats/test_get_history.py +++ b/google/genai/tests/chats/test_get_history.py @@ -115,47 +115,6 @@ def mock_generate_content_stream_empty_content(): yield mock_generate_content -@pytest.fixture -def mock_generate_content_afc_history(): - with mock.patch.object( - models.Models, 'generate_content' - ) as mock_generate_content: - mock_generate_content.return_value = types.GenerateContentResponse( - candidates=[ - types.Candidate( - content=types.Content( - role='model', - parts=[types.Part.from_text(text='afc output')], - ) - ) - ], - automatic_function_calling_history=AFC_HISTORY, - ) - yield mock_generate_content - - -@pytest.fixture -def mock_generate_content_stream_afc_history(): - with mock.patch.object( - models.Models, 'generate_content_stream' - ) as mock_generate_content: - mock_generate_content.return_value = [ - types.GenerateContentResponse( - candidates=[ - types.Candidate( - content=types.Content( - role='model', - parts=[types.Part.from_text(text='afc output')], - ), - finish_reason=types.FinishReason.STOP, - ) - ], - automatic_function_calling_history=AFC_HISTORY, - ) - ] - yield mock_generate_content - - def test_history_start_with_valid_model_content(): history = [ types.Content( @@ -560,47 +519,3 @@ def test_chat_stream_with_empty_content( ] assert chat.get_history() == expected_comprehensive_history assert not chat.get_history(curated=True) - - -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC logic in private is re-written', -) -def test_chat_with_afc_history(mock_generate_content_afc_history): - models_module = models.Models(mock_api_client) - chats_module = chats.Chats(modules=models_module) - chat = chats_module.create(model='gemini-2.5-flash') - - chat.send_message('Hello') - - expected_history = AFC_HISTORY + [ - types.Content( - role='model', - parts=[types.Part.from_text(text='afc output')], - ), - ] - assert chat.get_history() == expected_history - assert chat.get_history(curated=True) == expected_history - - -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC logic in private is re-written', -) -def test_chat_stream_with_afc_history(mock_generate_content_stream_afc_history): - models_module = models.Models(mock_api_client) - chats_module = chats.Chats(modules=models_module) - chat = chats_module.create(model='gemini-2.5-flash') - - chunks = chat.send_message_stream('Hello') - for chunk in chunks: - pass - - expected_history = AFC_HISTORY + [ - types.Content( - role='model', - parts=[types.Part.from_text(text='afc output')], - ), - ] - assert chat.get_history() == expected_history - assert chat.get_history(curated=True) == expected_history diff --git a/google/genai/tests/chats/test_send_message.py b/google/genai/tests/chats/test_send_message.py index 0ec0f90b3..94d451582 100644 --- a/google/genai/tests/chats/test_send_message.py +++ b/google/genai/tests/chats/test_send_message.py @@ -45,10 +45,6 @@ file=__file__, globals_for_file=globals(), ), - pytest.mark.skipif( - "config.getoption('--private')", - reason="AFC re-written for private SDK", - ), ] pytest_plugins = ('pytest_asyncio',) diff --git a/google/genai/tests/models/test_function_call_streaming.py b/google/genai/tests/models/test_function_call_streaming.py index fbc3ec914..6fe15f621 100644 --- a/google/genai/tests/models/test_function_call_streaming.py +++ b/google/genai/tests/models/test_function_call_streaming.py @@ -149,10 +149,6 @@ ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='in private it was not able to find the replay file', -) def test_streaming_with_python_native_no_afc_config(client): """Tests streaming function calls with native python AFC without disabling AFC.""" if not client.vertexai: @@ -178,10 +174,6 @@ def test_streaming_with_python_native_no_afc_config(client): assert 'not compatible with automatic function calling (AFC)' in str(e.value) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='in private it was not able to find the replay file', -) def test_streaming_with_python_afc_disabled_false(client): """Tests streaming function calls with native python AFC without disabling AFC.""" if not client.vertexai: diff --git a/google/genai/tests/models/test_generate_content.py b/google/genai/tests/models/test_generate_content.py index ae64eb89f..38f35120a 100644 --- a/google/genai/tests/models/test_generate_content.py +++ b/google/genai/tests/models/test_generate_content.py @@ -2196,10 +2196,6 @@ class Foo(BaseModel): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_function(client): def get_weather(city: str) -> str: """Returns the weather in a city.""" diff --git a/google/genai/tests/models/test_generate_content_mcp.py b/google/genai/tests/models/test_generate_content_mcp.py index 7e3f0a219..87f959e34 100644 --- a/google/genai/tests/models/test_generate_content_mcp.py +++ b/google/genai/tests/models/test_generate_content_mcp.py @@ -13,6 +13,7 @@ # limitations under the License. # +import sys from typing import Any import pytest from ... import _transformers as t @@ -24,8 +25,6 @@ from mcp import types as mcp_types from mcp import ClientSession as McpClientSession except ImportError as e: - import sys - if sys.version_info < (3, 10): raise ImportError( 'MCP Tool requires Python 3.10 or above. Please upgrade your Python' @@ -105,9 +104,8 @@ async def test_mcp_tools_with_custom_headers_async(client): } -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', +@pytest.mark.skip( + reason='pydantic serialization inconsistant issue', ) @pytest.mark.asyncio async def test_mcp_tools_subsequent_calls_async(client): @@ -161,14 +159,14 @@ async def call_tool( } response = await client.aio.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.5-flash', contents=t.t_contents('What is the weather in Boston?'), config=config, ) assert 'sunny' in response.text.lower() response_2 = await client.aio.models.generate_content( - model='gemini-2.5-flash', + model='gemini-3.5-flash', contents=t.t_contents('What is 50 + 50?'), config=config, ) diff --git a/google/genai/tests/models/test_generate_content_tools.py b/google/genai/tests/models/test_generate_content_tools.py index f9f0f30da..89ecb9cc2 100644 --- a/google/genai/tests/models/test_generate_content_tools.py +++ b/google/genai/tests/models/test_generate_content_tools.py @@ -530,6 +530,10 @@ def divide_floats(a: float, b: float) -> float: }, ), exception_if_vertex='only supported in Gemini Developer API mode', + skip_in_private=( + 'disabled_safety_policies parameter is supported on Vertex AI in' + ' Private SDK' + ), ), pytest_helper.TestTableItem( name='test_computer_use_multi_turn', @@ -701,6 +705,10 @@ def divide_floats(a: float, b: float) -> float: exception_if_vertex=( 'parameter is only supported in Gemini Developer API mode' ), + skip_in_private=( + 'include_server_side_tool_invocations parameter is supported on' + ' Vertex AI in Private SDK' + ), ), pytest_helper.TestTableItem( name='test_include_server_side_tool_invocations_with_tool_call_echo', @@ -774,10 +782,6 @@ def divide_floats(a: float, b: float) -> float: test_method='models.generate_content', test_table=test_table, ), - pytest.mark.skipif( - "config.getoption('--private')", - reason='ComputerUse on Vertex API behaves differently between public and private modules.', - ), ] pytest_plugins = ('pytest_asyncio',) @@ -805,6 +809,10 @@ def test_function_google_search(client): ) +@pytest.mark.skipif( + "config.getoption('--private')", + reason="include_server_side_tool_invocations is supported on Vertex AI in Private SDK", +) def test_function_google_search_server_side_tool_invocations(client): contents = ( 'What is the weather in Buenos Aires? If it is raining, schedule a' @@ -840,6 +848,10 @@ def test_function_google_search_server_side_tool_invocations(client): ) +@pytest.mark.skipif( + "config.getoption('--private')", + reason="include_server_side_tool_invocations is supported on Vertex AI in Private SDK", +) def test_function_google_search_server_side_tool_invocations_one_tool(client): contents = ( 'What is the weather in Buenos Aires? If it is raining, schedule a' @@ -905,10 +917,6 @@ def test_function_calling_without_implementation(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_2_function(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -922,11 +930,6 @@ def test_2_function(client): assert 'Boston' in response.text assert 'sunny' in response.text - -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) @pytest.mark.asyncio async def test_2_function_async(client): response = await client.aio.models.generate_content( @@ -941,10 +944,6 @@ async def test_2_function_async(client): assert 'Boston' in response.text assert 'sunny' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_customized_math_rule(client): def customized_divide_integers(numerator: int, denominator: int) -> int: """Divide two integers with customized math rule.""" @@ -960,10 +959,6 @@ def customized_divide_integers(numerator: int, denominator: int) -> int: assert '501' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling(client): response = client.models.generate_content( model='gemini-3.1-pro-preview', @@ -977,10 +972,6 @@ def test_automatic_function_calling(client): assert '500' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) @pytest.mark.asyncio async def test_automatic_function_calling_with_async_function(client): response = await client.aio.models.generate_content( @@ -1092,10 +1083,6 @@ async def test_automatic_function_calling_stream_async(client): assert chunk.text is not None or chunk.candidates[0].finish_reason -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_disable_afc(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1110,10 +1097,6 @@ def test_callable_tools_user_disable_afc(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_disable_afc_with_max_remote_calls(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1128,10 +1111,6 @@ def test_callable_tools_user_disable_afc_with_max_remote_calls(client): }, ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_disable_afc_with_max_remote_calls_negative( client, ): @@ -1149,10 +1128,6 @@ def test_callable_tools_user_disable_afc_with_max_remote_calls_negative( ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_disable_afc_with_max_remote_calls_zero(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1167,10 +1142,6 @@ def test_callable_tools_user_disable_afc_with_max_remote_calls_zero(client): }, ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_enable_afc(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1185,10 +1156,6 @@ def test_callable_tools_user_enable_afc(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_enable_afc_with_max_remote_calls(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1204,10 +1171,6 @@ def test_callable_tools_user_enable_afc_with_max_remote_calls(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_enable_afc_with_max_remote_calls_negative( client, ): @@ -1225,10 +1188,6 @@ def test_callable_tools_user_enable_afc_with_max_remote_calls_negative( ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_callable_tools_user_enable_afc_with_max_remote_calls_zero(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1244,10 +1203,6 @@ def test_callable_tools_user_enable_afc_with_max_remote_calls_zero(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_exception(client): client.models.generate_content( model='gemini-2.5-flash', @@ -1258,10 +1213,6 @@ def test_automatic_function_calling_with_exception(client): }, ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_float_without_decimal(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1275,10 +1226,6 @@ def test_automatic_function_calling_float_without_decimal(client): assert '500.0' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_pydantic_model(client): class CityObject(pydantic.BaseModel): city_name: str @@ -1302,10 +1249,6 @@ def get_weather_pydantic_model( assert 'cold' in response.text and 'Boston' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_pydantic_model_in_list_type(client): class CityObject(pydantic.BaseModel): city_name: str @@ -1341,10 +1284,7 @@ def get_weather_from_list_of_cities( @pytest.mark.skip( - reason=( - 'AFC is in progress of refactoring, this test is failing python 3.14' - ' b/512415555 will update once refactoring from yyyu@ is done' - ), + reason='pydantic serialization is flaky' ) def test_automatic_function_calling_with_pydantic_model_in_union_type(client): class AnimalObject(pydantic.BaseModel): @@ -1374,29 +1314,24 @@ def get_information( else: return 'The animal is not supported' - with pytest_helper.exception_if_vertex(client, errors.ClientError): - response = client.models.generate_content( - model='gemini-2.5-flash', - contents=( - 'I have a one year old cat named Sundae, can you get the' - ' information of the cat for me?' - ), - config={ - 'system_instruction': ( - 'you answer questions based on the tools provided' - ), - 'tools': [get_information], - 'automatic_function_calling': {'ignore_call_history': True}, - }, - ) - assert 'Sundae' in response.text - assert 'cat' in response.text + response = client.models.generate_content( + model='gemini-3.5-flash', + contents=( + 'I have a one year old cat named Sundae, can you get the' + ' information of the cat for me?' + ), + config={ + 'system_instruction': ( + 'you answer questions based on the tools provided' + ), + 'tools': [get_information], + 'automatic_function_calling': {'ignore_call_history': True}, + }, + ) + assert 'Sundae' in response.text + assert 'cat' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_union_operator(client): class AnimalObject(pydantic.BaseModel): name: str @@ -1428,10 +1363,6 @@ def get_information( assert response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_tuple_param(client): def output_latlng( latlng: tuple[float, float], @@ -1455,10 +1386,6 @@ def output_latlng( sys.version_info < (3, 10), reason='| is only supported in Python 3.10 and above.', ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_union_operator_return_type(client): def get_cheese_age(cheese: int) -> int | float: """ @@ -1488,10 +1415,6 @@ def get_cheese_age(cheese: int) -> int | float: assert '3' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_parameterized_generic_union_type( client, ): @@ -1539,10 +1462,6 @@ def test_empty_tools(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_with_1_empty_tool(client): # Bad request for empty tool. with pytest_helper.exception_if_vertex(client, errors.ClientError): @@ -1606,10 +1525,6 @@ async def test_vai_search_stream_async(client): assert 'retrieval' in str(e) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_automatic_function_calling_with_coroutine_function(client): async def divide_integers(a: int, b: int) -> int: return a // b @@ -1625,10 +1540,6 @@ async def divide_integers(a: int, b: int) -> int: ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) @pytest.mark.asyncio async def test_automatic_function_calling_with_coroutine_function_async( client, @@ -1648,10 +1559,6 @@ async def divide_integers(a: int, b: int) -> int: assert '500' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', -) @pytest.mark.asyncio async def test_automatic_function_calling_async(client): def divide_integers(a: int, b: int) -> int: @@ -1669,10 +1576,6 @@ def divide_integers(a: int, b: int) -> int: assert '500' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', -) @pytest.mark.asyncio async def test_automatic_function_calling_async_with_exception(client): def mystery_function(a: int, b: int) -> int: @@ -1696,10 +1599,6 @@ def mystery_function(a: int, b: int) -> int: ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', -) @pytest.mark.asyncio async def test_automatic_function_calling_async_with_pydantic_model(client): class CityObject(pydantic.BaseModel): @@ -1725,10 +1624,6 @@ def get_weather_pydantic_model( assert 'cold' in response.text and 'Boston' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', -) @pytest.mark.asyncio async def test_automatic_function_calling_async_with_async_function(client): async def get_current_weather_async(city: str) -> str: @@ -1774,10 +1669,6 @@ async def get_current_weather_async(city: str) -> str: assert chunk.parts[0].function_call.args['city'] == 'San Francisco' -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_2_function_with_history(client): response = client.models.generate_content( model='gemini-2.5-flash', @@ -1832,10 +1723,6 @@ def test_2_function_with_history(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC by default is disabled in private models.py', -) @pytest.mark.asyncio async def test_2_function_with_history_async(client): response = await client.aio.models.generate_content( @@ -1901,10 +1788,6 @@ def is_a_rabbit(self, number: int) -> str: return self.NAME + 'says isEven: ' + str(number % 2 == 0) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_class_method_tools(client): # This test is to make sure that instance method tools can be used in # the generate_content request. @@ -1923,10 +1806,6 @@ def test_class_method_tools(client): assert 'FunctionHolder' in response.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_disable_afc_in_any_mode(client): response = client.models.generate_content( model='gemini-3.1-pro-preview', @@ -1943,10 +1822,6 @@ def test_disable_afc_in_any_mode(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_afc_once_in_any_mode(client): response = client.models.generate_content( model='gemini-3.1-pro-preview', @@ -1982,10 +1857,6 @@ def test_code_execution_tool(client): ) -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_afc_logs_to_logger_instance(client, caplog): caplog.set_level(logging.DEBUG, logger='google_genai.models') client.models.generate_content( @@ -2009,10 +1880,6 @@ def test_afc_logs_to_logger_instance(client, caplog): assert 'Reached max remote calls' in caplog.text -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_suppress_logs_with_sdk_logger(client, caplog): caplog.set_level(logging.DEBUG, logger='google_genai.models') sdk_logger = logging.getLogger('google_genai.models') @@ -2058,10 +1925,6 @@ def test_tools_chat_curation(client, caplog): assert len(history) == 4 -@pytest.mark.skipif( - 'config.getoption("--private")', - reason='AFC removed from private models.py', -) def test_function_declaration_with_callable(client): response = client.models.generate_content( model='gemini-2.5-pro', @@ -2369,3 +2232,34 @@ async def mock_stream_2(*args, **kwargs): assert '2 endpoints' in final_text mock_connect_mcp.assert_called_once_with(client._api_client, 'endpoints') assert mock_generate_stream.call_count == 2 + + +def test_stream_afc_thoughts(client): + def add_numbers(a: float, b: float) -> float: + """Adds two numbers and returns the sum.""" + return a + b + received_chunks = [] + function_calls = [] + text_chunks = [] + response_stream = client.models.generate_content_stream( + model='gemini-3.5-flash', + contents=( + 'Calculate the sum of 1234567.89 and 9876543.21. Use the add_numbers' + ' tool.' + ), + config=types.GenerateContentConfig( + tools=[add_numbers], + thinking_config=types.ThinkingConfig(include_thoughts=True), + ), + ) + for chunk in response_stream: + received_chunks.append(chunk) + if chunk.function_calls: + function_calls.extend(chunk.function_calls) + if chunk.text and '.1.' in chunk.text: + text_chunks.append(chunk.text) + + assert len(function_calls) == 1 + assert function_calls[0].name == 'add_numbers' + assert function_calls[0].args == {'a': 1234567.89, 'b': 9876543.21} + assert len(text_chunks) == 1 diff --git a/google/genai/tests/private/__init__.py b/google/genai/tests/private/__init__.py deleted file mode 100644 index 5d5d078c2..000000000 --- a/google/genai/tests/private/__init__.py +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -"""Tests for the Google GenAI SDK's private module.""" diff --git a/google/genai/tests/private/test_send_message_private.py b/google/genai/tests/private/test_send_message_private.py deleted file mode 100644 index 768d1dada..000000000 --- a/google/genai/tests/private/test_send_message_private.py +++ /dev/null @@ -1,250 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -"""Replay tests for private chats.send_message().""" - -import pytest - -from .. import pytest_helper -from ...errors import ClientError -from ..models import test_generate_content_tools -from ...types import Content -from ...types import FunctionCall -from ...types import FunctionResponse -from ...types import Part - - -pytestmark = [ - pytest_helper.setup( - file=__file__, - globals_for_file=globals(), - ), - pytest.mark.skipif( - "not config.getoption('--private')", - reason="This test file is only intended for the private SDK", - ), -] - - -MODEL_NAME = 'gemini-3.1-pro-preview' -get_weather = test_generate_content_tools.get_weather -get_stock_price = test_generate_content_tools.get_stock_price - - -def test_send_message_function_tool_afc_disabled(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - }, - ) - chat.send_message('What is the weather in Boston?') - history = chat.get_history() - assert len(history) == 2 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert len(history[1].parts) == 1 - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - - -def test_send_message_function_tool_afc_enabled(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - 'automatic_function_calling': {'enable': True}, - }, - ) - chat.send_message('What is the weather in Boston?') - history = chat.get_history() - assert len(history) == 4 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - assert history[2].role == 'user' - assert history[2].parts[0].function_response.name == 'get_weather' - assert history[3].role == 'model' - assert 'sunny' in history[3].parts[0].text.lower() - - -def test_send_message_function_tool_afc_enabled_multi_turn(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather, get_stock_price], - 'automatic_function_calling': {'enable': True}, - }, - ) - chat.send_message('What is the weather in Boston?') - history = chat.get_history() - assert len(history) == 4 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - assert history[2].role == 'user' - assert history[2].parts[0].function_response.name == 'get_weather' - assert history[3].role == 'model' - assert 'sunny' in history[3].parts[0].text.lower() - - chat.send_message('What is the stock price of symbol GOOG?') - history = chat.get_history() - assert len(history) == 8 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - assert history[2].role == 'user' - assert history[2].parts[0].function_response.name == 'get_weather' - assert history[3].role == 'model' - assert 'sunny' in history[3].parts[0].text.lower() - assert history[4].role == 'user' - assert history[4].parts[0].text == 'What is the stock price of symbol GOOG?' - assert history[5].role == 'model' - assert history[5].parts[0].function_call.name == 'get_stock_price' - assert history[5].parts[0].function_call.args == {'symbol': 'GOOG'} - assert history[6].role == 'user' - assert history[6].parts[0].function_response.name == 'get_stock_price' - assert history[7].role == 'model' - assert '1000' in history[7].parts[0].text - - -def test_send_message_multi_turn_afc_enabled_FC_FR_parts(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather, get_stock_price], - 'automatic_function_calling': {'enable': True}, - }, - history=[ - Content( - role='user', - parts=[Part(text='What is the weather in Boston?')], - ), - Content( - role='model', - parts=[ - Part( - function_call=FunctionCall( - name='get_weather', - args={'city': 'Boston'}, - ), - ), - Part( - function_response=FunctionResponse( - name='get_weather', - response={'weather': 'sunny and 80 degrees'}, - ), - ), - Part(text='The weather is sunny.'), - ], - ), - ] - ) - with pytest_helper.exception_if_vertex(client, ClientError): - chat.send_message('What is the stock price of symbol GOOG?') - - -@pytest.mark.asyncio -async def test_async_send_message_function_tool_afc_disabled(client): - chat = client.aio.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - }, - ) - await chat.send_message('What is the weather in Boston?') - history = chat.get_history() - assert len(history) == 2 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert len(history[1].parts) == 1 - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - - -@pytest.mark.asyncio -async def test_async_send_message_function_tool_afc_enabled(client): - chat = client.aio.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - 'automatic_function_calling': {'enable': True}, - }, - ) - await chat.send_message('What is the weather in Boston?') - history = chat.get_history() - assert len(history) == 4 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - assert history[2].role == 'user' - assert history[2].parts[0].function_response.name == 'get_weather' - assert history[3].role == 'model' - assert 'sunny' in history[3].parts[0].text.lower() - - -@pytest.mark.asyncio -async def test_async_send_message_function_tool_afc_enabled_multi_turn(client): - chat = client.aio.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather, get_stock_price], - 'automatic_function_calling': {'enable': True}, - }, - ) - await chat.send_message('What is the weather in Boston?') - history = chat.get_history() - assert len(history) == 4 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - assert history[2].role == 'user' - assert history[2].parts[0].function_response.name == 'get_weather' - assert history[3].role == 'model' - assert 'sunny' in history[3].parts[0].text.lower() - - await chat.send_message('What is the stock price of symbol GOOG?') - history = chat.get_history() - assert len(history) == 8 - assert history[0].role == 'user' - assert history[0].parts[0].text == 'What is the weather in Boston?' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[1].parts[0].function_call.args == {'city': 'Boston'} - assert history[2].role == 'user' - assert history[2].parts[0].function_response.name == 'get_weather' - assert history[3].role == 'model' - assert 'sunny' in history[3].parts[0].text.lower() - assert history[4].role == 'user' - assert history[4].parts[0].text == 'What is the stock price of symbol GOOG?' - assert history[5].role == 'model' - assert history[5].parts[0].function_call.name == 'get_stock_price' - assert history[5].parts[0].function_call.args == {'symbol': 'GOOG'} - assert history[6].role == 'user' - assert history[6].parts[0].function_response.name == 'get_stock_price' - assert history[7].role == 'model' - assert '1000' in history[7].parts[0].text diff --git a/google/genai/tests/private/test_send_message_stream_private.py b/google/genai/tests/private/test_send_message_stream_private.py deleted file mode 100644 index 5743e6704..000000000 --- a/google/genai/tests/private/test_send_message_stream_private.py +++ /dev/null @@ -1,273 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -"""Tests for private send_message_stream.""" - -import pytest - -from .. import pytest_helper -from ..models import test_generate_content_tools - - -pytestmark = [ - pytest_helper.setup( - file=__file__, - globals_for_file=globals(), - ), - pytest.mark.skipif( - "not config.getoption('--private')", - reason="This test file is only intended for the private SDK", - ), -] - - -MODEL_NAME = 'gemini-3.1-pro-preview' -get_weather = test_generate_content_tools.get_weather -get_stock_price = test_generate_content_tools.get_stock_price - - -def test_send_message_stream_function_tool_afc_disabled(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - }, - ) - for chunk in chat.send_message_stream('What is the weather in Boston?'): - pass - history = chat.get_history() - assert len(history) == 3 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - - -def test_send_message_stream_function_tool_afc_enabled(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - 'automatic_function_calling': {'enable': True}, - }, - ) - for chunk in chat.send_message_stream('What is the weather in Boston?'): - pass - history = chat.get_history() - assert len(history) == 6 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - assert history[3].role == 'user' - assert history[3].parts[0].function_response.name == 'get_weather' - assert history[4].role == 'model' - assert 'Boston' in history[4].parts[0].text - assert history[5].role == 'model' - assert history[5].parts[0].text == '' - - -def test_send_message_stream_function_tool_afc_enabled_multi_turn(client): - chat = client.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather, get_stock_price], - 'automatic_function_calling': {'enable': True}, - }, - ) - for chunk in chat.send_message_stream('What is the weather in Boston?'): - pass - history = chat.get_history() - - if client.vertexai: - assert len(history) == 7 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - assert history[3].role == 'user' - assert history[3].parts[0].function_response.name == 'get_weather' - assert history[4].role == 'model' - assert 'Boston' in history[4].parts[0].text - assert history[5].role == 'model' - assert '100' in history[5].parts[0].text - assert history[6].role == 'model' - assert history[6].parts[0].text == '' - else: - assert len(history) == 6 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - assert history[3].role == 'user' - assert history[3].parts[0].function_response.name == 'get_weather' - assert history[4].role == 'model' - assert 'Boston' in history[4].parts[0].text - assert history[5].role == 'model' - - for chunk in chat.send_message_stream('What is the stock price of symbol GOOG?'): - pass - history = chat.get_history() - - if client.vertexai: - assert len(history) == 14 - assert history[7].role == 'user' - assert history[8].role == 'model' - assert history[8].parts[0].function_call.name == 'get_stock_price' - assert history[9].role == 'model' - assert history[9].parts[0].text == '' - assert history[10].role == 'user' - assert history[10].parts[0].function_response.name == 'get_stock_price' - assert history[11].role == 'model' - assert 'GOOG' in history[11].parts[0].text - assert history[12].role == 'model' - assert '1000' in history[12].parts[0].text - assert history[13].role == 'model' - assert history[13].parts[0].text == '' - else: - assert len(history) == 13 - assert history[6].role == 'user' - assert history[7].role == 'model' - assert history[7].parts[0].function_call.name == 'get_stock_price' - assert history[8].role == 'model' - assert history[8].parts[0].text == '' - assert history[9].role == 'user' - assert history[9].parts[0].function_response.name == 'get_stock_price' - assert history[10].role == 'model' - assert 'GOOG' in history[10].parts[0].text - assert history[11].role == 'model' - assert '1000' in history[11].parts[0].text - assert history[12].role == 'model' - assert history[12].parts[0].text == '' - - -@pytest.mark.asyncio -async def test_async_send_message_stream_function_tool_afc_disabled(client): - chat = client.aio.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - }, - ) - async for chunk in await chat.send_message_stream( - 'What is the weather in Boston?' - ): - pass - history = chat.get_history() - assert len(history) == 3 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - - -@pytest.mark.asyncio -async def test_async_send_message_stream_function_tool_afc_enabled(client): - chat = client.aio.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather], - 'automatic_function_calling': {'enable': True}, - }, - ) - async for chunk in await chat.send_message_stream( - 'What is the weather in Boston?' - ): - pass - history = chat.get_history() - if client.vertexai: - assert len(history) == 6 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - assert history[3].role == 'user' - assert history[3].parts[0].function_response.name == 'get_weather' - assert history[4].role == 'model' - assert 'Boston' in history[4].parts[0].text - assert history[5].parts[0].text == '' - else: - assert len(history) == 7 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - assert history[3].role == 'user' - assert history[3].parts[0].function_response.name == 'get_weather' - assert history[4].role == 'model' - assert 'Boston' in history[4].parts[0].text - assert history[5].role == 'model' - assert 'degrees' in history[5].parts[0].text - assert history[6].role == 'model' - assert history[6].parts[0].text == '' - - -@pytest.mark.asyncio -async def test_async_send_message_stream_function_tool_afc_enabled_multi_turn( - client, -): - chat = client.aio.chats.create( - model=MODEL_NAME, - config={ - 'tools': [get_weather, get_stock_price], - 'automatic_function_calling': {'enable': True}, - }, - ) - async for _ in await chat.send_message_stream( - 'What is the weather in Boston?' - ): - pass - history = chat.get_history() - - assert len(history) == 6 - assert history[0].role == 'user' - assert history[1].role == 'model' - assert history[1].parts[0].function_call.name == 'get_weather' - assert history[2].role == 'model' - assert history[2].parts[0].text == '' - assert history[3].role == 'user' - assert history[3].parts[0].function_response.name == 'get_weather' - assert history[4].role == 'model' - assert 'Boston' in history[4].parts[0].text - assert history[5].role == 'model' - assert history[5].parts[0].text == '' - - async for _ in await chat.send_message_stream( - 'What is the stock price of symbol GOOG?' - ): - pass - history = chat.get_history() - - assert len(history) == 13 - assert history[6].role == 'user' - assert history[7].role == 'model' - assert history[7].parts[0].function_call.name == 'get_stock_price' - assert history[8].role == 'model' - assert history[8].parts[0].text == '' - assert history[9].role == 'user' - assert history[9].parts[0].function_response.name == 'get_stock_price' - assert history[10].role == 'model' - assert 'stock' in history[10].parts[0].text - assert history[11].role == 'model' - assert '1000' in history[11].parts[0].text - assert history[12].role == 'model' - assert history[12].parts[0].text == '' diff --git a/google/genai/tests/pytest_helper.py b/google/genai/tests/pytest_helper.py index f22f1e8bb..dd8797e85 100644 --- a/google/genai/tests/pytest_helper.py +++ b/google/genai/tests/pytest_helper.py @@ -38,6 +38,10 @@ class TestTableItem(types.TestTableItem): parameters: SerializeAsAny[BaseModel] = Field( description="""The parameters to the test. Use pydantic models.""", ) + skip_in_private: Optional[str] = Field( + default=None, + description="""When set to a reason string, this test will be skipped in private SDK mode.""", + ) def base_test_function( @@ -48,6 +52,11 @@ def base_test_function( test_table_item: TestTableItem, globals_for_file: dict[str, Any], ): + if ( + getattr(client._api_client, '_private', False) + and test_table_item.skip_in_private + ): + pytest.skip(test_table_item.skip_in_private) replay_id = ( test_table_item.override_replay_id if test_table_item.override_replay_id diff --git a/google/genai/types.py b/google/genai/types.py index 5b2a1280a..78266988b 100644 --- a/google/genai/types.py +++ b/google/genai/types.py @@ -2011,7 +2011,10 @@ def from_mcp_response( ' imported.' ) - if getattr(response, 'is_error', getattr(response, 'isError', False)): + is_error = getattr( + response, 'isError', getattr(response, 'is_error', False) + ) + if is_error: return cls(name=name, response={'error': 'MCP response is error.'}) else: return cls(name=name, response={'result': response.content}) From cc0d42e84583ed927b6c0dfae38da7f5f544b2da Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Wed, 12 Aug 2026 16:37:31 -0700 Subject: [PATCH 18/19] feat: Make speech_config a structured object. PiperOrigin-RevId: 963727286 --- .../_gaos/types/interactions/__init__.py | 11 ++++ .../types/interactions/generationconfig.py | 25 ++++++--- .../_gaos/types/interactions/speakerconfig.py | 54 +++++++++++++++++++ 3 files changed, 84 insertions(+), 6 deletions(-) create mode 100644 google/genai/_gaos/types/interactions/speakerconfig.py diff --git a/google/genai/_gaos/types/interactions/__init__.py b/google/genai/_gaos/types/interactions/__init__.py index 3ba034039..2dbba7047 100644 --- a/google/genai/_gaos/types/interactions/__init__.py +++ b/google/genai/_gaos/types/interactions/__init__.py @@ -162,6 +162,8 @@ from .generationconfig import ( GenerationConfig, GenerationConfigParam, + SpeechConfigUnion, + SpeechConfigUnionParam, ToolChoice, ToolChoiceParam, ) @@ -325,6 +327,7 @@ from .servicetier import ServiceTier from .sessionconfig import SessionConfig, SessionConfigParam from .source import Source, SourceParam, SourceType + from .speakerconfig import SpeakerConfig, SpeakerConfigParam from .speechconfig import SpeechConfig, SpeechConfigParam from .staticmediaprocessing import StaticMediaProcessing, StaticMediaProcessingParam from .status import Status, StatusParam @@ -676,8 +679,12 @@ "Source", "SourceParam", "SourceType", + "SpeakerConfig", + "SpeakerConfigParam", "SpeechConfig", "SpeechConfigParam", + "SpeechConfigUnion", + "SpeechConfigUnionParam", "StaticMediaProcessing", "StaticMediaProcessingParam", "Status", @@ -915,6 +922,8 @@ "UnknownFunctionResultSubcontent": ".functionresultsubcontent", "GenerationConfig": ".generationconfig", "GenerationConfigParam": ".generationconfig", + "SpeechConfigUnion": ".generationconfig", + "SpeechConfigUnionParam": ".generationconfig", "ToolChoice": ".generationconfig", "ToolChoiceParam": ".generationconfig", "GoogleMaps": ".googlemaps", @@ -1061,6 +1070,8 @@ "Source": ".source", "SourceParam": ".source", "SourceType": ".source", + "SpeakerConfig": ".speakerconfig", + "SpeakerConfigParam": ".speakerconfig", "SpeechConfig": ".speechconfig", "SpeechConfigParam": ".speechconfig", "StaticMediaProcessing": ".staticmediaprocessing", diff --git a/google/genai/_gaos/types/interactions/generationconfig.py b/google/genai/_gaos/types/interactions/generationconfig.py index ca3ebaa9f..55dc1885c 100644 --- a/google/genai/_gaos/types/interactions/generationconfig.py +++ b/google/genai/_gaos/types/interactions/generationconfig.py @@ -19,6 +19,7 @@ from __future__ import annotations from .. import BaseModel, UNSET_SENTINEL from .imageconfig import ImageConfig, ImageConfigParam +from .speakerconfig import SpeakerConfig, SpeakerConfigParam from .speechconfig import SpeechConfig, SpeechConfigParam from .thinkinglevel import ThinkingLevel from .thinkingsummaries import ThinkingSummaries @@ -42,6 +43,18 @@ r"""The tool choice configuration.""" +SpeechConfigUnionParam = TypeAliasType( + "SpeechConfigUnionParam", Union[SpeakerConfigParam, List[SpeechConfigParam]] +) +r"""Optional. Speech and multi-speaker configuration.""" + + +SpeechConfigUnion = TypeAliasType( + "SpeechConfigUnion", Union[SpeakerConfig, List[SpeechConfig]] +) +r"""Optional. Speech and multi-speaker configuration.""" + + class GenerationConfigParam(TypedDict): r"""Configuration parameters for model interactions.""" @@ -51,8 +64,6 @@ class GenerationConfigParam(TypedDict): r"""The maximum number of tokens to include in the response.""" seed: NotRequired[int] r"""Seed used in decoding for reproducibility.""" - speech_config: NotRequired[List[SpeechConfigParam]] - r"""Configuration for speech interaction.""" stop_sequences: NotRequired[List[str]] r"""A list of character sequences that will stop output interaction.""" thinking_level: NotRequired[ThinkingLevel] @@ -63,6 +74,8 @@ class GenerationConfigParam(TypedDict): r"""Configuration for speech recognition (transcription).""" video_config: NotRequired[VideoConfigParam] r"""Configuration options for video generation.""" + speech_config: NotRequired[SpeechConfigUnionParam] + r"""Optional. Speech and multi-speaker configuration.""" class GenerationConfig(BaseModel): @@ -82,9 +95,6 @@ class GenerationConfig(BaseModel): seed: Optional[int] = None r"""Seed used in decoding for reproducibility.""" - speech_config: Optional[List[SpeechConfig]] = None - r"""Configuration for speech interaction.""" - stop_sequences: Optional[List[str]] = None r"""A list of character sequences that will stop output interaction.""" @@ -101,6 +111,9 @@ class GenerationConfig(BaseModel): video_config: Optional[VideoConfig] = None r"""Configuration options for video generation.""" + speech_config: Optional[SpeechConfigUnion] = None + r"""Optional. Speech and multi-speaker configuration.""" + @model_serializer(mode="wrap") def serialize_model(self, handler): optional_fields = set( @@ -108,13 +121,13 @@ def serialize_model(self, handler): "image_config", "max_output_tokens", "seed", - "speech_config", "stop_sequences", "thinking_level", "thinking_summaries", "tool_choice", "transcription_config", "video_config", + "speech_config", ] ) serialized = handler(self) diff --git a/google/genai/_gaos/types/interactions/speakerconfig.py b/google/genai/_gaos/types/interactions/speakerconfig.py new file mode 100644 index 000000000..afae1ae5d --- /dev/null +++ b/google/genai/_gaos/types/interactions/speakerconfig.py @@ -0,0 +1,54 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# pyformat: disable + +"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" + +from __future__ import annotations +from .. import BaseModel, UNSET_SENTINEL +from .speechconfig import SpeechConfig, SpeechConfigParam +from pydantic import model_serializer +from typing import List, Optional +from typing_extensions import NotRequired, TypedDict + + +class SpeakerConfigParam(TypedDict): + r"""Configuration for multi-speaker and speech generation.""" + + speakers: NotRequired[List[SpeechConfigParam]] + r"""Individual speaker configurations.""" + + +class SpeakerConfig(BaseModel): + r"""Configuration for multi-speaker and speech generation.""" + + speakers: Optional[List[SpeechConfig]] = None + r"""Individual speaker configurations.""" + + @model_serializer(mode="wrap") + def serialize_model(self, handler): + optional_fields = set(["speakers"]) + serialized = handler(self) + m = {} + + for n, f in type(self).model_fields.items(): + k = f.alias or n + val = serialized.get(k, serialized.get(n)) + + if val != UNSET_SENTINEL: + if val is not None or k not in optional_fields: + m[k] = val + + return m From 3299af6e112355ae91d20b80f0d6e0fefaf2d18e Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:00:22 -0700 Subject: [PATCH 19/19] chore(main): release 2.18.0 (#2830) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 23 +++++++++++++++++++++++ google/genai/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb0d8ea2d..fc6548877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [2.18.0](https://github.com/googleapis/python-genai/compare/v2.17.0...v2.18.0) (2026-08-12) + + +### Features + +* Add interaction_status to LiveServerContent ([66e224c](https://github.com/googleapis/python-genai/commit/66e224c39c9527e0fef3a4f049ac33ec941e2f99)) +* **api:** Make the deferred service tier publicly available on Vertex ([e1f7c40](https://github.com/googleapis/python-genai/commit/e1f7c40f0a831f25ee71294fc8c195576d5fd126)) +* Enable json schema in FunctionDeclaration parser ([62d50d6](https://github.com/googleapis/python-genai/commit/62d50d6f172da5d6efa30838ab92da95b1327b5e)) +* Make speech_config a structured object. ([cc0d42e](https://github.com/googleapis/python-genai/commit/cc0d42e84583ed927b6c0dfae38da7f5f544b2da)) +* Support injecting httpx2 client. ([012804d](https://github.com/googleapis/python-genai/commit/012804d9b649a20da46a6041e37d126b9a0b79e0)), refs [#2680](https://github.com/googleapis/python-genai/issues/2680) + + +### Bug Fixes + +* Improve AFC(automatic function calling) in chat including fixing bugs in AFC for generate_content_stream. also log warnings in generate_content, generate_content_stream and their async variants that AFC is meant to be used in chat experience, not directly in models module. ([fe6118e](https://github.com/googleapis/python-genai/commit/fe6118e3c7a9e83406bc722e34b7efca75f1ef13)) + + +### Performance Improvements + +* Build model validators on first use instead of at import ([66bfe95](https://github.com/googleapis/python-genai/commit/66bfe956f7a8b6c8d7c7eb949a9b6a499a4e2860)), refs [#2784](https://github.com/googleapis/python-genai/issues/2784) +* Lazily import the interactions API to speed up import google.genai ([89dcfe5](https://github.com/googleapis/python-genai/commit/89dcfe5b28f5e794f9a5ac84e2d45e9e7b7bd803)) +* Stop importing the requests HTTP stack at module scope ([3a44936](https://github.com/googleapis/python-genai/commit/3a44936ea783363489967bd9d219fb26401585dd)) + ## [2.17.0](https://github.com/googleapis/python-genai/compare/v2.16.0...v2.17.0) (2026-08-06) diff --git a/google/genai/version.py b/google/genai/version.py index 602b199e4..5b34e530c 100644 --- a/google/genai/version.py +++ b/google/genai/version.py @@ -13,4 +13,4 @@ # limitations under the License. # -__version__ = '2.17.0' # x-release-please-version +__version__ = '2.18.0' # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index b58055fa4..0987a777e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel", "twine>=6.1.0", "packaging>=24.2", "pkginfo>= [project] name = "google-genai" -version = "2.17.0" +version = "2.18.0" description = "GenAI Python SDK" readme = "README.md" license = "Apache-2.0"