google-genai 1.56.0__py3-none-any.whl → 1.58.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- google/genai/_api_client.py +49 -26
- google/genai/_interactions/__init__.py +3 -0
- google/genai/_interactions/_base_client.py +1 -1
- google/genai/_interactions/_client.py +57 -3
- google/genai/_interactions/_client_adapter.py +48 -0
- google/genai/_interactions/types/__init__.py +6 -0
- google/genai/_interactions/types/audio_content.py +2 -0
- google/genai/_interactions/types/audio_content_param.py +2 -0
- google/genai/_interactions/types/content.py +65 -0
- google/genai/_interactions/types/content_delta.py +10 -2
- google/genai/_interactions/types/content_param.py +63 -0
- google/genai/_interactions/types/content_start.py +5 -46
- google/genai/_interactions/types/content_stop.py +1 -2
- google/genai/_interactions/types/document_content.py +2 -0
- google/genai/_interactions/types/document_content_param.py +2 -0
- google/genai/_interactions/types/error_event.py +1 -2
- google/genai/_interactions/types/file_search_call_content.py +32 -0
- google/genai/_interactions/types/file_search_call_content_param.py +31 -0
- google/genai/_interactions/types/generation_config.py +4 -0
- google/genai/_interactions/types/generation_config_param.py +4 -0
- google/genai/_interactions/types/image_config.py +31 -0
- google/genai/_interactions/types/image_config_param.py +30 -0
- google/genai/_interactions/types/image_content.py +2 -0
- google/genai/_interactions/types/image_content_param.py +2 -0
- google/genai/_interactions/types/interaction.py +6 -52
- google/genai/_interactions/types/interaction_create_params.py +4 -22
- google/genai/_interactions/types/interaction_event.py +1 -2
- google/genai/_interactions/types/interaction_sse_event.py +5 -3
- google/genai/_interactions/types/interaction_status_update.py +1 -2
- google/genai/_interactions/types/model.py +1 -0
- google/genai/_interactions/types/model_param.py +1 -0
- google/genai/_interactions/types/turn.py +3 -44
- google/genai/_interactions/types/turn_param.py +4 -40
- google/genai/_interactions/types/usage.py +1 -1
- google/genai/_interactions/types/usage_param.py +1 -1
- google/genai/_interactions/types/video_content.py +2 -0
- google/genai/_interactions/types/video_content_param.py +2 -0
- google/genai/_live_converters.py +118 -34
- google/genai/_local_tokenizer_loader.py +1 -0
- google/genai/_tokens_converters.py +14 -14
- google/genai/_transformers.py +15 -21
- google/genai/batches.py +27 -22
- google/genai/caches.py +42 -42
- google/genai/chats.py +0 -2
- google/genai/client.py +61 -55
- google/genai/files.py +224 -0
- google/genai/live.py +1 -1
- google/genai/models.py +56 -44
- google/genai/tests/__init__.py +21 -0
- google/genai/tests/afc/__init__.py +21 -0
- google/genai/tests/afc/test_convert_if_exist_pydantic_model.py +309 -0
- google/genai/tests/afc/test_convert_number_values_for_function_call_args.py +63 -0
- google/genai/tests/afc/test_find_afc_incompatible_tool_indexes.py +240 -0
- google/genai/tests/afc/test_generate_content_stream_afc.py +530 -0
- google/genai/tests/afc/test_generate_content_stream_afc_thoughts.py +77 -0
- google/genai/tests/afc/test_get_function_map.py +176 -0
- google/genai/tests/afc/test_get_function_response_parts.py +277 -0
- google/genai/tests/afc/test_get_max_remote_calls_for_afc.py +130 -0
- google/genai/tests/afc/test_invoke_function_from_dict_args.py +241 -0
- google/genai/tests/afc/test_raise_error_for_afc_incompatible_config.py +159 -0
- google/genai/tests/afc/test_should_append_afc_history.py +53 -0
- google/genai/tests/afc/test_should_disable_afc.py +214 -0
- google/genai/tests/batches/__init__.py +17 -0
- google/genai/tests/batches/test_cancel.py +77 -0
- google/genai/tests/batches/test_create.py +78 -0
- google/genai/tests/batches/test_create_with_bigquery.py +113 -0
- google/genai/tests/batches/test_create_with_file.py +82 -0
- google/genai/tests/batches/test_create_with_gcs.py +125 -0
- google/genai/tests/batches/test_create_with_inlined_requests.py +255 -0
- google/genai/tests/batches/test_delete.py +86 -0
- google/genai/tests/batches/test_embedding.py +157 -0
- google/genai/tests/batches/test_get.py +78 -0
- google/genai/tests/batches/test_list.py +79 -0
- google/genai/tests/caches/__init__.py +17 -0
- google/genai/tests/caches/constants.py +29 -0
- google/genai/tests/caches/test_create.py +210 -0
- google/genai/tests/caches/test_create_custom_url.py +105 -0
- google/genai/tests/caches/test_delete.py +54 -0
- google/genai/tests/caches/test_delete_custom_url.py +52 -0
- google/genai/tests/caches/test_get.py +94 -0
- google/genai/tests/caches/test_get_custom_url.py +52 -0
- google/genai/tests/caches/test_list.py +68 -0
- google/genai/tests/caches/test_update.py +70 -0
- google/genai/tests/caches/test_update_custom_url.py +58 -0
- google/genai/tests/chats/__init__.py +1 -0
- google/genai/tests/chats/test_get_history.py +598 -0
- google/genai/tests/chats/test_send_message.py +844 -0
- google/genai/tests/chats/test_validate_response.py +90 -0
- google/genai/tests/client/__init__.py +17 -0
- google/genai/tests/client/test_async_stream.py +427 -0
- google/genai/tests/client/test_client_close.py +197 -0
- google/genai/tests/client/test_client_initialization.py +1687 -0
- google/genai/tests/client/test_client_requests.py +221 -0
- google/genai/tests/client/test_custom_client.py +104 -0
- google/genai/tests/client/test_http_options.py +178 -0
- google/genai/tests/client/test_replay_client_equality.py +168 -0
- google/genai/tests/client/test_retries.py +846 -0
- google/genai/tests/client/test_upload_errors.py +136 -0
- google/genai/tests/common/__init__.py +17 -0
- google/genai/tests/common/test_common.py +954 -0
- google/genai/tests/conftest.py +162 -0
- google/genai/tests/documents/__init__.py +17 -0
- google/genai/tests/documents/test_delete.py +51 -0
- google/genai/tests/documents/test_get.py +85 -0
- google/genai/tests/documents/test_list.py +72 -0
- google/genai/tests/errors/__init__.py +1 -0
- google/genai/tests/errors/test_api_error.py +417 -0
- google/genai/tests/file_search_stores/__init__.py +17 -0
- google/genai/tests/file_search_stores/test_create.py +66 -0
- google/genai/tests/file_search_stores/test_delete.py +64 -0
- google/genai/tests/file_search_stores/test_get.py +94 -0
- google/genai/tests/file_search_stores/test_import_file.py +112 -0
- google/genai/tests/file_search_stores/test_list.py +57 -0
- google/genai/tests/file_search_stores/test_upload_to_file_search_store.py +141 -0
- google/genai/tests/files/__init__.py +17 -0
- google/genai/tests/files/test_delete.py +46 -0
- google/genai/tests/files/test_download.py +85 -0
- google/genai/tests/files/test_get.py +46 -0
- google/genai/tests/files/test_list.py +72 -0
- google/genai/tests/files/test_register.py +272 -0
- google/genai/tests/files/test_register_table.py +70 -0
- google/genai/tests/files/test_upload.py +255 -0
- google/genai/tests/imports/test_no_optional_imports.py +28 -0
- google/genai/tests/interactions/test_auth.py +476 -0
- google/genai/tests/interactions/test_integration.py +84 -0
- google/genai/tests/interactions/test_paths.py +105 -0
- google/genai/tests/live/__init__.py +16 -0
- google/genai/tests/live/test_live.py +2143 -0
- google/genai/tests/live/test_live_music.py +362 -0
- google/genai/tests/live/test_live_response.py +163 -0
- google/genai/tests/live/test_send_client_content.py +147 -0
- google/genai/tests/live/test_send_realtime_input.py +268 -0
- google/genai/tests/live/test_send_tool_response.py +222 -0
- google/genai/tests/local_tokenizer/__init__.py +17 -0
- google/genai/tests/local_tokenizer/test_local_tokenizer.py +343 -0
- google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py +235 -0
- google/genai/tests/mcp/__init__.py +17 -0
- google/genai/tests/mcp/test_has_mcp_tool_usage.py +89 -0
- google/genai/tests/mcp/test_mcp_to_gemini_tools.py +191 -0
- google/genai/tests/mcp/test_parse_config_for_mcp_sessions.py +201 -0
- google/genai/tests/mcp/test_parse_config_for_mcp_usage.py +130 -0
- google/genai/tests/mcp/test_set_mcp_usage_header.py +72 -0
- google/genai/tests/models/__init__.py +17 -0
- google/genai/tests/models/constants.py +8 -0
- google/genai/tests/models/test_compute_tokens.py +120 -0
- google/genai/tests/models/test_count_tokens.py +159 -0
- google/genai/tests/models/test_delete.py +107 -0
- google/genai/tests/models/test_edit_image.py +264 -0
- google/genai/tests/models/test_embed_content.py +94 -0
- google/genai/tests/models/test_function_call_streaming.py +442 -0
- google/genai/tests/models/test_generate_content.py +2501 -0
- google/genai/tests/models/test_generate_content_cached_content.py +132 -0
- google/genai/tests/models/test_generate_content_config_zero_value.py +103 -0
- google/genai/tests/models/test_generate_content_from_apikey.py +44 -0
- google/genai/tests/models/test_generate_content_http_options.py +40 -0
- google/genai/tests/models/test_generate_content_image_generation.py +143 -0
- google/genai/tests/models/test_generate_content_mcp.py +343 -0
- google/genai/tests/models/test_generate_content_media_resolution.py +97 -0
- google/genai/tests/models/test_generate_content_model.py +139 -0
- google/genai/tests/models/test_generate_content_part.py +821 -0
- google/genai/tests/models/test_generate_content_thought.py +76 -0
- google/genai/tests/models/test_generate_content_tools.py +1761 -0
- google/genai/tests/models/test_generate_images.py +191 -0
- google/genai/tests/models/test_generate_videos.py +759 -0
- google/genai/tests/models/test_get.py +104 -0
- google/genai/tests/models/test_list.py +233 -0
- google/genai/tests/models/test_recontext_image.py +189 -0
- google/genai/tests/models/test_segment_image.py +148 -0
- google/genai/tests/models/test_update.py +95 -0
- google/genai/tests/models/test_upscale_image.py +157 -0
- google/genai/tests/operations/__init__.py +17 -0
- google/genai/tests/operations/test_get.py +38 -0
- google/genai/tests/public_samples/__init__.py +17 -0
- google/genai/tests/public_samples/test_gemini_text_only.py +34 -0
- google/genai/tests/pytest_helper.py +246 -0
- google/genai/tests/shared/__init__.py +16 -0
- google/genai/tests/shared/batches/__init__.py +14 -0
- google/genai/tests/shared/batches/test_create_delete.py +57 -0
- google/genai/tests/shared/batches/test_create_get_cancel.py +56 -0
- google/genai/tests/shared/batches/test_list.py +40 -0
- google/genai/tests/shared/caches/__init__.py +14 -0
- google/genai/tests/shared/caches/test_create_get_delete.py +67 -0
- google/genai/tests/shared/caches/test_create_update_get.py +71 -0
- google/genai/tests/shared/caches/test_list.py +40 -0
- google/genai/tests/shared/chats/__init__.py +14 -0
- google/genai/tests/shared/chats/test_send_message.py +48 -0
- google/genai/tests/shared/chats/test_send_message_stream.py +50 -0
- google/genai/tests/shared/files/__init__.py +14 -0
- google/genai/tests/shared/files/test_list.py +41 -0
- google/genai/tests/shared/files/test_upload_get_delete.py +54 -0
- google/genai/tests/shared/models/__init__.py +14 -0
- google/genai/tests/shared/models/test_compute_tokens.py +41 -0
- google/genai/tests/shared/models/test_count_tokens.py +40 -0
- google/genai/tests/shared/models/test_edit_image.py +67 -0
- google/genai/tests/shared/models/test_embed.py +40 -0
- google/genai/tests/shared/models/test_generate_content.py +39 -0
- google/genai/tests/shared/models/test_generate_content_stream.py +54 -0
- google/genai/tests/shared/models/test_generate_images.py +40 -0
- google/genai/tests/shared/models/test_generate_videos.py +38 -0
- google/genai/tests/shared/models/test_list.py +37 -0
- google/genai/tests/shared/models/test_recontext_image.py +55 -0
- google/genai/tests/shared/models/test_segment_image.py +52 -0
- google/genai/tests/shared/models/test_upscale_image.py +52 -0
- google/genai/tests/shared/tunings/__init__.py +16 -0
- google/genai/tests/shared/tunings/test_create.py +46 -0
- google/genai/tests/shared/tunings/test_create_get_cancel.py +56 -0
- google/genai/tests/shared/tunings/test_list.py +39 -0
- google/genai/tests/tokens/__init__.py +16 -0
- google/genai/tests/tokens/test_create.py +154 -0
- google/genai/tests/transformers/__init__.py +17 -0
- google/genai/tests/transformers/test_blobs.py +84 -0
- google/genai/tests/transformers/test_bytes.py +15 -0
- google/genai/tests/transformers/test_duck_type.py +96 -0
- google/genai/tests/transformers/test_function_responses.py +72 -0
- google/genai/tests/transformers/test_schema.py +653 -0
- google/genai/tests/transformers/test_t_batch.py +286 -0
- google/genai/tests/transformers/test_t_content.py +160 -0
- google/genai/tests/transformers/test_t_contents.py +398 -0
- google/genai/tests/transformers/test_t_part.py +85 -0
- google/genai/tests/transformers/test_t_parts.py +87 -0
- google/genai/tests/transformers/test_t_tool.py +157 -0
- google/genai/tests/transformers/test_t_tools.py +195 -0
- google/genai/tests/tunings/__init__.py +16 -0
- google/genai/tests/tunings/test_cancel.py +39 -0
- google/genai/tests/tunings/test_end_to_end.py +106 -0
- google/genai/tests/tunings/test_get.py +67 -0
- google/genai/tests/tunings/test_list.py +75 -0
- google/genai/tests/tunings/test_tune.py +268 -0
- google/genai/tests/types/__init__.py +16 -0
- google/genai/tests/types/test_bytes_internal.py +271 -0
- google/genai/tests/types/test_bytes_type.py +152 -0
- google/genai/tests/types/test_future.py +101 -0
- google/genai/tests/types/test_optional_types.py +36 -0
- google/genai/tests/types/test_part_type.py +616 -0
- google/genai/tests/types/test_schema_from_json_schema.py +417 -0
- google/genai/tests/types/test_schema_json_schema.py +468 -0
- google/genai/tests/types/test_types.py +2903 -0
- google/genai/types.py +631 -488
- google/genai/version.py +1 -1
- {google_genai-1.56.0.dist-info → google_genai-1.58.0.dist-info}/METADATA +6 -11
- google_genai-1.58.0.dist-info/RECORD +358 -0
- google_genai-1.56.0.dist-info/RECORD +0 -162
- /google/genai/{_interactions/py.typed → tests/interactions/__init__.py} +0 -0
- {google_genai-1.56.0.dist-info → google_genai-1.58.0.dist-info}/WHEEL +0 -0
- {google_genai-1.56.0.dist-info → google_genai-1.58.0.dist-info}/licenses/LICENSE +0 -0
- {google_genai-1.56.0.dist-info → google_genai-1.58.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for edit_image."""
|
|
18
|
+
|
|
19
|
+
import os
|
|
20
|
+
|
|
21
|
+
from .... import types
|
|
22
|
+
from ... import pytest_helper
|
|
23
|
+
|
|
24
|
+
CAPABILITY_MODEL_NAME = 'imagen-3.0-capability-001'
|
|
25
|
+
|
|
26
|
+
IMAGE_FILE_PATH = os.path.abspath(
|
|
27
|
+
os.path.join(os.path.dirname(__file__), '../../data/google.png')
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
MASK_FILE_PATH = os.path.abspath(
|
|
31
|
+
os.path.join(os.path.dirname(__file__), '../../data/checkerboard.png')
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
raw_ref_image = types.RawReferenceImage(
|
|
35
|
+
reference_id=1,
|
|
36
|
+
reference_image=types.Image.from_file(location=IMAGE_FILE_PATH),
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
mask_ref_image = types.MaskReferenceImage(
|
|
40
|
+
reference_id=2,
|
|
41
|
+
config=types.MaskReferenceConfig(
|
|
42
|
+
mask_mode='MASK_MODE_BACKGROUND',
|
|
43
|
+
mask_dilation=0.06,
|
|
44
|
+
),
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
48
|
+
pytest_helper.TestTableItem(
|
|
49
|
+
name='test_edit_mask_inpaint_insert',
|
|
50
|
+
exception_if_mldev='only supported in the Vertex AI client',
|
|
51
|
+
parameters=types._EditImageParameters(
|
|
52
|
+
model=CAPABILITY_MODEL_NAME,
|
|
53
|
+
prompt='Sunlight and clear weather',
|
|
54
|
+
reference_images=[raw_ref_image, mask_ref_image],
|
|
55
|
+
config=types.EditImageConfig(
|
|
56
|
+
edit_mode=types.EditMode.EDIT_MODE_INPAINT_INSERTION,
|
|
57
|
+
),
|
|
58
|
+
),
|
|
59
|
+
),
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
pytestmark = pytest_helper.setup(
|
|
63
|
+
file=__file__,
|
|
64
|
+
globals_for_file=globals(),
|
|
65
|
+
test_method='models.edit_image',
|
|
66
|
+
test_table=test_table,
|
|
67
|
+
)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for models.embed()."""
|
|
18
|
+
|
|
19
|
+
from .... import types as genai_types
|
|
20
|
+
from ... import pytest_helper
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
24
|
+
pytest_helper.TestTableItem(
|
|
25
|
+
name='test_embed',
|
|
26
|
+
parameters=genai_types._EmbedContentParameters(
|
|
27
|
+
model='text-embedding-004',
|
|
28
|
+
contents='Hello world!',
|
|
29
|
+
),
|
|
30
|
+
),
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
pytestmark = pytest_helper.setup(
|
|
34
|
+
file=__file__,
|
|
35
|
+
globals_for_file=globals(),
|
|
36
|
+
test_method='models.embed_content',
|
|
37
|
+
test_table=test_table,
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
pytest_plugins = ('pytest_asyncio',)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
"""Tests for models.generate_content()."""
|
|
17
|
+
|
|
18
|
+
from .... import types as genai_types
|
|
19
|
+
from ... import pytest_helper
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
23
|
+
pytest_helper.TestTableItem(
|
|
24
|
+
name='test_generate_content',
|
|
25
|
+
parameters=genai_types._GenerateContentParameters(
|
|
26
|
+
model='gemini-2.5-flash',
|
|
27
|
+
contents='The quick brown fox jumps over the lazy dog.',
|
|
28
|
+
),
|
|
29
|
+
),
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
pytestmark = pytest_helper.setup(
|
|
33
|
+
file=__file__,
|
|
34
|
+
globals_for_file=globals(),
|
|
35
|
+
test_method='models.generate_content',
|
|
36
|
+
test_table=test_table,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
pytest_plugins = ('pytest_asyncio',)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
"""Tests for models.generate_content_stream()."""
|
|
17
|
+
|
|
18
|
+
from .... import types as genai_types
|
|
19
|
+
from ... import pytest_helper
|
|
20
|
+
from pydantic import BaseModel
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class _GenerateContentStreamParameters(BaseModel):
|
|
24
|
+
model: str
|
|
25
|
+
contents: str
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def generate_content_stream(client, parameters):
|
|
29
|
+
response = client.models.generate_content_stream(
|
|
30
|
+
model=parameters.model,
|
|
31
|
+
contents=parameters.contents,
|
|
32
|
+
)
|
|
33
|
+
for _ in response:
|
|
34
|
+
pass
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
38
|
+
pytest_helper.TestTableItem(
|
|
39
|
+
name='test_generate_content_stream',
|
|
40
|
+
parameters=_GenerateContentStreamParameters(
|
|
41
|
+
model='gemini-2.5-flash',
|
|
42
|
+
contents='The quick brown fox jumps over the lazy dog.',
|
|
43
|
+
),
|
|
44
|
+
),
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
pytestmark = pytest_helper.setup(
|
|
48
|
+
file=__file__,
|
|
49
|
+
globals_for_file=globals(),
|
|
50
|
+
test_method='generate_content_stream',
|
|
51
|
+
test_table=test_table,
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
pytest_plugins = ('pytest_asyncio',)
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
"""Tests for generate_images."""
|
|
16
|
+
|
|
17
|
+
from .... import types
|
|
18
|
+
from ... import pytest_helper
|
|
19
|
+
|
|
20
|
+
IMAGEN_MODEL_LATEST = 'imagen-4.0-generate-001'
|
|
21
|
+
|
|
22
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
23
|
+
pytest_helper.TestTableItem(
|
|
24
|
+
name='test_simple_prompt',
|
|
25
|
+
parameters=types._GenerateImagesParameters(
|
|
26
|
+
model=IMAGEN_MODEL_LATEST,
|
|
27
|
+
prompt='Red skateboard',
|
|
28
|
+
config=types.GenerateImagesConfig(
|
|
29
|
+
number_of_images=1,
|
|
30
|
+
output_mime_type='image/jpeg',
|
|
31
|
+
),
|
|
32
|
+
),
|
|
33
|
+
),
|
|
34
|
+
]
|
|
35
|
+
pytestmark = pytest_helper.setup(
|
|
36
|
+
file=__file__,
|
|
37
|
+
globals_for_file=globals(),
|
|
38
|
+
test_method='models.generate_images',
|
|
39
|
+
test_table=test_table,
|
|
40
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
"""Tests for generate_videos."""
|
|
16
|
+
|
|
17
|
+
import os
|
|
18
|
+
from .... import types
|
|
19
|
+
from ... import pytest_helper
|
|
20
|
+
|
|
21
|
+
VEO_MODEL_LATEST = "veo-2.0-generate-001"
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
25
|
+
pytest_helper.TestTableItem(
|
|
26
|
+
name="test_simple_prompt",
|
|
27
|
+
parameters=types._GenerateVideosParameters(
|
|
28
|
+
model=VEO_MODEL_LATEST,
|
|
29
|
+
prompt="Man with a dog",
|
|
30
|
+
),
|
|
31
|
+
),
|
|
32
|
+
]
|
|
33
|
+
pytestmark = pytest_helper.setup(
|
|
34
|
+
file=__file__,
|
|
35
|
+
globals_for_file=globals(),
|
|
36
|
+
test_method="models.generate_videos",
|
|
37
|
+
test_table=test_table,
|
|
38
|
+
)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for models.list."""
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
from .... import types
|
|
21
|
+
from ... import pytest_helper
|
|
22
|
+
|
|
23
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
24
|
+
pytest_helper.TestTableItem(
|
|
25
|
+
name='test_list',
|
|
26
|
+
parameters=types._ListModelsParameters(
|
|
27
|
+
config=types.ListModelsConfig(page_size=1)
|
|
28
|
+
),
|
|
29
|
+
),
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
pytestmark = pytest_helper.setup(
|
|
33
|
+
file=__file__,
|
|
34
|
+
globals_for_file=globals(),
|
|
35
|
+
test_method='models.list',
|
|
36
|
+
test_table=test_table,
|
|
37
|
+
)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for recontext_image."""
|
|
18
|
+
|
|
19
|
+
from .... import types
|
|
20
|
+
from ... import pytest_helper
|
|
21
|
+
|
|
22
|
+
PRODUCT_RECONTEXT_MODEL_LATEST = 'imagen-product-recontext-preview-06-30'
|
|
23
|
+
|
|
24
|
+
BACKPACK1 = types.Image(
|
|
25
|
+
gcs_uri='gs://genai-sdk-tests/inputs/images/backpack1.png',
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
29
|
+
pytest_helper.TestTableItem(
|
|
30
|
+
name='test_product_recontext',
|
|
31
|
+
exception_if_mldev='only supported in the Vertex AI client',
|
|
32
|
+
parameters=types._RecontextImageParameters(
|
|
33
|
+
model=PRODUCT_RECONTEXT_MODEL_LATEST,
|
|
34
|
+
source=types.RecontextImageSource(
|
|
35
|
+
prompt='On a school desk',
|
|
36
|
+
product_images=[
|
|
37
|
+
types.ProductImage(product_image=BACKPACK1)
|
|
38
|
+
],
|
|
39
|
+
),
|
|
40
|
+
config=types.RecontextImageConfig(
|
|
41
|
+
number_of_images=1,
|
|
42
|
+
add_watermark=True,
|
|
43
|
+
output_mime_type='image/jpeg',
|
|
44
|
+
),
|
|
45
|
+
),
|
|
46
|
+
),
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
pytestmark = pytest_helper.setup(
|
|
51
|
+
file=__file__,
|
|
52
|
+
globals_for_file=globals(),
|
|
53
|
+
test_method='models.recontext_image',
|
|
54
|
+
test_table=test_table,
|
|
55
|
+
)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for segment_image."""
|
|
18
|
+
|
|
19
|
+
import os
|
|
20
|
+
|
|
21
|
+
from .... import types
|
|
22
|
+
from ... import pytest_helper
|
|
23
|
+
|
|
24
|
+
SEGMENT_IMAGE_MODEL_LATEST = 'image-segmentation-001'
|
|
25
|
+
|
|
26
|
+
SOURCE_IMAGE_FILE_PATH1 = os.path.abspath(
|
|
27
|
+
os.path.join(os.path.dirname(__file__), '../../data/google.png')
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
SOURCE_IMAGE1 = types.Image.from_file(location=SOURCE_IMAGE_FILE_PATH1)
|
|
31
|
+
|
|
32
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
33
|
+
pytest_helper.TestTableItem(
|
|
34
|
+
name='test_segment_background',
|
|
35
|
+
exception_if_mldev='only supported in the Vertex AI client',
|
|
36
|
+
parameters=types._SegmentImageParameters(
|
|
37
|
+
model=SEGMENT_IMAGE_MODEL_LATEST,
|
|
38
|
+
source=types.SegmentImageSource(
|
|
39
|
+
image=SOURCE_IMAGE1,
|
|
40
|
+
),
|
|
41
|
+
config=types.SegmentImageConfig(
|
|
42
|
+
mode=types.SegmentMode.BACKGROUND,
|
|
43
|
+
),
|
|
44
|
+
),
|
|
45
|
+
),
|
|
46
|
+
]
|
|
47
|
+
pytestmark = pytest_helper.setup(
|
|
48
|
+
file=__file__,
|
|
49
|
+
globals_for_file=globals(),
|
|
50
|
+
test_method='models.segment_image',
|
|
51
|
+
test_table=test_table,
|
|
52
|
+
)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
"""Tests for upscale_image."""
|
|
17
|
+
|
|
18
|
+
import os
|
|
19
|
+
|
|
20
|
+
from .... import types
|
|
21
|
+
from ... import pytest_helper
|
|
22
|
+
|
|
23
|
+
IMAGEN_MODEL_LATEST = 'imagen-4.0-upscale-preview'
|
|
24
|
+
|
|
25
|
+
IMAGE_FILE_PATH = os.path.abspath(
|
|
26
|
+
os.path.join(os.path.dirname(__file__), '../../data/bridge1.png')
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
30
|
+
pytest_helper.TestTableItem(
|
|
31
|
+
name='test_upscale',
|
|
32
|
+
exception_if_mldev='only supported in the Vertex AI client',
|
|
33
|
+
parameters=types.UpscaleImageParameters(
|
|
34
|
+
model=IMAGEN_MODEL_LATEST,
|
|
35
|
+
image=types.Image.from_file(location=IMAGE_FILE_PATH),
|
|
36
|
+
upscale_factor='x2',
|
|
37
|
+
config=types.UpscaleImageConfig(
|
|
38
|
+
include_rai_reason=True,
|
|
39
|
+
output_mime_type='image/jpeg',
|
|
40
|
+
output_compression_quality=80,
|
|
41
|
+
enhance_input_image=True,
|
|
42
|
+
image_preservation_factor=0.6,
|
|
43
|
+
),
|
|
44
|
+
),
|
|
45
|
+
),
|
|
46
|
+
]
|
|
47
|
+
pytestmark = pytest_helper.setup(
|
|
48
|
+
file=__file__,
|
|
49
|
+
globals_for_file=globals(),
|
|
50
|
+
test_method='models.upscale_image',
|
|
51
|
+
test_table=test_table,
|
|
52
|
+
)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for tunings.tune()."""
|
|
18
|
+
|
|
19
|
+
from .... import types as genai_types
|
|
20
|
+
from ... import pytest_helper
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
24
|
+
pytest_helper.TestTableItem(
|
|
25
|
+
name='test_tune',
|
|
26
|
+
parameters=genai_types.CreateTuningJobParameters(
|
|
27
|
+
base_model='gemini-2.5-flash',
|
|
28
|
+
training_dataset=genai_types.TuningDataset(
|
|
29
|
+
gcs_uri='gs://cloud-samples-data/ai-platform/generative_ai/gemini-2_0/text/sft_train_data.jsonl',
|
|
30
|
+
),
|
|
31
|
+
config=genai_types.CreateTuningJobConfig(
|
|
32
|
+
epoch_count=1,
|
|
33
|
+
),
|
|
34
|
+
),
|
|
35
|
+
exception_if_mldev='not supported in Gemini API.',
|
|
36
|
+
),
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
pytestmark = pytest_helper.setup(
|
|
40
|
+
file=__file__,
|
|
41
|
+
globals_for_file=globals(),
|
|
42
|
+
test_method='tunings.tune',
|
|
43
|
+
test_table=test_table,
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
pytest_plugins = ('pytest_asyncio',)
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests tunings.tune(), tunings.get(), tunings.cancel()."""
|
|
18
|
+
|
|
19
|
+
from .... import types as genai_types
|
|
20
|
+
from ... import pytest_helper
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def create_get_cancel(client, parameters):
|
|
24
|
+
tuning_job = client.tunings.tune(
|
|
25
|
+
base_model=parameters.base_model,
|
|
26
|
+
training_dataset=parameters.training_dataset,
|
|
27
|
+
config=parameters.config,
|
|
28
|
+
)
|
|
29
|
+
tuning_job = client.tunings.get(name=tuning_job.name)
|
|
30
|
+
client.tunings.cancel(name=tuning_job.name)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
34
|
+
pytest_helper.TestTableItem(
|
|
35
|
+
name="test_create_get_cancel",
|
|
36
|
+
parameters=genai_types.CreateTuningJobParameters(
|
|
37
|
+
base_model="gemini-2.5-flash",
|
|
38
|
+
training_dataset=genai_types.TuningDataset(
|
|
39
|
+
gcs_uri="gs://cloud-samples-data/ai-platform/generative_ai/gemini-2_0/text/sft_train_data.jsonl",
|
|
40
|
+
),
|
|
41
|
+
config=genai_types.CreateTuningJobConfig(
|
|
42
|
+
epoch_count=1,
|
|
43
|
+
),
|
|
44
|
+
),
|
|
45
|
+
exception_if_mldev="not supported in Gemini API.",
|
|
46
|
+
),
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
pytestmark = pytest_helper.setup(
|
|
50
|
+
file=__file__,
|
|
51
|
+
globals_for_file=globals(),
|
|
52
|
+
test_method="create_get_cancel",
|
|
53
|
+
test_table=test_table,
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
pytest_plugins = ("pytest_asyncio",)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
"""Tests for tunings.list()."""
|
|
18
|
+
|
|
19
|
+
from .... import types as genai_types
|
|
20
|
+
from ... import pytest_helper
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
test_table: list[pytest_helper.TestTableItem] = [
|
|
24
|
+
pytest_helper.TestTableItem(
|
|
25
|
+
name='test_default',
|
|
26
|
+
parameters=genai_types._ListTuningJobsParameters(
|
|
27
|
+
config=genai_types.ListTuningJobsConfig(page_size=1)
|
|
28
|
+
),
|
|
29
|
+
),
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
pytestmark = pytest_helper.setup(
|
|
33
|
+
file=__file__,
|
|
34
|
+
globals_for_file=globals(),
|
|
35
|
+
test_method='tunings.list',
|
|
36
|
+
test_table=test_table,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
pytest_plugins = ('pytest_asyncio',)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
|