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
google/genai/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: google-genai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.58.0
|
|
4
4
|
Summary: GenAI Python SDK
|
|
5
5
|
Author-email: Google LLC <googleapis-packages@google.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.10
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: anyio<5.0.0,>=4.8.0
|
|
23
|
-
Requires-Dist: google-auth[requests]<3.0.0,>=2.
|
|
23
|
+
Requires-Dist: google-auth[requests]<3.0.0,>=2.47.0
|
|
24
24
|
Requires-Dist: httpx<1.0.0,>=0.28.1
|
|
25
25
|
Requires-Dist: pydantic<3.0.0,>=2.9.0
|
|
26
26
|
Requires-Dist: requests<3.0.0,>=2.28.1
|
|
@@ -112,7 +112,7 @@ Below is an example `generate_content()` call using types from the types module:
|
|
|
112
112
|
|
|
113
113
|
```python
|
|
114
114
|
response = client.models.generate_content(
|
|
115
|
-
model='gemini-2.
|
|
115
|
+
model='gemini-2.5-flash',
|
|
116
116
|
contents=types.Part.from_text(text='Why is the sky blue?'),
|
|
117
117
|
config=types.GenerateContentConfig(
|
|
118
118
|
temperature=0,
|
|
@@ -127,7 +127,7 @@ types:
|
|
|
127
127
|
|
|
128
128
|
```python
|
|
129
129
|
response = client.models.generate_content(
|
|
130
|
-
model='gemini-2.
|
|
130
|
+
model='gemini-2.5-flash',
|
|
131
131
|
contents={'text': 'Why is the sky blue?'},
|
|
132
132
|
config={
|
|
133
133
|
'temperature': 0,
|
|
@@ -621,7 +621,7 @@ and [Gemini API docs](https://ai.google.dev/gemini-api/docs/models) respectively
|
|
|
621
621
|
from google.genai import types
|
|
622
622
|
|
|
623
623
|
response = client.models.generate_content(
|
|
624
|
-
model='gemini-2.
|
|
624
|
+
model='gemini-2.5-flash',
|
|
625
625
|
contents='high',
|
|
626
626
|
config=types.GenerateContentConfig(
|
|
627
627
|
system_instruction='I say high, you say low',
|
|
@@ -1238,7 +1238,6 @@ print(response)
|
|
|
1238
1238
|
```python
|
|
1239
1239
|
from google.genai import types
|
|
1240
1240
|
|
|
1241
|
-
# multiple contents with config
|
|
1242
1241
|
response = client.models.embed_content(
|
|
1243
1242
|
model='gemini-embedding-001',
|
|
1244
1243
|
contents=['why is the sky blue?', 'What is your age?'],
|
|
@@ -1252,12 +1251,9 @@ print(response)
|
|
|
1252
1251
|
|
|
1253
1252
|
#### Generate Images
|
|
1254
1253
|
|
|
1255
|
-
Support for generate images in Gemini Developer API is behind an allowlist
|
|
1256
|
-
|
|
1257
1254
|
```python
|
|
1258
1255
|
from google.genai import types
|
|
1259
1256
|
|
|
1260
|
-
# Generate Image
|
|
1261
1257
|
response1 = client.models.generate_images(
|
|
1262
1258
|
model='imagen-4.0-generate-001',
|
|
1263
1259
|
prompt='An umbrella in the foreground, and a rainy night sky in the background',
|
|
@@ -1277,7 +1273,6 @@ Upscale image is only supported in Vertex AI.
|
|
|
1277
1273
|
```python
|
|
1278
1274
|
from google.genai import types
|
|
1279
1275
|
|
|
1280
|
-
# Upscale the generated image from above
|
|
1281
1276
|
response2 = client.models.upscale_image(
|
|
1282
1277
|
model='imagen-4.0-upscale-preview',
|
|
1283
1278
|
image=response1.generated_images[0].image,
|
|
@@ -1977,7 +1972,7 @@ file = client.files.upload(
|
|
|
1977
1972
|
|
|
1978
1973
|
# Create a batch job with file name
|
|
1979
1974
|
batch_job = client.batches.create(
|
|
1980
|
-
model="gemini-2.
|
|
1975
|
+
model="gemini-2.5-flash",
|
|
1981
1976
|
src="files/test-json",
|
|
1982
1977
|
)
|
|
1983
1978
|
```
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
google/genai/__init__.py,sha256=dIAk6AHhyy3b77cVKPvDyrZzkd9ibddrHZuieCq_eaA,756
|
|
2
|
+
google/genai/_adapters.py,sha256=Kok38miNYJff2n--l0zEK_hbq0y2rWOH7k75J7SMYbQ,1744
|
|
3
|
+
google/genai/_api_client.py,sha256=IKWsmL7fLl5blxdV1Y3PDJ2-XpChutmcu_jtfd7gAmQ,67922
|
|
4
|
+
google/genai/_api_module.py,sha256=lj8eUWx8_LBGBz-49qz6_ywWm3GYp3d8Bg5JoOHbtbI,902
|
|
5
|
+
google/genai/_automatic_function_calling_util.py,sha256=xXNkJR-pzSMkeSXMz3Jw-kMHFbTJEiRJ3wocuwtWW4I,11627
|
|
6
|
+
google/genai/_base_transformers.py,sha256=wljA6m4tLl4XLGlBC2DNOls5N9-X9tffBq0M7i8jgpw,1034
|
|
7
|
+
google/genai/_base_url.py,sha256=E5H4dew14Y16qfnB3XRnjSCi19cJVlkaMNoM_8ip-PM,1597
|
|
8
|
+
google/genai/_common.py,sha256=9HOP8GtEnTGTF-5A92hQdcPWeaCS6ig3vgnmm-8jiTY,25421
|
|
9
|
+
google/genai/_extra_utils.py,sha256=GXsUfyKAPZaW9_ySvdzSAXThvuzaKwXcAmdHW_hoHpY,25309
|
|
10
|
+
google/genai/_live_converters.py,sha256=KBpHDsQBxzGGPRsiP9HxM47NAqWY1i5-aesNMLNQeyY,46375
|
|
11
|
+
google/genai/_local_tokenizer_loader.py,sha256=YdnnFPXB8eNZ3VhzTzHovE7ZSD3n729wpV42aoOLd7c,7185
|
|
12
|
+
google/genai/_mcp_utils.py,sha256=HuWJ8FUjquv40Mf_QjcL5r5yXWrS-JjINsjlOSbbyAc,3870
|
|
13
|
+
google/genai/_operations_converters.py,sha256=zw8DqkgJWHphrw9waAjAiH98QbE2Rnum3zGm02dHQWo,11695
|
|
14
|
+
google/genai/_replay_api_client.py,sha256=-sZY8pM8JulqTfuqIKaKHCy9MNXF7HJnX6fCzyTMpS0,22617
|
|
15
|
+
google/genai/_test_api_client.py,sha256=4ruFIy5_1qcbKqqIBu3HSQbpSOBrxiecBtDZaTGFR1s,4797
|
|
16
|
+
google/genai/_tokens_converters.py,sha256=ILPWqhCU1MP2xi0Zg_Zz3fmZ37Yr-hGyg6iey9c4u_E,15593
|
|
17
|
+
google/genai/_transformers.py,sha256=rVhKCz9Xi8PTMVOj4F5ITqQWMzUYeNLYacSIFlDjZwc,43191
|
|
18
|
+
google/genai/batches.py,sha256=DzCiHli8ncxRbsey3x6xAvwFOxjrvh4_S5uD8mwDtl4,78786
|
|
19
|
+
google/genai/caches.py,sha256=24GhR6Nj-1Bdaey6ff6NNmP5pIjvlO0S1Dv_-CrCtyI,48118
|
|
20
|
+
google/genai/chats.py,sha256=q3_iONHx8l-Y7EG29_f45yjFDdL2VFefUDLMdJtw0sE,16583
|
|
21
|
+
google/genai/client.py,sha256=odJ3erYMO1tkvn_9AOyfLawNX2tZf71fbVzqmmLEjOY,21327
|
|
22
|
+
google/genai/documents.py,sha256=GuYWVgRaYBzHv9aMgcZBrVkFlpBeaAeZsfhgvC_SLTA,16218
|
|
23
|
+
google/genai/errors.py,sha256=2Iux-5iGUJzEB6OWE3R18SckMEvNimOfpNCQIYL6cn8,8118
|
|
24
|
+
google/genai/file_search_stores.py,sha256=4EW_hRjkaGYu4gbQyNbiswTWk5nUgooxB5pqMi_WAME,41418
|
|
25
|
+
google/genai/files.py,sha256=omKew0R3nnilVSnCfijaJ_VFDIY5IjefrQWWuK2WOHo,39019
|
|
26
|
+
google/genai/interactions.py,sha256=GLpo-rTdxb1JfL3LXE0c52JWaEGloLnPeCI9hoO_M2g,642
|
|
27
|
+
google/genai/live.py,sha256=aBa_JndziEQjxhdpqChmGHaG4m9npOp9Z0HTXnoZdl8,41804
|
|
28
|
+
google/genai/live_music.py,sha256=Y7I7jh5SAKgyjBIMLboH0oTnZJ18uOT2SpRDKURvp94,6783
|
|
29
|
+
google/genai/local_tokenizer.py,sha256=EKZ72cV2Zfutlo_efMOPnLRNZN4WQe57rD3G80cF340,14109
|
|
30
|
+
google/genai/models.py,sha256=9TfxuOxJwfMqjL435D7vdgf9Gwn77gqRf_8_5aGdnN8,238719
|
|
31
|
+
google/genai/operations.py,sha256=FXJOnYp2HA5Xqa5mHW67mSa9p1D_EaGGyUoKc09xFPQ,16384
|
|
32
|
+
google/genai/pagers.py,sha256=1i8NXDuKuQznFin5H5-I0hmj6H5YMTYsEJP7S0ITSbY,7158
|
|
33
|
+
google/genai/py.typed,sha256=RsMFoLwBkAvY05t6izop4UHZtqOPLiKp3GkIEizzmQY,40
|
|
34
|
+
google/genai/tokens.py,sha256=4BPW0gGWFeFVk3INkuY2tfREnsrvzQDhouvRI6_F9Q8,12235
|
|
35
|
+
google/genai/tunings.py,sha256=HNC3c_9MFwXDp-hcChvmDqkFinrD4kyLkNZPFiW72Tw,75536
|
|
36
|
+
google/genai/types.py,sha256=3QImav8ZsdiDTIJ0WXD3Zdt9lGFOa3QM1b8btB3IS0Y,654139
|
|
37
|
+
google/genai/version.py,sha256=QtMlVLy172_gY9IQeDM4RwYb01grTq0MSRSFGs4zofo,627
|
|
38
|
+
google/genai/_interactions/__init__.py,sha256=Zl5wlyZ1be3a1ENIERjj9ocpELL89RdZkHF3MnCkB3M,3571
|
|
39
|
+
google/genai/_interactions/_base_client.py,sha256=Lkj3tnX3k2D0gNqFefUO6Rt6nltgN1blFS4kUV7bgAU,68298
|
|
40
|
+
google/genai/_interactions/_client.py,sha256=VkBifJIA0IchcNRUUb4E8w02udzmJMedYPXYnqX1iKc,21234
|
|
41
|
+
google/genai/_interactions/_client_adapter.py,sha256=QLQa352-22JgCa72uFo0UGzZr0v-BaTZ4yUVKCQ5LIU,1349
|
|
42
|
+
google/genai/_interactions/_compat.py,sha256=1HosuxO1kuZL6GwDmAoJD5kY999gjys4ifLdhXiJ4KI,7139
|
|
43
|
+
google/genai/_interactions/_constants.py,sha256=t7rpey7f7Z65WNYx8OzR-VGkTEHaz_WCLOREzHLjFhk,1039
|
|
44
|
+
google/genai/_interactions/_exceptions.py,sha256=XvtN0Ir69uwzlI9s-2gvXZJyDa3NZ0IqsMapC9nM8Bc,3825
|
|
45
|
+
google/genai/_interactions/_files.py,sha256=K7qgCZWoSaNI4RrdY1cUnNMXNF3Usq1IgCvzqwFgfMQ,4144
|
|
46
|
+
google/genai/_interactions/_models.py,sha256=naQPvxL0gipx0FTLC3jOCd2aG3eINFVq-WAUTsVOX8Y,32436
|
|
47
|
+
google/genai/_interactions/_qs.py,sha256=ZaB5ZsbJnq0L7s-Y30_7k1jAVNAgcPAh45xa2xeE1GQ,5405
|
|
48
|
+
google/genai/_interactions/_resource.py,sha256=2SnZ1mvldUzurojYs_Pg_aItzP5A9WmhjjMCh_dXnCg,1773
|
|
49
|
+
google/genai/_interactions/_response.py,sha256=rJ8tQXfKYgFxjxML63XGSQuH_Su9OQfqGtw0ann1iT4,29507
|
|
50
|
+
google/genai/_interactions/_streaming.py,sha256=bjjyV9iuZxEOP0PaQGSA-_xIeK3Yuip2qb2tTqRkJn4,11016
|
|
51
|
+
google/genai/_interactions/_types.py,sha256=OZXQrS3qydYn9F-YnTDrxv5lBoKiTLha3fr202M5QOQ,7892
|
|
52
|
+
google/genai/_interactions/_version.py,sha256=HYUoiFQBODx2RJNZpIxeUnGFUe8Gc9FEO6tSeZQgO-I,668
|
|
53
|
+
google/genai/_interactions/_utils/__init__.py,sha256=fNs6SzzZLqVABQ0TgZ3z1LBri3iVIdtvKo0GcTiNXJM,2882
|
|
54
|
+
google/genai/_interactions/_utils/_compat.py,sha256=NfPeqV7YsaW2h40s7NODt-uOngiMLf9KboR0W-f64gU,1794
|
|
55
|
+
google/genai/_interactions/_utils/_datetime_parse.py,sha256=dYUm7Y3pBD4dzQmpr-onIalbkEQH8gSqdSok5wx24wE,4781
|
|
56
|
+
google/genai/_interactions/_utils/_logs.py,sha256=z9QPllBTUdyCkIpb3iHi_NZnM3GTG_OQtD4t1Htpex4,1404
|
|
57
|
+
google/genai/_interactions/_utils/_proxy.py,sha256=V_QfMtbDL4_OFaYynWeyCCkP7KPBuV7GEJspth55rS0,2552
|
|
58
|
+
google/genai/_interactions/_utils/_reflection.py,sha256=F4i9cYP3sGnxZ-dhp3lcFSRiB115znLodOM-gcVh-wA,1941
|
|
59
|
+
google/genai/_interactions/_utils/_resources_proxy.py,sha256=oblNXyW_PaDX3oFD5HPfSj4nEk5t7yTfPN6CXfMchv8,1266
|
|
60
|
+
google/genai/_interactions/_utils/_streams.py,sha256=qFn4GbF3Vvdx7oc65J7WjeEyUBF8rlMB_HvubXAlhII,866
|
|
61
|
+
google/genai/_interactions/_utils/_sync.py,sha256=mLePq9GOEBxScaapheKwO4ON-pCfXpzktYj6a5xdKTQ,2166
|
|
62
|
+
google/genai/_interactions/_utils/_transform.py,sha256=TjAN4LumRdzvMD0rcrFQhrlC31Mivg-c2kgRBIrn4Cg,16528
|
|
63
|
+
google/genai/_interactions/_utils/_typing.py,sha256=Z5S4PcLWBL5GEhqU6j_XKaoh9ANrTSDyMDDTlMB0KJ8,5385
|
|
64
|
+
google/genai/_interactions/_utils/_utils.py,sha256=qWdNSrAUkn_wYeK5YFSeHyZWtEYJQkbh_Sg2t7impKQ,12851
|
|
65
|
+
google/genai/_interactions/resources/__init__.py,sha256=TNMFv_-Zv9ayAgjkecVIBOnIK-goQIIvkvR3WiQl_DA,1207
|
|
66
|
+
google/genai/_interactions/resources/interactions.py,sha256=6D94_eI2VQfxse4X3qfVInAw6SesxknOLtu917xFBMs,56663
|
|
67
|
+
google/genai/_interactions/types/__init__.py,sha256=saQGU4fshC1Oa5JsjjEEjXM_sJSlld3hnvHc8iiZAdQ,7970
|
|
68
|
+
google/genai/_interactions/types/allowed_tools.py,sha256=Hke2IEAT_lc51MCt0_tGZGx3yvE7HTSawIlm-prCCGg,1047
|
|
69
|
+
google/genai/_interactions/types/allowed_tools_param.py,sha256=PAAFKM2qX_Pj_pTxqcc0IQvii9soKLW_scMud2nUwMc,1092
|
|
70
|
+
google/genai/_interactions/types/annotation.py,sha256=MKyItDJXCQ6ofAPjjBjioy7jagQNlpKZ9yqyc4MJcSI,1266
|
|
71
|
+
google/genai/_interactions/types/annotation_param.py,sha256=ZUBT1UE66xVNdaRwjVPP3mcDTCaVUf2Zb5yabNAYpHE,1253
|
|
72
|
+
google/genai/_interactions/types/audio_content.py,sha256=l-itpD1ppizITGRNIeENJze8rxh_RmwmzCmWSYxSg08,1138
|
|
73
|
+
google/genai/_interactions/types/audio_content_param.py,sha256=6kd4Gdmx26eka_GC9o62OCAGUR1FkFWN094iEc6dBFs,1424
|
|
74
|
+
google/genai/_interactions/types/audio_mime_type.py,sha256=kyVb8nPfzkVp6q7nNroQxdPjr4F2tkUmrKU9n4xHZR4,901
|
|
75
|
+
google/genai/_interactions/types/audio_mime_type_param.py,sha256=rGJ8h1nRuLmWeJ9kVD6xPEUDy8yA-S5ZRmYulvIBBaE,947
|
|
76
|
+
google/genai/_interactions/types/code_execution_call_arguments.py,sha256=0EaxrwSqMBrASkdMBDktqgM0ou2iWO1Llq49swL6d0M,1070
|
|
77
|
+
google/genai/_interactions/types/code_execution_call_arguments_param.py,sha256=gvbXJt_cdTCpU7WQo1IeM0Bj-E5Hrj3H2OybcnlO9NE,1045
|
|
78
|
+
google/genai/_interactions/types/code_execution_call_content.py,sha256=PzLOPGmcRxqv8GVCrlgRxDw-7hfgAm1A9N_Btv3i0XU,1190
|
|
79
|
+
google/genai/_interactions/types/code_execution_call_content_param.py,sha256=1ghTk7il0hdUlbXI5Pj61tW1lS27ew-ZtAxna72vXkc,1202
|
|
80
|
+
google/genai/_interactions/types/code_execution_result_content.py,sha256=-xGHcQyez_P46lQpQ9TF_yPIUe6HYQHRVeFd2GJiBuo,1299
|
|
81
|
+
google/genai/_interactions/types/code_execution_result_content_param.py,sha256=7YT4Cjyltgh2C9PWZe2gN1-BX4pW3-M_gn4pwpjpLiI,1260
|
|
82
|
+
google/genai/_interactions/types/content.py,sha256=_TiS-6imVNPtvbD43W0hhAXUvilfWS9W38YR7sGnqdA,2439
|
|
83
|
+
google/genai/_interactions/types/content_delta.py,sha256=HOnRCebySTNzDTj8GchE1gFVnFwqix7HJCufbpb_E4s,9538
|
|
84
|
+
google/genai/_interactions/types/content_param.py,sha256=4SlajVkn5MFuFNo2OU5bpORPYJtWu4_Z3l1DBN96fHs,2594
|
|
85
|
+
google/genai/_interactions/types/content_start.py,sha256=T0ziq1Q2g-ooSLxelsVdHgQB5P_11yRDRL5F17VoN6w,1159
|
|
86
|
+
google/genai/_interactions/types/content_stop.py,sha256=RimYJx4pEMI2JOnOnx2sOhFR8HhrigGy6U5gooxdHSc,1049
|
|
87
|
+
google/genai/_interactions/types/deep_research_agent_config.py,sha256=iKkzEpE5jFoaeIlLE4nNOuf7mPgR1RHI-MUAnexw57I,1082
|
|
88
|
+
google/genai/_interactions/types/deep_research_agent_config_param.py,sha256=K8cZ85618_BNpXWnAsOG4fJV7whihXAT2cMoDqwZo0g,1057
|
|
89
|
+
google/genai/_interactions/types/document_content.py,sha256=48SWcPJ2LPKeCPcgFgC8jo_FYmhF4XpiDGDKfHSl9yg,1167
|
|
90
|
+
google/genai/_interactions/types/document_content_param.py,sha256=hULZQTdsaNrpkPZpudqcLlh_xSUy4QoOpSWsHyz2v30,1456
|
|
91
|
+
google/genai/_interactions/types/document_mime_type.py,sha256=rGlvsd0Ctg9a5SfkYrnVq2-kKroail0-chFjDT9srxM,840
|
|
92
|
+
google/genai/_interactions/types/document_mime_type_param.py,sha256=tH1GaDE__hZUsrb2OJ0ZveuC8etG2JWtIXZewFDi038,886
|
|
93
|
+
google/genai/_interactions/types/dynamic_agent_config.py,sha256=tYsRt0V1ApMz1fUXcRN9KZM6ZmeUGswG1FF96mP8d_8,1607
|
|
94
|
+
google/genai/_interactions/types/dynamic_agent_config_param.py,sha256=wkafw6vuC7eLrK5lfRPjqtLGJYXAy8b9ovmscraLWPo,1060
|
|
95
|
+
google/genai/_interactions/types/error_event.py,sha256=71IlxglFJJIBkKw0UNf-BYZ2LZadSmr_mRLq6_HSxmA,1324
|
|
96
|
+
google/genai/_interactions/types/file_search_call_content.py,sha256=M_vC4WOA8PJ4y7NGjQMYvSTUryXV_uZu8OIev5mNXVk,993
|
|
97
|
+
google/genai/_interactions/types/file_search_call_content_param.py,sha256=QuYKL5IiKizFLWuRz1e3dd_NLHNHN92UeiraBGLx0Yw,1005
|
|
98
|
+
google/genai/_interactions/types/file_search_result_content.py,sha256=aN333JlOMhel-A92tPYCzaYH5SII6vRzHNAiD3tVw4I,1332
|
|
99
|
+
google/genai/_interactions/types/file_search_result_content_param.py,sha256=tDxY2eb7vosePBQt9sFxbPQo9MAvolfKgInwia76WN4,1332
|
|
100
|
+
google/genai/_interactions/types/function.py,sha256=0lh1qn73ZVJ7THAOq0pcfUV_37u9VspSCMlOXVKUed4,1141
|
|
101
|
+
google/genai/_interactions/types/function_call_content.py,sha256=QFjNqGfnc0OHPUds8cCFkDc4Uh45xeEvLkNMO3zKF20,1118
|
|
102
|
+
google/genai/_interactions/types/function_call_content_param.py,sha256=GNj_GRYddGqIy7X-IWsv3kZf1NtFoQvl1ycSLmIp9ZM,1205
|
|
103
|
+
google/genai/_interactions/types/function_param.py,sha256=GMSumys9sCsWix9f4db6Pbc3pg7mGYrQJgWuawiANAY,1119
|
|
104
|
+
google/genai/_interactions/types/function_result_content.py,sha256=clzkD9fq7vTCHSv0NTqnd0oxH92SrIjtaQYWlypaSfE,1542
|
|
105
|
+
google/genai/_interactions/types/function_result_content_param.py,sha256=KXCzjjlovC6OnfW0kH_HSDK88k1-TWhFA7kQ5V09ztM,1628
|
|
106
|
+
google/genai/_interactions/types/generation_config.py,sha256=V_p-dhIBk1jeIXJE8V6vkHzujvxkaZQeDZ8ZBVP4r3w,2124
|
|
107
|
+
google/genai/_interactions/types/generation_config_param.py,sha256=HPJTqdLSlWtrOglBi14Fnq4UAkr21MBs6frYImG90YQ,2084
|
|
108
|
+
google/genai/_interactions/types/google_search_call_arguments.py,sha256=KZbdLhr6kFCZruO-nIkZaq2qm_wMlQjH65xZHwlfOGU,971
|
|
109
|
+
google/genai/_interactions/types/google_search_call_arguments_param.py,sha256=6W-HI1t2QOFJWDy8yfNU88ACq9sxigFufi74AIqMQX8,1033
|
|
110
|
+
google/genai/_interactions/types/google_search_call_content.py,sha256=2kg2ZTZSbVfkmiAZ5i6e_6NARA6KamrTpt2XdNHwdzA,1178
|
|
111
|
+
google/genai/_interactions/types/google_search_call_content_param.py,sha256=ZweBrIzxKXO24L6P8VBF7u75ojca7yymzvdXw8f7gCA,1190
|
|
112
|
+
google/genai/_interactions/types/google_search_result.py,sha256=hrnggr-PKW-JwHk4p1G24h1rr_k3U7DeKK8D0Ys8408,1117
|
|
113
|
+
google/genai/_interactions/types/google_search_result_content.py,sha256=nMzuWYcj2QeBFLUiCx7IaaJDuSHlSO7ccB0l9WDGodc,1375
|
|
114
|
+
google/genai/_interactions/types/google_search_result_content_param.py,sha256=gcLR7zJUbqsIeXPLLjCQa27W3JR7LnDAyo-pZ-3DvB8,1379
|
|
115
|
+
google/genai/_interactions/types/google_search_result_param.py,sha256=MXdWoqxfKxP6tPEYWvmgHzg2xjXyT4AnkD_GjHe9rhg,1104
|
|
116
|
+
google/genai/_interactions/types/image_config.py,sha256=Hffl-OwSqb6GdKP8pWZP2HcaC6MBPSsSXc-htQ0BEEg,1036
|
|
117
|
+
google/genai/_interactions/types/image_config_param.py,sha256=ICmhxQ4rCh7yN1fKT2UE1SRKW9NskC1arBlKTmiURB8,1011
|
|
118
|
+
google/genai/_interactions/types/image_content.py,sha256=iS7zvC4PeLOQfBVS18r7YQ1Eap5hrBr43HT_7HuiOl8,1258
|
|
119
|
+
google/genai/_interactions/types/image_content_param.py,sha256=Qof1jfT9Ey83hI-l63gq-OSqsj1R4kaToN8C4dZFbb8,1527
|
|
120
|
+
google/genai/_interactions/types/image_mime_type.py,sha256=JSM0MElIy62mLFjKiuheHeV0px02I-Nrh8H2yZTDU3I,884
|
|
121
|
+
google/genai/_interactions/types/image_mime_type_param.py,sha256=syGoPn7nm3LoxqFbJhg3q9Bno68ywKU9hzoufbOm8xQ,930
|
|
122
|
+
google/genai/_interactions/types/interaction.py,sha256=awI9GIgg8SHNDq7E-UGi4dQgSJY_uD_hzOP46HzR8oU,4096
|
|
123
|
+
google/genai/_interactions/types/interaction_create_params.py,sha256=DL2huAy_rXYFWGveakzYel_zh7HE5_fA60nha8wPswk,6894
|
|
124
|
+
google/genai/_interactions/types/interaction_event.py,sha256=JkLyt1ikUZrDmQ9SZKc3WxJ9cVytEwu8X70vo3SrcNQ,1175
|
|
125
|
+
google/genai/_interactions/types/interaction_get_params.py,sha256=kJnLjBS-uX6K4JeDdp1gaezb-I58aWtHBl3w8TNn3Os,1628
|
|
126
|
+
google/genai/_interactions/types/interaction_sse_event.py,sha256=v59HGzqpW0ywuytcXYoCoSBnK7IxO1fnArbC6upCugc,1275
|
|
127
|
+
google/genai/_interactions/types/interaction_status_update.py,sha256=QcS8BXpstQz24KxoUl7oCPz6Xo77alytxUsIVMYrt6E,1203
|
|
128
|
+
google/genai/_interactions/types/mcp_server_tool_call_content.py,sha256=J58FpA3gM4EeMSrsCbtzZzmkwhD5r1ChEMw_aT9X-aE,1210
|
|
129
|
+
google/genai/_interactions/types/mcp_server_tool_call_content_param.py,sha256=kCe6nCCQz0M7biVvpItnPdyarbIa_Z_8xxY1rpsuTSA,1307
|
|
130
|
+
google/genai/_interactions/types/mcp_server_tool_result_content.py,sha256=SV9YX_2-jyq_zZ9-Xy0yAGf25VeiX1IGUFOkMSjWe78,1574
|
|
131
|
+
google/genai/_interactions/types/mcp_server_tool_result_content_param.py,sha256=wHeZoDX3MxRomKs_oWM-1mM9whPqm2YEHrKbriHQKwA,1660
|
|
132
|
+
google/genai/_interactions/types/model.py,sha256=OVnuyP5jTgsA2-1ltU-X0ql6QJ0rEojydKuvL6IgQk0,1199
|
|
133
|
+
google/genai/_interactions/types/model_param.py,sha256=EZs6zY8llto1_6b82-hs2dbK0aqqfEkyoLNy27oQMBU,1245
|
|
134
|
+
google/genai/_interactions/types/speech_config.py,sha256=VHJj9KCC9NMO0hbczIZn7KkPnO7ktcDmwajR5xUv11g,1100
|
|
135
|
+
google/genai/_interactions/types/speech_config_param.py,sha256=ByojkgPZiLXUjT5aVmiGyDOtLzKZpG-B8VPJJjjvGmI,1087
|
|
136
|
+
google/genai/_interactions/types/text_content.py,sha256=0Bt31M2Jo1wyNfy0hGFFQ_ElLQgMz9EY-ojqnH9XhyQ,1094
|
|
137
|
+
google/genai/_interactions/types/text_content_param.py,sha256=EQhWFhjXQGwjxozfodH8O8rf7RWUaYn_npzESyvE2mM,1132
|
|
138
|
+
google/genai/_interactions/types/thinking_level.py,sha256=mmoPse7-zDLEqinDsxk7r5NWy21vRSUBur1CEaJxCVk,814
|
|
139
|
+
google/genai/_interactions/types/thought_content.py,sha256=qQI78dluucYjOlr4jqWwk5XsIBqJXu2gytA9cksHHOk,1349
|
|
140
|
+
google/genai/_interactions/types/thought_content_param.py,sha256=3zho-ybUfDtL6LVIq0o0aL-PWkxonm9hrUXDnJjk0tY,1579
|
|
141
|
+
google/genai/_interactions/types/tool.py,sha256=Y6_IKoEK-sYpXZkLfzKlU_-_iqeSqtkfGpAjDzWVYEc,3098
|
|
142
|
+
google/genai/_interactions/types/tool_choice.py,sha256=DwSp7WJDuJTxmV37aAVFWwCYMEr9JSjDSQfshZOOAF8,915
|
|
143
|
+
google/genai/_interactions/types/tool_choice_config.py,sha256=yioQ81sexGoFcyqSEHw0r4oMwe1NP7UtniklbzzkSNM,930
|
|
144
|
+
google/genai/_interactions/types/tool_choice_config_param.py,sha256=OQggpC9EMJv9eJm4rTi0E3GsHizEvpH_OSo-LhKp1fQ,968
|
|
145
|
+
google/genai/_interactions/types/tool_choice_param.py,sha256=AFbr5Lw2g1hJWfDk3sU5hYHoFNAT0fQ9AbYSjl8qboM,977
|
|
146
|
+
google/genai/_interactions/types/tool_choice_type.py,sha256=XtE6ZbwRYXmMYwNBe8zmw_0INIVzwgXfRStVWbmwuAU,816
|
|
147
|
+
google/genai/_interactions/types/tool_param.py,sha256=vDR2p3wi2sRA2YMuj7g8frzhzwJlvEKKhMFU7ubibb0,3111
|
|
148
|
+
google/genai/_interactions/types/turn.py,sha256=-VDFlUj9jbxsRwoCjV4L-C11a5X4T14CP_38_P9-sns,1034
|
|
149
|
+
google/genai/_interactions/types/turn_param.py,sha256=w_7it3yk60s2bBMWfz2dH86TIvVH_KADSLLUZuELWuE,1085
|
|
150
|
+
google/genai/_interactions/types/url_context_call_arguments.py,sha256=JLPsuJmq816_lgT8qq_Sc8tMD0sAax5EmHWvTTMessc,933
|
|
151
|
+
google/genai/_interactions/types/url_context_call_arguments_param.py,sha256=lMBhQVJlaaUgOTZwqwwxoeOJvbFekO21GVBNMvPjt98,995
|
|
152
|
+
google/genai/_interactions/types/url_context_call_content.py,sha256=Gfi7BrkJDUMS3r8pUP5xG7h-6a1gTMYsfJzVZlktRUk,1166
|
|
153
|
+
google/genai/_interactions/types/url_context_call_content_param.py,sha256=IJKvDol32HD0syob0xDzmvmMybAp_Bq8tC3-pifx5M4,1178
|
|
154
|
+
google/genai/_interactions/types/url_context_result.py,sha256=R4TzIKOiG59aA2gbXHIuJFW3C2FukolXOOtUIpCTIM0,1062
|
|
155
|
+
google/genai/_interactions/types/url_context_result_content.py,sha256=3QRDzQH3ED_MbwpkhjpSb-VrkRdUy-Pl-sTg5De9VgM,1353
|
|
156
|
+
google/genai/_interactions/types/url_context_result_content_param.py,sha256=1p7pfNi_vSZ4bu-vwCQOxLcKPdWNjBLZ0vB9ayN08MA,1357
|
|
157
|
+
google/genai/_interactions/types/url_context_result_param.py,sha256=XmQ2EgunZDshXUbuy50J88kY1h2p1REzrIZV4Qp1mDI,1037
|
|
158
|
+
google/genai/_interactions/types/usage.py,sha256=Zjt9nSBHKAFlEgnUh30m9zPGUYQUA5HOnDxEAXWUjp8,3470
|
|
159
|
+
google/genai/_interactions/types/usage_param.py,sha256=EV1seEZUQYmRlNup1Crwk_ugVv84u7uFl0lScBW741w,3263
|
|
160
|
+
google/genai/_interactions/types/video_content.py,sha256=BNhOHQgQXQNjrtclzd0nh1pqF1CBEOUGp2jFI4IoZkM,1257
|
|
161
|
+
google/genai/_interactions/types/video_content_param.py,sha256=WibVINkpETqD-nVCSzgu-iN8D7KT6qE4MovOLlLYD0I,1526
|
|
162
|
+
google/genai/_interactions/types/video_mime_type.py,sha256=W5uRyEoRCcgbP8TF26ddkYwcpFCmNVSGF9aOUKHrRaU,1027
|
|
163
|
+
google/genai/_interactions/types/video_mime_type_param.py,sha256=eg7TeSxg6MXu5_kYiYVpzNlNidDieAqqEYvUWa-xb9k,1073
|
|
164
|
+
google/genai/tests/__init__.py,sha256=gg8QQy0VqB4Cgf50Tbf5AAEf3IdzKsnCPf6IHXXbikY,689
|
|
165
|
+
google/genai/tests/conftest.py,sha256=qUw3yQte5eQo4VG-m3uWwamUy9LaQMbkdBMxuuFjtlU,5021
|
|
166
|
+
google/genai/tests/pytest_helper.py,sha256=KFFRlwtVLJSnRuYzQoe5OID6QplC7Byzgr3nCmZJV98,8287
|
|
167
|
+
google/genai/tests/afc/__init__.py,sha256=AqPvJAlU0sazclZEv9w4ycsKaRW1MNmjCmSWakTe7a8,708
|
|
168
|
+
google/genai/tests/afc/test_convert_if_exist_pydantic_model.py,sha256=A0uBgJAWimtky4P3XKNg2qH9tVEb3aYDzlsASQjTWRQ,8935
|
|
169
|
+
google/genai/tests/afc/test_convert_number_values_for_function_call_args.py,sha256=LLKU67BU_Tib_pmkOyb1hm5Ew9O2d08klLGJEjvYPy4,1769
|
|
170
|
+
google/genai/tests/afc/test_find_afc_incompatible_tool_indexes.py,sha256=byAyWJJkC4a21vM1i1qab3EvOETDdeuQIuXt1a9qhHk,8668
|
|
171
|
+
google/genai/tests/afc/test_generate_content_stream_afc.py,sha256=oO08IofdnxMR4AEXE_Xim0Q8SvkOGdElcX-_podqF18,16572
|
|
172
|
+
google/genai/tests/afc/test_generate_content_stream_afc_thoughts.py,sha256=Fy65xYRvWMlBF7D3h1qy3sO86UVMKQccjCsxtRBr2P8,2261
|
|
173
|
+
google/genai/tests/afc/test_get_function_map.py,sha256=2Byh4Tg2VEGyc2dX9WduiF8lwwOJTTNjeqDsHkNxq-o,4817
|
|
174
|
+
google/genai/tests/afc/test_get_function_response_parts.py,sha256=PFhFqlsjQpK7c7I837kl5EiIVDkie3qiXETFc_5zIT8,8025
|
|
175
|
+
google/genai/tests/afc/test_get_max_remote_calls_for_afc.py,sha256=ZDnRUbTc-7lM0ohDbzbemSa09XPWJkFWCn_9d2WkURM,3361
|
|
176
|
+
google/genai/tests/afc/test_invoke_function_from_dict_args.py,sha256=dOjqzQFLhy6We3Bb-VOI8X5V5I74DI9HNIe5pVwCmQA,7319
|
|
177
|
+
google/genai/tests/afc/test_raise_error_for_afc_incompatible_config.py,sha256=ZjEqqvcKHn-SP-D48Ghr3eOY5cc1IuLiXMNOMZ3oPSM,4803
|
|
178
|
+
google/genai/tests/afc/test_should_append_afc_history.py,sha256=HNEXhwgxD_PN-1FDr-c0z4W6mcMmg2hlO1wVJMuFro4,1656
|
|
179
|
+
google/genai/tests/afc/test_should_disable_afc.py,sha256=nJQzI7uN7wBy1OOgqQx1PFJNOYWzN6Ae98MGwrhEgL4,4951
|
|
180
|
+
google/genai/tests/batches/__init__.py,sha256=iN1nyq74rtvWV5ksbYJ9IQnkyNZA8dZxnHs9fD-yfJs,632
|
|
181
|
+
google/genai/tests/batches/test_cancel.py,sha256=BRhpmy9Vr6wGjigRpQeGxONBJ9j8vNPg6n6p5MOA6z8,2348
|
|
182
|
+
google/genai/tests/batches/test_create.py,sha256=3YBAh1eN4jTQy1pRm8TRC9bzHkAYSszuE2hj0zDEkLw,2356
|
|
183
|
+
google/genai/tests/batches/test_create_with_bigquery.py,sha256=PuS1KdFPVgkKMbzm1T_euqXcGWuBuZo1ciiNlFTP9eE,3674
|
|
184
|
+
google/genai/tests/batches/test_create_with_file.py,sha256=6KGRTNV8cojhMN3PtzD8nzioRi0xYBLInmLpfv6eIrA,2416
|
|
185
|
+
google/genai/tests/batches/test_create_with_gcs.py,sha256=IlEaE56zOqrDQshtsvDnDloS1z1Sw7a9dP_bcZav0L0,4049
|
|
186
|
+
google/genai/tests/batches/test_create_with_inlined_requests.py,sha256=XkfyYLp51LyanPoOYV9zWkrNa3WBxgXpHno-v-rv-oo,7418
|
|
187
|
+
google/genai/tests/batches/test_delete.py,sha256=RhyFKjt1qEFbPvPPzoBfeVvtb3GoLYCamsIz2QmlOzo,2718
|
|
188
|
+
google/genai/tests/batches/test_embedding.py,sha256=o7mKpzwDYArCgUBZ8Twl2hRiN6KS3gKTb_2-PemGUqI,4859
|
|
189
|
+
google/genai/tests/batches/test_get.py,sha256=-KiEi0mptdqh_D28kSAsEO7fsY8ipL2vHW0h0LDFe_4,2269
|
|
190
|
+
google/genai/tests/batches/test_list.py,sha256=SVeUk4QcNsrEHe1S5EZuJB9UepEPK0eszq5uvLCPUv8,2343
|
|
191
|
+
google/genai/tests/caches/__init__.py,sha256=3ox8j_0aP_e-KYnSX9IefvLEE1qz4hnV6rtc0t5cuAg,632
|
|
192
|
+
google/genai/tests/caches/constants.py,sha256=XzAlcPTd8sfu4xhrYuHJecwOKDEThzzoyn4s9BPgPsU,1003
|
|
193
|
+
google/genai/tests/caches/test_create.py,sha256=9SZi9vOgBhnD3Z7fDJs-aYUGoU0XTp8i31t06drylqM,7962
|
|
194
|
+
google/genai/tests/caches/test_create_custom_url.py,sha256=93LcV9BxCtZVDMDagf6etzEVDrk3Z_g85pcYa0EzDxc,4003
|
|
195
|
+
google/genai/tests/caches/test_delete.py,sha256=s2rq7qU87R1UZx4tBIp5PaU6-890XIJd8jXXTE2uOKY,1798
|
|
196
|
+
google/genai/tests/caches/test_delete_custom_url.py,sha256=vHZOr7f7_vIQN8AOiwd8FKg0kUP6FcsLIANo2k_AX6Y,1718
|
|
197
|
+
google/genai/tests/caches/test_get.py,sha256=6MiFJaXsy8XELN1GpAbx9tRWWAN2Q9UBCCBOePag3yQ,3008
|
|
198
|
+
google/genai/tests/caches/test_get_custom_url.py,sha256=6X5yeP50YyetcJPFHtc0EctQURdwTD6fdqyExa-cUm4,1697
|
|
199
|
+
google/genai/tests/caches/test_list.py,sha256=nSOwJBJylpZrThaSV_ah8O6LzVNYHVPMHUUVS_aDc4k,2184
|
|
200
|
+
google/genai/tests/caches/test_update.py,sha256=ZaxyiytKf3Pu0Iiyet-7uEE2WOy4_srqOy0GJNAGeAw,2111
|
|
201
|
+
google/genai/tests/caches/test_update_custom_url.py,sha256=XxncRa2YNCFp2TJFDIdYYznyvEkGGZFzrO4sxXwmFzM,1798
|
|
202
|
+
google/genai/tests/chats/__init__.py,sha256=kOWMJqwDSOryDqDMkmkteFrz-YQtqfIfo9dhD0_r93M,53
|
|
203
|
+
google/genai/tests/chats/test_get_history.py,sha256=_H6K__2dn47_6XZyvEo4uNY9ntdvRW0K4BA20eaYTa4,17897
|
|
204
|
+
google/genai/tests/chats/test_send_message.py,sha256=cs8RFVRCyF0D8sfgMs658OF8TRVA1Mlehf6i0Im6ueQ,24774
|
|
205
|
+
google/genai/tests/chats/test_validate_response.py,sha256=07zq5pJ3rL2zu8o5RKJZKFyZQ9tMZyVXLBrLuADkGUQ,2420
|
|
206
|
+
google/genai/tests/client/__init__.py,sha256=RvGOeb5ZdxjMSh_frXTcrenwE_UsF3_vlDaI-_ml74Y,616
|
|
207
|
+
google/genai/tests/client/test_async_stream.py,sha256=wDrCIvxP9s_nwMI_GMs8hwB-I9bEYbrSLZPstNVWxRw,12755
|
|
208
|
+
google/genai/tests/client/test_client_close.py,sha256=mi0weKH6UkZi6W-6ZnygvdFQOD6fwKCqKl9ZKvlaKvg,6024
|
|
209
|
+
google/genai/tests/client/test_client_initialization.py,sha256=RssmXtJDCw-0VL-s6W_3dsLvU3-Z0D-V2VaTxnvi9yY,55157
|
|
210
|
+
google/genai/tests/client/test_client_requests.py,sha256=ATTGdQPLpTWp25f5apIcWTRjV5aEHQoUDOHRRUpxLlU,7403
|
|
211
|
+
google/genai/tests/client/test_custom_client.py,sha256=1E8fAhPdKYYnKvDJuqPyptEfU9zh1WmOurxlnXg9huc,3239
|
|
212
|
+
google/genai/tests/client/test_http_options.py,sha256=i9NJykXt1MtjK4R9PXPnbQvSt3XkeqO2ca5wqsiHx3A,5484
|
|
213
|
+
google/genai/tests/client/test_replay_client_equality.py,sha256=W6NvtEObD6nkAryHYYNvpQnTvshWh8GVbGE3bjtf8tk,5139
|
|
214
|
+
google/genai/tests/client/test_retries.py,sha256=LF_Any94lzxI9FWP-crGRJmG_Ej9w3iqnMt40V2dsNU,23651
|
|
215
|
+
google/genai/tests/client/test_upload_errors.py,sha256=BV60CZm61XUqcFBxgwDAKV1WFlsxKxQr3ZKyKdgWklA,4712
|
|
216
|
+
google/genai/tests/common/__init__.py,sha256=E0qCY_jgwzKoYZLacliuf7Mk0DsO3mdLyVwBYOK20U4,632
|
|
217
|
+
google/genai/tests/common/test_common.py,sha256=lvbgSiqo7LBYkAw7jy4ig-JytVYs3lBizA5FhoYlmig,26872
|
|
218
|
+
google/genai/tests/documents/__init__.py,sha256=D6WPZHqgHQZJ6zXGqoG5i5_XPykoB3wzwwbDx9lXuz4,635
|
|
219
|
+
google/genai/tests/documents/test_delete.py,sha256=O33JZOTpdhrCRmAudC6YudHpuv46uRD2tpwjJ3s_wTM,1718
|
|
220
|
+
google/genai/tests/documents/test_get.py,sha256=Z-aMd_vxjnxUVDg_4iphCkXJnqDM6ZMaiqa87ip172s,3191
|
|
221
|
+
google/genai/tests/documents/test_list.py,sha256=qgdc__sH88NA8Ptd83BfPsGLaoZntdn0D6eHajr-jl0,2425
|
|
222
|
+
google/genai/tests/errors/__init__.py,sha256=8hdiuOvLIiX_to2O6rc8Af04-85qQuRu62gOhQQyNx8,39
|
|
223
|
+
google/genai/tests/errors/test_api_error.py,sha256=1QgJNSRC-KAIR2Ri7NkKG3uGcU8X-Mr2exL75NvnpME,10954
|
|
224
|
+
google/genai/tests/file_search_stores/__init__.py,sha256=IGpNdiCD34aFEuUWM4QyGS-ekZM29FxL1uM2oRP1E4M,644
|
|
225
|
+
google/genai/tests/file_search_stores/test_create.py,sha256=1a90j-1oOYBPF7DPIxgMFblhxLtmo_KBL3eUrCOLpzI,2090
|
|
226
|
+
google/genai/tests/file_search_stores/test_delete.py,sha256=hRfxcMbaB3Q93izLd0JfS4HOu7sttugV0bLmF6GrGIs,2158
|
|
227
|
+
google/genai/tests/file_search_stores/test_get.py,sha256=I26LR_k_GVsipkDYh4rPoGAJsiSQdrGxybod3C445gM,3348
|
|
228
|
+
google/genai/tests/file_search_stores/test_import_file.py,sha256=-f9uUkzLkz_bVvnQ_mdoX4FyYQ0ofWM-jsAkVrv5OWM,3629
|
|
229
|
+
google/genai/tests/file_search_stores/test_list.py,sha256=hlZz-3F1B6zqvg37Ydz545VFA6tAUJb7iVnzCZwxk20,1860
|
|
230
|
+
google/genai/tests/file_search_stores/test_upload_to_file_search_store.py,sha256=935XNOVKsl0Ml86qvE-Zp30m5CBaG9b4YbYxsmjuDj8,4845
|
|
231
|
+
google/genai/tests/files/__init__.py,sha256=OCJF9_KGxqq2oRETThZwtL2X3K11aKPBjJ6pipkYgWc,630
|
|
232
|
+
google/genai/tests/files/test_delete.py,sha256=mL15UCFIaWwyUNZGvAQEx4YQBIFkZv_RfmMfNaiYXTU,1416
|
|
233
|
+
google/genai/tests/files/test_download.py,sha256=j44qwIhVAcmGSV2EEDgftFfgGoCB0XSR2BE1tSoTnZQ,2341
|
|
234
|
+
google/genai/tests/files/test_get.py,sha256=IJTaDxh6MCPXDMwZgQJY6xnTQOKyIwJt67O2TRwQmoo,1404
|
|
235
|
+
google/genai/tests/files/test_list.py,sha256=BuidbWnOJKeQcl8g78v9HvLJJhgcHSV2Mpb_b-vvh_o,2224
|
|
236
|
+
google/genai/tests/files/test_register.py,sha256=rCFTY3U3_OrovGgTJsCJ2rQbqV4P1lobNObqegLZCME,8368
|
|
237
|
+
google/genai/tests/files/test_register_table.py,sha256=eX6a8KbfMbq_P6tvXccP2dHli1RcXK29nEfx9UOVJrQ,2333
|
|
238
|
+
google/genai/tests/files/test_upload.py,sha256=uPioeL38l9lu2ebenllW3Co1tN5xeCMQuSvHudfRNmU,8372
|
|
239
|
+
google/genai/tests/imports/test_no_optional_imports.py,sha256=fhSdu9gHQYoGYsgbfb3qdoI5cipJJ67Dk5RwSk4vcFE,987
|
|
240
|
+
google/genai/tests/interactions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
|
+
google/genai/tests/interactions/test_auth.py,sha256=t0mvJVZIgfdEcWihIbe-fgaPrnMrVXuKwtaSEoR9J8s,17591
|
|
242
|
+
google/genai/tests/interactions/test_integration.py,sha256=JMOfFkbvDL0IfGr2Dq5_iYpETG4-9D35TYgMVlyy7tc,2318
|
|
243
|
+
google/genai/tests/interactions/test_paths.py,sha256=7JRpeyaGyh5_Lj8BPKlXsskfsG5Xpw07Ns_KcsO17Pg,4441
|
|
244
|
+
google/genai/tests/live/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
245
|
+
google/genai/tests/live/test_live.py,sha256=6UrEodY4H2DSfRa5opbyxlhR-80pCX9B_PSJdbfhsJI,64135
|
|
246
|
+
google/genai/tests/live/test_live_music.py,sha256=VC7QuLQYY4LKkDcfUtizCc-K4JPm7LCd5oDwVBb_Zuc,11252
|
|
247
|
+
google/genai/tests/live/test_live_response.py,sha256=z5xyev6PL0h-WChGFy1QhWiJ8ld2Vt5dHa9PtQ7DN5w,5531
|
|
248
|
+
google/genai/tests/live/test_send_client_content.py,sha256=slHTAKalYzQncLF37stThKcTHEoC2FVQtPghAeIUSWM,4946
|
|
249
|
+
google/genai/tests/live/test_send_realtime_input.py,sha256=jHb-ncYTXwt9Dps8oWu3ofWs99q0kxP4eCvIBjW4WL8,9493
|
|
250
|
+
google/genai/tests/live/test_send_tool_response.py,sha256=ZbrF5VjztSgfDpxPTFCjqSApIYYDwYUGsYIRD-sLimM,6280
|
|
251
|
+
google/genai/tests/local_tokenizer/__init__.py,sha256=5ffJTDv71l3pLvTGF58kb_vFf8TUDpfM5cGWp4DMwDw,641
|
|
252
|
+
google/genai/tests/local_tokenizer/test_local_tokenizer.py,sha256=iktgMtFPfsqT5aZ_uVpBjzT32WqO8kbI9YPpdgqLZaw,12254
|
|
253
|
+
google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py,sha256=mKIA6L9wobG6V_jKFuQF_P0Bv9XZsFikyKVWq9iGRrM,7196
|
|
254
|
+
google/genai/tests/mcp/__init__.py,sha256=VyFzMY6rRcPk9glMUZe0sO_GQlTMFNjfibEqp8iVLkI,635
|
|
255
|
+
google/genai/tests/mcp/test_has_mcp_tool_usage.py,sha256=_TPC55X8pCB7F0Pv7ljQcNKFQ00jjW-tmCHevFh-beY,2411
|
|
256
|
+
google/genai/tests/mcp/test_mcp_to_gemini_tools.py,sha256=qAS-1qvx5tu6xsJmfvy4ESf9nQBemIpaYuPb04uxvDU,5366
|
|
257
|
+
google/genai/tests/mcp/test_parse_config_for_mcp_sessions.py,sha256=NeUBaRmvSjiOVcLAzPrF5piRpIxRWwZoWNUth5NKI54,6467
|
|
258
|
+
google/genai/tests/mcp/test_parse_config_for_mcp_usage.py,sha256=FGPASkuwBT0-m5qhPP4jtuE8F-WK4Jv6Jbmo6F8vuqQ,4283
|
|
259
|
+
google/genai/tests/mcp/test_set_mcp_usage_header.py,sha256=D5-t7z7G2diSXPXVrFj0DuGGMs_2CdRta0tvTYpmt2s,2122
|
|
260
|
+
google/genai/tests/models/__init__.py,sha256=66KctCh8D4-qJya9yM7roDVN_yHdKrfxaJq76uOxFnQ,631
|
|
261
|
+
google/genai/tests/models/constants.py,sha256=7D3RsvXF0NfDWla6z-hIXJftJXRdCd2yPgNb4cWf6Ic,238
|
|
262
|
+
google/genai/tests/models/test_compute_tokens.py,sha256=NSwwV_TEW07yb7_99WgyIz1Xgy2rSs0eCgADs-5Y3zM,4171
|
|
263
|
+
google/genai/tests/models/test_count_tokens.py,sha256=ErSJWMYxnBYmpnvSXhIKn7B-PKlyQiSFYGuk9RLXE8Y,5042
|
|
264
|
+
google/genai/tests/models/test_delete.py,sha256=OBl8mfHychtjWy6v19Das3ikYtBwN3pojXZ-BxL8zpY,3286
|
|
265
|
+
google/genai/tests/models/test_edit_image.py,sha256=2QG3ufsRGqryk9jSgyiTgMnuT8VuSZJvghatwEA3NXo,9369
|
|
266
|
+
google/genai/tests/models/test_embed_content.py,sha256=RncjpLuaRO4sjTzTsiXVK5TJQ3poX2aApbZdqsOuh_0,2933
|
|
267
|
+
google/genai/tests/models/test_function_call_streaming.py,sha256=8R6upyqnrBkajl_OH8V1lYepuMD9KV2oTTIbMfQoX9A,14787
|
|
268
|
+
google/genai/tests/models/test_generate_content.py,sha256=JKKEabFaRP7eG84nA60WwxsUP5-tIG3DGDicXCCiTTk,79158
|
|
269
|
+
google/genai/tests/models/test_generate_content_cached_content.py,sha256=gwZTuvvjtavtYKHZMM6_qOikWSh08LWWZ6z-qGhk9DE,4754
|
|
270
|
+
google/genai/tests/models/test_generate_content_config_zero_value.py,sha256=TNBTFFA9HLidwEF3tV1FV413kilLZWhrnN8MAulxqcc,3335
|
|
271
|
+
google/genai/tests/models/test_generate_content_from_apikey.py,sha256=i-cqsmyfBfkP_Xu-x3l3lO9aUhBLViU4fNuNiDik2JU,1452
|
|
272
|
+
google/genai/tests/models/test_generate_content_http_options.py,sha256=UpYh2wqUBa5XLrVOevB85umcKU74aEbU6gYCkPvGb5M,1232
|
|
273
|
+
google/genai/tests/models/test_generate_content_image_generation.py,sha256=4_kiIr7RMm7D6pPTW_rG8deERpSIbSbJVewZvRNIe8g,4857
|
|
274
|
+
google/genai/tests/models/test_generate_content_mcp.py,sha256=8ikv3aFdCJhDTVAdRbmsmX2ZXWZfuvBJJb0Vm9iVYB8,10050
|
|
275
|
+
google/genai/tests/models/test_generate_content_media_resolution.py,sha256=1lYYd9-Uv1YIgOxfjhqfyTm3AINDsgT5FAaufx5qT7Y,3429
|
|
276
|
+
google/genai/tests/models/test_generate_content_model.py,sha256=hvh6_92l4pscqdC9N0xmTkwqu29fAylQCxj4wC-vL6Q,4491
|
|
277
|
+
google/genai/tests/models/test_generate_content_part.py,sha256=UTGD550fXlqgZbkIDd1v9ScdOMgu7yc3n_z7m4yIXVU,26477
|
|
278
|
+
google/genai/tests/models/test_generate_content_thought.py,sha256=rJsC1HyyJdB8-vcTqgCUhofaodRSdIVNSRSVh93vu_8,2296
|
|
279
|
+
google/genai/tests/models/test_generate_content_tools.py,sha256=E9gljrTDfithjrdClFRHA5bjyW0r82vhnTEgRqskYIk,55636
|
|
280
|
+
google/genai/tests/models/test_generate_images.py,sha256=TNfsQrhja8k4STXixdTwn_YO97jUGOF3-YKFqJu2Fmk,6952
|
|
281
|
+
google/genai/tests/models/test_generate_videos.py,sha256=KCtQdXpTj-WMRWiSVVHwcx_EGTCVGfBCaQfZAujXr24,24102
|
|
282
|
+
google/genai/tests/models/test_get.py,sha256=tW0142USI8uUkwDjfDX52oiuoJ9OKEz5g1sL7fhm-3o,3251
|
|
283
|
+
google/genai/tests/models/test_list.py,sha256=EfIzUNKn4b0MX5OHUh6_ZzPM6jzfoN_FV7SSBd6ajG4,7125
|
|
284
|
+
google/genai/tests/models/test_recontext_image.py,sha256=PNfvtC4ty747Wfk1e_4YsBsZMrAfSsVFMt0lCYVSBbQ,6413
|
|
285
|
+
google/genai/tests/models/test_segment_image.py,sha256=Sp750MAO9hVSElK82f8xjufFBQ-PSAO8IkKNRBGYJoA,5005
|
|
286
|
+
google/genai/tests/models/test_update.py,sha256=H8NITq04d5D1ekzSiU9d8LJZM2BLCmtT5eYl7vK8kCk,2890
|
|
287
|
+
google/genai/tests/models/test_upscale_image.py,sha256=a-Jv1VoPNtszZRqXRV1PkUo4uIYcTRFzL2ssLjpmEuU,5340
|
|
288
|
+
google/genai/tests/operations/__init__.py,sha256=Mw7f19mQhYNr18sj0_eDhmDlpKAHz1VTSPrO4ubbIio,610
|
|
289
|
+
google/genai/tests/operations/test_get.py,sha256=xIyQxRpYdj_7wQ53mkYFaC1YZlXofkaNsYhyUTQrV9s,1130
|
|
290
|
+
google/genai/tests/public_samples/__init__.py,sha256=6CxAr03tXnfNhx-Bs34r6OokIkXlFVw5Ydnv9pHHsJU,635
|
|
291
|
+
google/genai/tests/public_samples/test_gemini_text_only.py,sha256=t256zyR7v1LNZDHrw8F9oXSGud5Fp7xHVZ0SW78oObU,1094
|
|
292
|
+
google/genai/tests/shared/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
293
|
+
google/genai/tests/shared/batches/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
|
|
294
|
+
google/genai/tests/shared/batches/test_create_delete.py,sha256=qydHMtN0eabBnQSE_SWeEW-ktyDLABLXFTTO9bWT7k0,1750
|
|
295
|
+
google/genai/tests/shared/batches/test_create_get_cancel.py,sha256=NX1KtYiLw68lEKaaYpsnsQYe-ZEmCSJVWGXwiIJJPnE,1664
|
|
296
|
+
google/genai/tests/shared/batches/test_list.py,sha256=xtS6EylJ0i1doc_5hW8RFlka5W3QJU2uLaK8qcMK_Eg,1158
|
|
297
|
+
google/genai/tests/shared/caches/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
|
|
298
|
+
google/genai/tests/shared/caches/test_create_get_delete.py,sha256=spP-y12HMcMsZ71SwovpLnQBBWQhhBa8wB__mTIWQtI,2150
|
|
299
|
+
google/genai/tests/shared/caches/test_create_update_get.py,sha256=8KtQCtWEAWrgX6eQGJCEC4qvAGXL1NsNc8Ho6173510,2239
|
|
300
|
+
google/genai/tests/shared/caches/test_list.py,sha256=iUNAHt7GhbCAPYAIm_SR5VuPDXxQ6j4iqIGZ8hHO-oc,1171
|
|
301
|
+
google/genai/tests/shared/chats/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
|
|
302
|
+
google/genai/tests/shared/chats/test_send_message.py,sha256=M8h69CbVrtJhb8vecw0psYsiMKayObrZraadi1wSmxY,1320
|
|
303
|
+
google/genai/tests/shared/chats/test_send_message_stream.py,sha256=PGvNxmIYK1JtFvjCITCH2ArD7AY3Jnz9Vw1t5SMPZSY,1419
|
|
304
|
+
google/genai/tests/shared/files/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
|
|
305
|
+
google/genai/tests/shared/files/test_list.py,sha256=wFKohgtdnW2p5iglRf3AJs_WsnzAkvdtdffWFRfMW9o,1218
|
|
306
|
+
google/genai/tests/shared/files/test_upload_get_delete.py,sha256=f8vTsl-7O8k8OVDhzCctgZxbPQJArrH_ut6an2DXZXI,1589
|
|
307
|
+
google/genai/tests/shared/models/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
|
|
308
|
+
google/genai/tests/shared/models/test_compute_tokens.py,sha256=SvhhQzUxkHLukIXGb09gcjti7PYpV0Vwta9OaWeB1oE,1249
|
|
309
|
+
google/genai/tests/shared/models/test_count_tokens.py,sha256=DQxnGSwmnxn1Cl4V5z8030o--Yes3l1Wwq7fqAtAqI8,1179
|
|
310
|
+
google/genai/tests/shared/models/test_edit_image.py,sha256=-GG2FjXSo7PC0r0OEkxEGPBEM1q2kQlP2EzwWnXB5mI,1954
|
|
311
|
+
google/genai/tests/shared/models/test_embed.py,sha256=HVjNlnjbnbuzNThmqJcOwonxzhav7k8VbgyrEoLCV_I,1137
|
|
312
|
+
google/genai/tests/shared/models/test_generate_content.py,sha256=S2-LeNh_rg6Vh-Kf3ZZ__8080o77i-Ed620XtG7TjxQ,1194
|
|
313
|
+
google/genai/tests/shared/models/test_generate_content_stream.py,sha256=7qR2TLad6zPg5RIZNGxr71tFt899QZM72WyRHZlsnBM,1522
|
|
314
|
+
google/genai/tests/shared/models/test_generate_images.py,sha256=Vqk0hT08FlQ2tQootyn0KSBnOf3Ow-3e0C2khMkDKEY,1280
|
|
315
|
+
google/genai/tests/shared/models/test_generate_videos.py,sha256=jGuu85FNOUIvfNkEL6qFlQTzlAEg6XFpCtZy3K4Vzqs,1136
|
|
316
|
+
google/genai/tests/shared/models/test_list.py,sha256=34LDppIOJMqajBiJpopseybKZFN1ghoWV0RfpjI6wwk,1041
|
|
317
|
+
google/genai/tests/shared/models/test_recontext_image.py,sha256=Ps-VMhneuuwyOi54eGCg5A9QsAkwpqzyRiGv6zF-C7Q,1706
|
|
318
|
+
google/genai/tests/shared/models/test_segment_image.py,sha256=293qOOxZCS5-zeR-DvgUwrsEgqq9ZTWlkNJRT2MZBEs,1588
|
|
319
|
+
google/genai/tests/shared/models/test_upscale_image.py,sha256=usoKZAQhpZRmWidLp73YAOito-L_4jCIK7fLA7Y9apA,1661
|
|
320
|
+
google/genai/tests/shared/tunings/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
321
|
+
google/genai/tests/shared/tunings/test_create.py,sha256=FlUjMlaw2THfwUr7IKXA1SKDnfvTlhmhZrXsGl7Icl4,1440
|
|
322
|
+
google/genai/tests/shared/tunings/test_create_get_cancel.py,sha256=takzmmhktF7CIyRD4pldCFzxU4J8MP5fjBJD-0QZxkA,1798
|
|
323
|
+
google/genai/tests/shared/tunings/test_list.py,sha256=RNRzoPBjY5eq3AECvIekOTaHB1n8FxfaOytZHyOWOgo,1121
|
|
324
|
+
google/genai/tests/tokens/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
325
|
+
google/genai/tests/tokens/test_create.py,sha256=iENP2DZxxxpT8cJf3Iirb1erQ7MxcgYAnm7wMN-Eiwc,5452
|
|
326
|
+
google/genai/tests/transformers/__init__.py,sha256=IjrnP6P8utKkw6Xz9zJNQNzT-dIxIHQkv0FxiHDkOPQ,638
|
|
327
|
+
google/genai/tests/transformers/test_blobs.py,sha256=B6kNKAc_PsC647dIP_d1jnel25WnOXcg9Cyi1vSQHJ4,2403
|
|
328
|
+
google/genai/tests/transformers/test_bytes.py,sha256=F2yxf_s2cxqGzvqf6uhGuNW53MBmbxuBo2Ea--9jFa0,442
|
|
329
|
+
google/genai/tests/transformers/test_duck_type.py,sha256=B8KrsH6mqLZn1JeCq32PhimKm1sLepSZ3b4XvbtLGR4,2395
|
|
330
|
+
google/genai/tests/transformers/test_function_responses.py,sha256=J-KTJBskAxiwL2skRidQN2iumi1uS7nqr_2ACzOlCQc,2307
|
|
331
|
+
google/genai/tests/transformers/test_schema.py,sha256=fMr3_FUw5gE94x7ZGQY5PXYWaz7vSlegxW8bdTPyOGs,19440
|
|
332
|
+
google/genai/tests/transformers/test_t_batch.py,sha256=LfTJ3ZSkbMISsNv6stUOXlYWTDejj7ZSpnsyzj5jQmo,9512
|
|
333
|
+
google/genai/tests/transformers/test_t_content.py,sha256=qs7yYq9GKeLegcch48XtDnUnKxMbyAGazyBZ2bUXerk,4005
|
|
334
|
+
google/genai/tests/transformers/test_t_contents.py,sha256=Evu3CerxHYc2w-7ZplYNU-JRysCrKsOWN_AsHGHQ7HI,10057
|
|
335
|
+
google/genai/tests/transformers/test_t_part.py,sha256=52lwSQN8UYlJUKIhvKgsmSbP2nQt6D8L465mKVtrU-Q,2002
|
|
336
|
+
google/genai/tests/transformers/test_t_parts.py,sha256=aqQ7mY7hMzmFptLrO7in35WVOHUokdzg5P662zJIAAU,1977
|
|
337
|
+
google/genai/tests/transformers/test_t_tool.py,sha256=XVpdyf4e-zgCcSK6mO9Z3tRE9yqbL07Gt-tLcBj1u1w,4080
|
|
338
|
+
google/genai/tests/transformers/test_t_tools.py,sha256=7-iAVLTOvhOQ-Xlu46-oTAsHfCMwEBf0Np-R87nYqZU,5219
|
|
339
|
+
google/genai/tests/tunings/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
340
|
+
google/genai/tests/tunings/test_cancel.py,sha256=wFBQLIY0Ni1AAxFPjEXdEmewn_6Zg_8aBfDL4pvYiT4,1198
|
|
341
|
+
google/genai/tests/tunings/test_end_to_end.py,sha256=ISDpbJGfHuRBV1TZKgAtOfy7WnXD0ilyCt-9HudcWIs,3124
|
|
342
|
+
google/genai/tests/tunings/test_get.py,sha256=Xaji6XYF33DYZ97j-sQZJ9xuUIJfHiP98vi6I2QDtf0,2060
|
|
343
|
+
google/genai/tests/tunings/test_list.py,sha256=VRCLzodimtyLTAL2k-epqTGZcaVRA7F9pSRPi6TeWYU,2263
|
|
344
|
+
google/genai/tests/tunings/test_tune.py,sha256=oRUMys-V5CsvZ0AFOKn8FEsHBRoq4eywjCu1F9SwAOU,11142
|
|
345
|
+
google/genai/tests/types/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
346
|
+
google/genai/tests/types/test_bytes_internal.py,sha256=QNA1sez1FozvrJh7K6-HG2FNBGD2-9VG5ZEp_snPGR4,8632
|
|
347
|
+
google/genai/tests/types/test_bytes_type.py,sha256=cWb_-pBwhnJR2Tfk0PTnLiyvG5k1yKhyc_XgESg81rg,5906
|
|
348
|
+
google/genai/tests/types/test_future.py,sha256=F8eW2IyWXjzhIKmwD49yrScRffFiCL-16dwFbXtkxUI,3211
|
|
349
|
+
google/genai/tests/types/test_optional_types.py,sha256=LCA_pAcOJH_7lniZhVu4YG_Yxx9WSXsr0_xzHQzcl5I,1150
|
|
350
|
+
google/genai/tests/types/test_part_type.py,sha256=a_0eE2CgE7Ju6ePmu3DrupsZZCFiyDUR4DUtD1dmklc,17624
|
|
351
|
+
google/genai/tests/types/test_schema_from_json_schema.py,sha256=WiraJx5mRLW8lKHiWsyHTBYge4jVpeCYklbqGd4BkZQ,13894
|
|
352
|
+
google/genai/tests/types/test_schema_json_schema.py,sha256=zn1gjsXcHTztzmajr8YX3Yb6rWnchjgjw6Yj1NZnG-0,15536
|
|
353
|
+
google/genai/tests/types/test_types.py,sha256=Tqc_PpGo9-XH1xfkAjTCM9xngan_4w__hgpA0BkyA8g,84416
|
|
354
|
+
google_genai-1.58.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
355
|
+
google_genai-1.58.0.dist-info/METADATA,sha256=eEM50svToLZfqft-HjTwp8tmsa-yiq94f6n1Cdn2jv0,53135
|
|
356
|
+
google_genai-1.58.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
357
|
+
google_genai-1.58.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
|
|
358
|
+
google_genai-1.58.0.dist-info/RECORD,,
|