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
|
@@ -1,162 +0,0 @@
|
|
|
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=CrHSu9Hd4rhhEpv5ds5jU_5xk0XwixTY055pRQRbFnE,67216
|
|
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=Ra71M2dTM0B_RL5oiyjP49M_qFayR2QUcmqSBPYVr1M,43830
|
|
11
|
-
google/genai/_local_tokenizer_loader.py,sha256=7yvJfEkWIpw2ueY4ZmoOAamJD-G7bm_9g44glD6bVwM,7147
|
|
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=_8Uy4ziG2N9OAZInqKVXiHWSpJ11DH_shMEfrCEiBLc,15593
|
|
17
|
-
google/genai/_transformers.py,sha256=I19zzGXCrRd64lrBPpeawhBq7vifKn3fNUX9iIJ8Kwo,43266
|
|
18
|
-
google/genai/batches.py,sha256=3uCErp_k2xSF7WmnP_zR859Nko2UAe0xZ61npHAH1EU,78628
|
|
19
|
-
google/genai/caches.py,sha256=MPYIElWqWtXkxiZ2FFCZspRVdT9sTrZzWEkBpQ-XII0,48118
|
|
20
|
-
google/genai/chats.py,sha256=pIBw8d13llupLn4a7vP6vnpbzDcvCCrZZ-Q2r8Cvo7g,16652
|
|
21
|
-
google/genai/client.py,sha256=hEnr1VYP8St7gUzwnZpjBNlhvLpgR1w-3c-bLMxMfFI,21297
|
|
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=g-geVkMmcgAsI7CPJqt3jzucEcjQf6He1fhnscUdxvs,31766
|
|
26
|
-
google/genai/interactions.py,sha256=GLpo-rTdxb1JfL3LXE0c52JWaEGloLnPeCI9hoO_M2g,642
|
|
27
|
-
google/genai/live.py,sha256=oe5tcR3nvvHzPe7RxZx-InZJW_dH-MtFH3NEMk7VuWc,41771
|
|
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=EKw9LpEIwZzOYFbRzJ8jk0UO5CnRwO6dBxgy7g9Xjn8,238406
|
|
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=a-PY6BtT0kr8BmX8N7mbK2--VSZ3iGto3Y0SrwHoeaw,648704
|
|
37
|
-
google/genai/version.py,sha256=1-WFLRfVzpPivdFCsMUiferjcYyznRIPYVsXtTz2o_4,627
|
|
38
|
-
google/genai/_interactions/__init__.py,sha256=-G17C_xmrnumwpH4kpFEGd5l9-Y5UnZx3RLbGuCPYZc,3398
|
|
39
|
-
google/genai/_interactions/_base_client.py,sha256=sXaUr_MAT2DiKoZDDGlHlefMmKXjz-97tZjRY8QJw1A,68286
|
|
40
|
-
google/genai/_interactions/_client.py,sha256=QWqbkzAwjNpoz6gBetWYYSeWHMLVkFQm67-1HzbRUxY,18775
|
|
41
|
-
google/genai/_interactions/_compat.py,sha256=1HosuxO1kuZL6GwDmAoJD5kY999gjys4ifLdhXiJ4KI,7139
|
|
42
|
-
google/genai/_interactions/_constants.py,sha256=t7rpey7f7Z65WNYx8OzR-VGkTEHaz_WCLOREzHLjFhk,1039
|
|
43
|
-
google/genai/_interactions/_exceptions.py,sha256=XvtN0Ir69uwzlI9s-2gvXZJyDa3NZ0IqsMapC9nM8Bc,3825
|
|
44
|
-
google/genai/_interactions/_files.py,sha256=K7qgCZWoSaNI4RrdY1cUnNMXNF3Usq1IgCvzqwFgfMQ,4144
|
|
45
|
-
google/genai/_interactions/_models.py,sha256=naQPvxL0gipx0FTLC3jOCd2aG3eINFVq-WAUTsVOX8Y,32436
|
|
46
|
-
google/genai/_interactions/_qs.py,sha256=ZaB5ZsbJnq0L7s-Y30_7k1jAVNAgcPAh45xa2xeE1GQ,5405
|
|
47
|
-
google/genai/_interactions/_resource.py,sha256=2SnZ1mvldUzurojYs_Pg_aItzP5A9WmhjjMCh_dXnCg,1773
|
|
48
|
-
google/genai/_interactions/_response.py,sha256=rJ8tQXfKYgFxjxML63XGSQuH_Su9OQfqGtw0ann1iT4,29507
|
|
49
|
-
google/genai/_interactions/_streaming.py,sha256=bjjyV9iuZxEOP0PaQGSA-_xIeK3Yuip2qb2tTqRkJn4,11016
|
|
50
|
-
google/genai/_interactions/_types.py,sha256=OZXQrS3qydYn9F-YnTDrxv5lBoKiTLha3fr202M5QOQ,7892
|
|
51
|
-
google/genai/_interactions/_version.py,sha256=HYUoiFQBODx2RJNZpIxeUnGFUe8Gc9FEO6tSeZQgO-I,668
|
|
52
|
-
google/genai/_interactions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
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=M3NQZxHLRihkBa_2cxqP6lyB7wbpXp0ytEs1ZXT3PCo,7566
|
|
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=dIm3CIMV-bq_ZZD6LoMHpGo9Yi8pQ9-DAjJZgKuPg7o,1077
|
|
73
|
-
google/genai/_interactions/types/audio_content_param.py,sha256=09BDVJ34w5EVadJfBK0SRpgIKP5W6hR5QbUiXlOR6xs,1363
|
|
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_delta.py,sha256=Ej1MUwuOjYEndyLIbcEOXeP_zTZ43CI3pvPw-RKV3hM,9312
|
|
83
|
-
google/genai/_interactions/types/content_start.py,sha256=v3gK_l4Yn_RoCdRPpHePNX7I7v6ZMO59N2-C8BUQXwA,2758
|
|
84
|
-
google/genai/_interactions/types/content_stop.py,sha256=gEBJge1galuttrwkgJqMImSVVVleRNDIIO0QjZAb0gA,1053
|
|
85
|
-
google/genai/_interactions/types/deep_research_agent_config.py,sha256=iKkzEpE5jFoaeIlLE4nNOuf7mPgR1RHI-MUAnexw57I,1082
|
|
86
|
-
google/genai/_interactions/types/deep_research_agent_config_param.py,sha256=K8cZ85618_BNpXWnAsOG4fJV7whihXAT2cMoDqwZo0g,1057
|
|
87
|
-
google/genai/_interactions/types/document_content.py,sha256=DlwJ0zJ5pjQI9s_I3wZlYaDg4ubYHEcxnEGbC7Ti0B0,1100
|
|
88
|
-
google/genai/_interactions/types/document_content_param.py,sha256=hyGaTJEHsvOoXMUaavhylwZhevVEw9vAQv66aD7_UcI,1389
|
|
89
|
-
google/genai/_interactions/types/document_mime_type.py,sha256=rGlvsd0Ctg9a5SfkYrnVq2-kKroail0-chFjDT9srxM,840
|
|
90
|
-
google/genai/_interactions/types/document_mime_type_param.py,sha256=tH1GaDE__hZUsrb2OJ0ZveuC8etG2JWtIXZewFDi038,886
|
|
91
|
-
google/genai/_interactions/types/dynamic_agent_config.py,sha256=tYsRt0V1ApMz1fUXcRN9KZM6ZmeUGswG1FF96mP8d_8,1607
|
|
92
|
-
google/genai/_interactions/types/dynamic_agent_config_param.py,sha256=wkafw6vuC7eLrK5lfRPjqtLGJYXAy8b9ovmscraLWPo,1060
|
|
93
|
-
google/genai/_interactions/types/error_event.py,sha256=DYHKnCft2l1LLs-LEt37Ic6TTsXxbxjhqC_pdMblGKg,1328
|
|
94
|
-
google/genai/_interactions/types/file_search_result_content.py,sha256=aN333JlOMhel-A92tPYCzaYH5SII6vRzHNAiD3tVw4I,1332
|
|
95
|
-
google/genai/_interactions/types/file_search_result_content_param.py,sha256=tDxY2eb7vosePBQt9sFxbPQo9MAvolfKgInwia76WN4,1332
|
|
96
|
-
google/genai/_interactions/types/function.py,sha256=0lh1qn73ZVJ7THAOq0pcfUV_37u9VspSCMlOXVKUed4,1141
|
|
97
|
-
google/genai/_interactions/types/function_call_content.py,sha256=QFjNqGfnc0OHPUds8cCFkDc4Uh45xeEvLkNMO3zKF20,1118
|
|
98
|
-
google/genai/_interactions/types/function_call_content_param.py,sha256=GNj_GRYddGqIy7X-IWsv3kZf1NtFoQvl1ycSLmIp9ZM,1205
|
|
99
|
-
google/genai/_interactions/types/function_param.py,sha256=GMSumys9sCsWix9f4db6Pbc3pg7mGYrQJgWuawiANAY,1119
|
|
100
|
-
google/genai/_interactions/types/function_result_content.py,sha256=clzkD9fq7vTCHSv0NTqnd0oxH92SrIjtaQYWlypaSfE,1542
|
|
101
|
-
google/genai/_interactions/types/function_result_content_param.py,sha256=KXCzjjlovC6OnfW0kH_HSDK88k1-TWhFA7kQ5V09ztM,1628
|
|
102
|
-
google/genai/_interactions/types/generation_config.py,sha256=J1SsfXD6d_EwGW9xnhmxXqCkiVmOdjhhVNiHwpoTxik,1991
|
|
103
|
-
google/genai/_interactions/types/generation_config_param.py,sha256=3x83t0S4Du3-W5QWoYZsw6jfQlDSQnQlgPHYt8Jyb_0,1952
|
|
104
|
-
google/genai/_interactions/types/google_search_call_arguments.py,sha256=KZbdLhr6kFCZruO-nIkZaq2qm_wMlQjH65xZHwlfOGU,971
|
|
105
|
-
google/genai/_interactions/types/google_search_call_arguments_param.py,sha256=6W-HI1t2QOFJWDy8yfNU88ACq9sxigFufi74AIqMQX8,1033
|
|
106
|
-
google/genai/_interactions/types/google_search_call_content.py,sha256=2kg2ZTZSbVfkmiAZ5i6e_6NARA6KamrTpt2XdNHwdzA,1178
|
|
107
|
-
google/genai/_interactions/types/google_search_call_content_param.py,sha256=ZweBrIzxKXO24L6P8VBF7u75ojca7yymzvdXw8f7gCA,1190
|
|
108
|
-
google/genai/_interactions/types/google_search_result.py,sha256=hrnggr-PKW-JwHk4p1G24h1rr_k3U7DeKK8D0Ys8408,1117
|
|
109
|
-
google/genai/_interactions/types/google_search_result_content.py,sha256=nMzuWYcj2QeBFLUiCx7IaaJDuSHlSO7ccB0l9WDGodc,1375
|
|
110
|
-
google/genai/_interactions/types/google_search_result_content_param.py,sha256=gcLR7zJUbqsIeXPLLjCQa27W3JR7LnDAyo-pZ-3DvB8,1379
|
|
111
|
-
google/genai/_interactions/types/google_search_result_param.py,sha256=MXdWoqxfKxP6tPEYWvmgHzg2xjXyT4AnkD_GjHe9rhg,1104
|
|
112
|
-
google/genai/_interactions/types/image_content.py,sha256=2ddYQLwiORq8Q_aVCE5AXdOm14oGmzszy2xXw4fIZWQ,1197
|
|
113
|
-
google/genai/_interactions/types/image_content_param.py,sha256=o3YgzqhxgOLPR5iKni_YrcqHkQJM6DaooLtjIIBHG54,1466
|
|
114
|
-
google/genai/_interactions/types/image_mime_type.py,sha256=JSM0MElIy62mLFjKiuheHeV0px02I-Nrh8H2yZTDU3I,884
|
|
115
|
-
google/genai/_interactions/types/image_mime_type_param.py,sha256=syGoPn7nm3LoxqFbJhg3q9Bno68ywKU9hzoufbOm8xQ,930
|
|
116
|
-
google/genai/_interactions/types/interaction.py,sha256=iHLsZyj76OfmXg4wXzl_0f2ULYxtuXt6tDwoHz1cEUA,5355
|
|
117
|
-
google/genai/_interactions/types/interaction_create_params.py,sha256=9AizkOR2bl4MuDTjjzT0hL8fXEcbJcPwSPXjZpTMKes,7322
|
|
118
|
-
google/genai/_interactions/types/interaction_event.py,sha256=CDV6XDgpsbtbtDEDBSrCQEqIltQyIGfYLtdvtEXiLRk,1179
|
|
119
|
-
google/genai/_interactions/types/interaction_get_params.py,sha256=kJnLjBS-uX6K4JeDdp1gaezb-I58aWtHBl3w8TNn3Os,1628
|
|
120
|
-
google/genai/_interactions/types/interaction_sse_event.py,sha256=oZwSYZyNFpaOwa3BcraHdiCjZ14ttv8qjKRUvSQHhVA,1172
|
|
121
|
-
google/genai/_interactions/types/interaction_status_update.py,sha256=FbtOHzybStxWVb1o30ppXPJ8F9f-Cgq9LgeV4VU_Jc0,1207
|
|
122
|
-
google/genai/_interactions/types/mcp_server_tool_call_content.py,sha256=J58FpA3gM4EeMSrsCbtzZzmkwhD5r1ChEMw_aT9X-aE,1210
|
|
123
|
-
google/genai/_interactions/types/mcp_server_tool_call_content_param.py,sha256=kCe6nCCQz0M7biVvpItnPdyarbIa_Z_8xxY1rpsuTSA,1307
|
|
124
|
-
google/genai/_interactions/types/mcp_server_tool_result_content.py,sha256=SV9YX_2-jyq_zZ9-Xy0yAGf25VeiX1IGUFOkMSjWe78,1574
|
|
125
|
-
google/genai/_interactions/types/mcp_server_tool_result_content_param.py,sha256=wHeZoDX3MxRomKs_oWM-1mM9whPqm2YEHrKbriHQKwA,1660
|
|
126
|
-
google/genai/_interactions/types/model.py,sha256=oaThuxzODsttc6PmkOTAqisa1KV6OEz578xJ2Imfe8g,1165
|
|
127
|
-
google/genai/_interactions/types/model_param.py,sha256=g6yMfGxz-WUJAmTVM3kR1oszmZCW3zy60zNu2Xssopo,1211
|
|
128
|
-
google/genai/_interactions/types/speech_config.py,sha256=VHJj9KCC9NMO0hbczIZn7KkPnO7ktcDmwajR5xUv11g,1100
|
|
129
|
-
google/genai/_interactions/types/speech_config_param.py,sha256=ByojkgPZiLXUjT5aVmiGyDOtLzKZpG-B8VPJJjjvGmI,1087
|
|
130
|
-
google/genai/_interactions/types/text_content.py,sha256=0Bt31M2Jo1wyNfy0hGFFQ_ElLQgMz9EY-ojqnH9XhyQ,1094
|
|
131
|
-
google/genai/_interactions/types/text_content_param.py,sha256=EQhWFhjXQGwjxozfodH8O8rf7RWUaYn_npzESyvE2mM,1132
|
|
132
|
-
google/genai/_interactions/types/thinking_level.py,sha256=mmoPse7-zDLEqinDsxk7r5NWy21vRSUBur1CEaJxCVk,814
|
|
133
|
-
google/genai/_interactions/types/thought_content.py,sha256=qQI78dluucYjOlr4jqWwk5XsIBqJXu2gytA9cksHHOk,1349
|
|
134
|
-
google/genai/_interactions/types/thought_content_param.py,sha256=3zho-ybUfDtL6LVIq0o0aL-PWkxonm9hrUXDnJjk0tY,1579
|
|
135
|
-
google/genai/_interactions/types/tool.py,sha256=Y6_IKoEK-sYpXZkLfzKlU_-_iqeSqtkfGpAjDzWVYEc,3098
|
|
136
|
-
google/genai/_interactions/types/tool_choice.py,sha256=DwSp7WJDuJTxmV37aAVFWwCYMEr9JSjDSQfshZOOAF8,915
|
|
137
|
-
google/genai/_interactions/types/tool_choice_config.py,sha256=yioQ81sexGoFcyqSEHw0r4oMwe1NP7UtniklbzzkSNM,930
|
|
138
|
-
google/genai/_interactions/types/tool_choice_config_param.py,sha256=OQggpC9EMJv9eJm4rTi0E3GsHizEvpH_OSo-LhKp1fQ,968
|
|
139
|
-
google/genai/_interactions/types/tool_choice_param.py,sha256=AFbr5Lw2g1hJWfDk3sU5hYHoFNAT0fQ9AbYSjl8qboM,977
|
|
140
|
-
google/genai/_interactions/types/tool_choice_type.py,sha256=XtE6ZbwRYXmMYwNBe8zmw_0INIVzwgXfRStVWbmwuAU,816
|
|
141
|
-
google/genai/_interactions/types/tool_param.py,sha256=vDR2p3wi2sRA2YMuj7g8frzhzwJlvEKKhMFU7ubibb0,3111
|
|
142
|
-
google/genai/_interactions/types/turn.py,sha256=3miXeXGw74UOeFvaTTEPx0Br6HYQM3l4v_LyDIJpcFY,2687
|
|
143
|
-
google/genai/_interactions/types/turn_param.py,sha256=dhf4pXBARCFS_zlMYlj8Bjuhy7n0VFhIzh0LuXU-IOo,2790
|
|
144
|
-
google/genai/_interactions/types/url_context_call_arguments.py,sha256=JLPsuJmq816_lgT8qq_Sc8tMD0sAax5EmHWvTTMessc,933
|
|
145
|
-
google/genai/_interactions/types/url_context_call_arguments_param.py,sha256=lMBhQVJlaaUgOTZwqwwxoeOJvbFekO21GVBNMvPjt98,995
|
|
146
|
-
google/genai/_interactions/types/url_context_call_content.py,sha256=Gfi7BrkJDUMS3r8pUP5xG7h-6a1gTMYsfJzVZlktRUk,1166
|
|
147
|
-
google/genai/_interactions/types/url_context_call_content_param.py,sha256=IJKvDol32HD0syob0xDzmvmMybAp_Bq8tC3-pifx5M4,1178
|
|
148
|
-
google/genai/_interactions/types/url_context_result.py,sha256=R4TzIKOiG59aA2gbXHIuJFW3C2FukolXOOtUIpCTIM0,1062
|
|
149
|
-
google/genai/_interactions/types/url_context_result_content.py,sha256=3QRDzQH3ED_MbwpkhjpSb-VrkRdUy-Pl-sTg5De9VgM,1353
|
|
150
|
-
google/genai/_interactions/types/url_context_result_content_param.py,sha256=1p7pfNi_vSZ4bu-vwCQOxLcKPdWNjBLZ0vB9ayN08MA,1357
|
|
151
|
-
google/genai/_interactions/types/url_context_result_param.py,sha256=XmQ2EgunZDshXUbuy50J88kY1h2p1REzrIZV4Qp1mDI,1037
|
|
152
|
-
google/genai/_interactions/types/usage.py,sha256=4_IBkdFED7YUtwRrFPkMHGlOHxTbjbpDZMkUw5t-JOM,3472
|
|
153
|
-
google/genai/_interactions/types/usage_param.py,sha256=SeaR5IlizjKB3tKJvm-z65ggVhKUZWknu2EExzSVDDc,3265
|
|
154
|
-
google/genai/_interactions/types/video_content.py,sha256=-uRbyjQRhdyMIUHbrDDLw95ZyuE2adgRCzXn6jgdf2M,1196
|
|
155
|
-
google/genai/_interactions/types/video_content_param.py,sha256=SlpqbbPl_hZQaBd4qdm9TcEerCmVVIc5E_dmMwhCdhk,1465
|
|
156
|
-
google/genai/_interactions/types/video_mime_type.py,sha256=W5uRyEoRCcgbP8TF26ddkYwcpFCmNVSGF9aOUKHrRaU,1027
|
|
157
|
-
google/genai/_interactions/types/video_mime_type_param.py,sha256=eg7TeSxg6MXu5_kYiYVpzNlNidDieAqqEYvUWa-xb9k,1073
|
|
158
|
-
google_genai-1.56.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
159
|
-
google_genai-1.56.0.dist-info/METADATA,sha256=PNE193fBhgLSf3PEzC4mTPtowJPjZ5hH9gd6_vnAqqY,53313
|
|
160
|
-
google_genai-1.56.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
161
|
-
google_genai-1.56.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
|
|
162
|
-
google_genai-1.56.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|