google-genai 1.55.0__py3-none-any.whl → 1.57.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 +37 -18
- google/genai/_interactions/_base_client.py +8 -2
- google/genai/_interactions/resources/interactions.py +6 -6
- google/genai/_interactions/types/__init__.py +4 -0
- google/genai/_interactions/types/audio_content.py +0 -1
- google/genai/_interactions/types/audio_content_param.py +0 -1
- google/genai/_interactions/types/code_execution_call_content.py +0 -1
- google/genai/_interactions/types/code_execution_call_content_param.py +0 -1
- google/genai/_interactions/types/code_execution_result_content.py +0 -1
- google/genai/_interactions/types/code_execution_result_content_param.py +0 -1
- google/genai/_interactions/types/content.py +63 -0
- google/genai/_interactions/types/content_delta.py +7 -23
- google/genai/_interactions/types/content_param.py +61 -0
- google/genai/_interactions/types/content_start.py +4 -44
- google/genai/_interactions/types/deep_research_agent_config.py +0 -1
- google/genai/_interactions/types/deep_research_agent_config_param.py +0 -1
- google/genai/_interactions/types/document_content.py +3 -2
- google/genai/_interactions/types/document_content_param.py +3 -2
- google/genai/_interactions/types/document_mime_type.py +23 -0
- google/genai/_interactions/types/document_mime_type_param.py +25 -0
- google/genai/_interactions/types/dynamic_agent_config.py +0 -1
- google/genai/_interactions/types/dynamic_agent_config_param.py +0 -1
- google/genai/_interactions/types/file_search_result_content.py +0 -1
- google/genai/_interactions/types/file_search_result_content_param.py +0 -1
- google/genai/_interactions/types/function_call_content.py +0 -1
- google/genai/_interactions/types/function_call_content_param.py +0 -1
- google/genai/_interactions/types/function_result_content.py +1 -2
- google/genai/_interactions/types/function_result_content_param.py +1 -2
- google/genai/_interactions/types/google_search_call_content.py +0 -1
- google/genai/_interactions/types/google_search_call_content_param.py +0 -1
- google/genai/_interactions/types/google_search_result_content.py +0 -1
- google/genai/_interactions/types/google_search_result_content_param.py +0 -1
- google/genai/_interactions/types/image_content.py +1 -2
- google/genai/_interactions/types/image_content_param.py +1 -2
- google/genai/_interactions/types/interaction.py +4 -52
- google/genai/_interactions/types/interaction_create_params.py +2 -22
- google/genai/_interactions/types/mcp_server_tool_call_content.py +0 -1
- google/genai/_interactions/types/mcp_server_tool_call_content_param.py +0 -1
- google/genai/_interactions/types/mcp_server_tool_result_content.py +1 -2
- google/genai/_interactions/types/mcp_server_tool_result_content_param.py +1 -2
- google/genai/_interactions/types/model.py +1 -0
- google/genai/_interactions/types/model_param.py +1 -0
- google/genai/_interactions/types/text_content.py +0 -1
- google/genai/_interactions/types/text_content_param.py +0 -1
- google/genai/_interactions/types/thinking_level.py +1 -1
- google/genai/_interactions/types/thought_content.py +0 -1
- google/genai/_interactions/types/thought_content_param.py +0 -1
- google/genai/_interactions/types/turn.py +3 -44
- google/genai/_interactions/types/turn_param.py +4 -40
- google/genai/_interactions/types/url_context_call_content.py +0 -1
- google/genai/_interactions/types/url_context_call_content_param.py +0 -1
- google/genai/_interactions/types/url_context_result_content.py +0 -1
- google/genai/_interactions/types/url_context_result_content_param.py +0 -1
- google/genai/_interactions/types/usage.py +1 -1
- google/genai/_interactions/types/usage_param.py +1 -1
- google/genai/_interactions/types/video_content.py +1 -2
- google/genai/_interactions/types/video_content_param.py +1 -2
- google/genai/_live_converters.py +36 -64
- google/genai/_local_tokenizer_loader.py +1 -0
- google/genai/_tokens_converters.py +14 -14
- google/genai/batches.py +27 -22
- google/genai/caches.py +42 -42
- google/genai/chats.py +0 -2
- google/genai/client.py +3 -1
- google/genai/files.py +224 -0
- google/genai/models.py +57 -72
- google/genai/tests/chats/test_get_history.py +9 -8
- google/genai/tests/chats/test_validate_response.py +1 -1
- google/genai/tests/client/test_client_requests.py +1 -135
- google/genai/tests/files/test_register.py +272 -0
- google/genai/tests/files/test_register_table.py +70 -0
- google/genai/tests/interactions/test_auth.py +479 -0
- google/genai/tests/interactions/test_integration.py +2 -0
- google/genai/tests/interactions/test_paths.py +105 -0
- google/genai/tests/live/test_live.py +2 -36
- google/genai/tests/local_tokenizer/test_local_tokenizer.py +1 -1
- google/genai/tests/models/test_function_call_streaming.py +90 -90
- google/genai/tests/models/test_generate_content.py +1 -2
- google/genai/tests/models/test_recontext_image.py +1 -1
- google/genai/tests/pytest_helper.py +17 -0
- google/genai/tunings.py +1 -27
- google/genai/types.py +603 -518
- google/genai/version.py +1 -1
- {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/METADATA +224 -22
- {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/RECORD +88 -80
- {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/WHEEL +0 -0
- {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/licenses/LICENSE +0 -0
- {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/top_level.txt +0 -0
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
google/genai/__init__.py,sha256=dIAk6AHhyy3b77cVKPvDyrZzkd9ibddrHZuieCq_eaA,756
|
|
2
2
|
google/genai/_adapters.py,sha256=Kok38miNYJff2n--l0zEK_hbq0y2rWOH7k75J7SMYbQ,1744
|
|
3
|
-
google/genai/_api_client.py,sha256=
|
|
3
|
+
google/genai/_api_client.py,sha256=dNM9pT0-RTVnH-bBV7zBX4vPOF5mCUTFbv7tVvFrxQg,67741
|
|
4
4
|
google/genai/_api_module.py,sha256=lj8eUWx8_LBGBz-49qz6_ywWm3GYp3d8Bg5JoOHbtbI,902
|
|
5
5
|
google/genai/_automatic_function_calling_util.py,sha256=xXNkJR-pzSMkeSXMz3Jw-kMHFbTJEiRJ3wocuwtWW4I,11627
|
|
6
6
|
google/genai/_base_transformers.py,sha256=wljA6m4tLl4XLGlBC2DNOls5N9-X9tffBq0M7i8jgpw,1034
|
|
7
7
|
google/genai/_base_url.py,sha256=E5H4dew14Y16qfnB3XRnjSCi19cJVlkaMNoM_8ip-PM,1597
|
|
8
8
|
google/genai/_common.py,sha256=9HOP8GtEnTGTF-5A92hQdcPWeaCS6ig3vgnmm-8jiTY,25421
|
|
9
9
|
google/genai/_extra_utils.py,sha256=GXsUfyKAPZaW9_ySvdzSAXThvuzaKwXcAmdHW_hoHpY,25309
|
|
10
|
-
google/genai/_live_converters.py,sha256=
|
|
11
|
-
google/genai/_local_tokenizer_loader.py,sha256=
|
|
10
|
+
google/genai/_live_converters.py,sha256=GUy1Z6v_fIGje8mPb9N1ocV0MzBpxvdH5-cDPNBWru8,43830
|
|
11
|
+
google/genai/_local_tokenizer_loader.py,sha256=YdnnFPXB8eNZ3VhzTzHovE7ZSD3n729wpV42aoOLd7c,7185
|
|
12
12
|
google/genai/_mcp_utils.py,sha256=HuWJ8FUjquv40Mf_QjcL5r5yXWrS-JjINsjlOSbbyAc,3870
|
|
13
13
|
google/genai/_operations_converters.py,sha256=zw8DqkgJWHphrw9waAjAiH98QbE2Rnum3zGm02dHQWo,11695
|
|
14
14
|
google/genai/_replay_api_client.py,sha256=-sZY8pM8JulqTfuqIKaKHCy9MNXF7HJnX6fCzyTMpS0,22617
|
|
15
15
|
google/genai/_test_api_client.py,sha256=4ruFIy5_1qcbKqqIBu3HSQbpSOBrxiecBtDZaTGFR1s,4797
|
|
16
|
-
google/genai/_tokens_converters.py,sha256=
|
|
16
|
+
google/genai/_tokens_converters.py,sha256=ILPWqhCU1MP2xi0Zg_Zz3fmZ37Yr-hGyg6iey9c4u_E,15593
|
|
17
17
|
google/genai/_transformers.py,sha256=I19zzGXCrRd64lrBPpeawhBq7vifKn3fNUX9iIJ8Kwo,43266
|
|
18
|
-
google/genai/batches.py,sha256=
|
|
19
|
-
google/genai/caches.py,sha256=
|
|
20
|
-
google/genai/chats.py,sha256=
|
|
21
|
-
google/genai/client.py,sha256=
|
|
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=hEnr1VYP8St7gUzwnZpjBNlhvLpgR1w-3c-bLMxMfFI,21297
|
|
22
22
|
google/genai/documents.py,sha256=GuYWVgRaYBzHv9aMgcZBrVkFlpBeaAeZsfhgvC_SLTA,16218
|
|
23
23
|
google/genai/errors.py,sha256=2Iux-5iGUJzEB6OWE3R18SckMEvNimOfpNCQIYL6cn8,8118
|
|
24
24
|
google/genai/file_search_stores.py,sha256=4EW_hRjkaGYu4gbQyNbiswTWk5nUgooxB5pqMi_WAME,41418
|
|
25
|
-
google/genai/files.py,sha256=
|
|
25
|
+
google/genai/files.py,sha256=omKew0R3nnilVSnCfijaJ_VFDIY5IjefrQWWuK2WOHo,39019
|
|
26
26
|
google/genai/interactions.py,sha256=GLpo-rTdxb1JfL3LXE0c52JWaEGloLnPeCI9hoO_M2g,642
|
|
27
27
|
google/genai/live.py,sha256=oe5tcR3nvvHzPe7RxZx-InZJW_dH-MtFH3NEMk7VuWc,41771
|
|
28
28
|
google/genai/live_music.py,sha256=Y7I7jh5SAKgyjBIMLboH0oTnZJ18uOT2SpRDKURvp94,6783
|
|
29
29
|
google/genai/local_tokenizer.py,sha256=EKZ72cV2Zfutlo_efMOPnLRNZN4WQe57rD3G80cF340,14109
|
|
30
|
-
google/genai/models.py,sha256=
|
|
30
|
+
google/genai/models.py,sha256=9TfxuOxJwfMqjL435D7vdgf9Gwn77gqRf_8_5aGdnN8,238719
|
|
31
31
|
google/genai/operations.py,sha256=FXJOnYp2HA5Xqa5mHW67mSa9p1D_EaGGyUoKc09xFPQ,16384
|
|
32
32
|
google/genai/pagers.py,sha256=1i8NXDuKuQznFin5H5-I0hmj6H5YMTYsEJP7S0ITSbY,7158
|
|
33
33
|
google/genai/py.typed,sha256=RsMFoLwBkAvY05t6izop4UHZtqOPLiKp3GkIEizzmQY,40
|
|
34
34
|
google/genai/tokens.py,sha256=4BPW0gGWFeFVk3INkuY2tfREnsrvzQDhouvRI6_F9Q8,12235
|
|
35
|
-
google/genai/tunings.py,sha256=
|
|
36
|
-
google/genai/types.py,sha256=
|
|
37
|
-
google/genai/version.py,sha256=
|
|
35
|
+
google/genai/tunings.py,sha256=HNC3c_9MFwXDp-hcChvmDqkFinrD4kyLkNZPFiW72Tw,75536
|
|
36
|
+
google/genai/types.py,sha256=kPv0IKxNl_xe_S3iWZxVGoMp_KPG2amyJgcoOHaJrUM,652636
|
|
37
|
+
google/genai/version.py,sha256=rCeWImOd0Iv4a-Ij3mIAW3JBQgfHyikpmEoRMNKKF44,627
|
|
38
38
|
google/genai/_interactions/__init__.py,sha256=-G17C_xmrnumwpH4kpFEGd5l9-Y5UnZx3RLbGuCPYZc,3398
|
|
39
|
-
google/genai/_interactions/_base_client.py,sha256=
|
|
39
|
+
google/genai/_interactions/_base_client.py,sha256=Lkj3tnX3k2D0gNqFefUO6Rt6nltgN1blFS4kUV7bgAU,68298
|
|
40
40
|
google/genai/_interactions/_client.py,sha256=QWqbkzAwjNpoz6gBetWYYSeWHMLVkFQm67-1HzbRUxY,18775
|
|
41
41
|
google/genai/_interactions/_compat.py,sha256=1HosuxO1kuZL6GwDmAoJD5kY999gjys4ifLdhXiJ4KI,7139
|
|
42
42
|
google/genai/_interactions/_constants.py,sha256=t7rpey7f7Z65WNYx8OzR-VGkTEHaz_WCLOREzHLjFhk,1039
|
|
@@ -62,73 +62,77 @@ google/genai/_interactions/_utils/_transform.py,sha256=TjAN4LumRdzvMD0rcrFQhrlC3
|
|
|
62
62
|
google/genai/_interactions/_utils/_typing.py,sha256=Z5S4PcLWBL5GEhqU6j_XKaoh9ANrTSDyMDDTlMB0KJ8,5385
|
|
63
63
|
google/genai/_interactions/_utils/_utils.py,sha256=qWdNSrAUkn_wYeK5YFSeHyZWtEYJQkbh_Sg2t7impKQ,12851
|
|
64
64
|
google/genai/_interactions/resources/__init__.py,sha256=TNMFv_-Zv9ayAgjkecVIBOnIK-goQIIvkvR3WiQl_DA,1207
|
|
65
|
-
google/genai/_interactions/resources/interactions.py,sha256=
|
|
66
|
-
google/genai/_interactions/types/__init__.py,sha256=
|
|
65
|
+
google/genai/_interactions/resources/interactions.py,sha256=6D94_eI2VQfxse4X3qfVInAw6SesxknOLtu917xFBMs,56663
|
|
66
|
+
google/genai/_interactions/types/__init__.py,sha256=4NgeE8wXEDGaKSVqGwYpXFlueA32CqJNOT0KlPBd4B0,7662
|
|
67
67
|
google/genai/_interactions/types/allowed_tools.py,sha256=Hke2IEAT_lc51MCt0_tGZGx3yvE7HTSawIlm-prCCGg,1047
|
|
68
68
|
google/genai/_interactions/types/allowed_tools_param.py,sha256=PAAFKM2qX_Pj_pTxqcc0IQvii9soKLW_scMud2nUwMc,1092
|
|
69
69
|
google/genai/_interactions/types/annotation.py,sha256=MKyItDJXCQ6ofAPjjBjioy7jagQNlpKZ9yqyc4MJcSI,1266
|
|
70
70
|
google/genai/_interactions/types/annotation_param.py,sha256=ZUBT1UE66xVNdaRwjVPP3mcDTCaVUf2Zb5yabNAYpHE,1253
|
|
71
|
-
google/genai/_interactions/types/audio_content.py,sha256=
|
|
72
|
-
google/genai/_interactions/types/audio_content_param.py,sha256=
|
|
71
|
+
google/genai/_interactions/types/audio_content.py,sha256=dIm3CIMV-bq_ZZD6LoMHpGo9Yi8pQ9-DAjJZgKuPg7o,1077
|
|
72
|
+
google/genai/_interactions/types/audio_content_param.py,sha256=09BDVJ34w5EVadJfBK0SRpgIKP5W6hR5QbUiXlOR6xs,1363
|
|
73
73
|
google/genai/_interactions/types/audio_mime_type.py,sha256=kyVb8nPfzkVp6q7nNroQxdPjr4F2tkUmrKU9n4xHZR4,901
|
|
74
74
|
google/genai/_interactions/types/audio_mime_type_param.py,sha256=rGJ8h1nRuLmWeJ9kVD6xPEUDy8yA-S5ZRmYulvIBBaE,947
|
|
75
75
|
google/genai/_interactions/types/code_execution_call_arguments.py,sha256=0EaxrwSqMBrASkdMBDktqgM0ou2iWO1Llq49swL6d0M,1070
|
|
76
76
|
google/genai/_interactions/types/code_execution_call_arguments_param.py,sha256=gvbXJt_cdTCpU7WQo1IeM0Bj-E5Hrj3H2OybcnlO9NE,1045
|
|
77
|
-
google/genai/_interactions/types/code_execution_call_content.py,sha256=
|
|
78
|
-
google/genai/_interactions/types/code_execution_call_content_param.py,sha256=
|
|
79
|
-
google/genai/_interactions/types/code_execution_result_content.py,sha256
|
|
80
|
-
google/genai/_interactions/types/code_execution_result_content_param.py,sha256=
|
|
81
|
-
google/genai/_interactions/types/
|
|
82
|
-
google/genai/_interactions/types/
|
|
77
|
+
google/genai/_interactions/types/code_execution_call_content.py,sha256=PzLOPGmcRxqv8GVCrlgRxDw-7hfgAm1A9N_Btv3i0XU,1190
|
|
78
|
+
google/genai/_interactions/types/code_execution_call_content_param.py,sha256=1ghTk7il0hdUlbXI5Pj61tW1lS27ew-ZtAxna72vXkc,1202
|
|
79
|
+
google/genai/_interactions/types/code_execution_result_content.py,sha256=-xGHcQyez_P46lQpQ9TF_yPIUe6HYQHRVeFd2GJiBuo,1299
|
|
80
|
+
google/genai/_interactions/types/code_execution_result_content_param.py,sha256=7YT4Cjyltgh2C9PWZe2gN1-BX4pW3-M_gn4pwpjpLiI,1260
|
|
81
|
+
google/genai/_interactions/types/content.py,sha256=bMQRAF_86tb-GAbfAZEywPHFWgrnEL5sCje6N9Hdcs4,2348
|
|
82
|
+
google/genai/_interactions/types/content_delta.py,sha256=Ej1MUwuOjYEndyLIbcEOXeP_zTZ43CI3pvPw-RKV3hM,9312
|
|
83
|
+
google/genai/_interactions/types/content_param.py,sha256=ik25wHe6jlKg7Y7iisuc6ekXlPJR-3CWdlqpQeZJ6bg,2491
|
|
84
|
+
google/genai/_interactions/types/content_start.py,sha256=fPJ6IManx7doWM6UV3rKyVAPA17EpOvO3OtqqUDGiDU,1163
|
|
83
85
|
google/genai/_interactions/types/content_stop.py,sha256=gEBJge1galuttrwkgJqMImSVVVleRNDIIO0QjZAb0gA,1053
|
|
84
|
-
google/genai/_interactions/types/deep_research_agent_config.py,sha256=
|
|
85
|
-
google/genai/_interactions/types/deep_research_agent_config_param.py,sha256=
|
|
86
|
-
google/genai/_interactions/types/document_content.py,sha256=
|
|
87
|
-
google/genai/_interactions/types/document_content_param.py,sha256=
|
|
88
|
-
google/genai/_interactions/types/
|
|
89
|
-
google/genai/_interactions/types/
|
|
86
|
+
google/genai/_interactions/types/deep_research_agent_config.py,sha256=iKkzEpE5jFoaeIlLE4nNOuf7mPgR1RHI-MUAnexw57I,1082
|
|
87
|
+
google/genai/_interactions/types/deep_research_agent_config_param.py,sha256=K8cZ85618_BNpXWnAsOG4fJV7whihXAT2cMoDqwZo0g,1057
|
|
88
|
+
google/genai/_interactions/types/document_content.py,sha256=DlwJ0zJ5pjQI9s_I3wZlYaDg4ubYHEcxnEGbC7Ti0B0,1100
|
|
89
|
+
google/genai/_interactions/types/document_content_param.py,sha256=hyGaTJEHsvOoXMUaavhylwZhevVEw9vAQv66aD7_UcI,1389
|
|
90
|
+
google/genai/_interactions/types/document_mime_type.py,sha256=rGlvsd0Ctg9a5SfkYrnVq2-kKroail0-chFjDT9srxM,840
|
|
91
|
+
google/genai/_interactions/types/document_mime_type_param.py,sha256=tH1GaDE__hZUsrb2OJ0ZveuC8etG2JWtIXZewFDi038,886
|
|
92
|
+
google/genai/_interactions/types/dynamic_agent_config.py,sha256=tYsRt0V1ApMz1fUXcRN9KZM6ZmeUGswG1FF96mP8d_8,1607
|
|
93
|
+
google/genai/_interactions/types/dynamic_agent_config_param.py,sha256=wkafw6vuC7eLrK5lfRPjqtLGJYXAy8b9ovmscraLWPo,1060
|
|
90
94
|
google/genai/_interactions/types/error_event.py,sha256=DYHKnCft2l1LLs-LEt37Ic6TTsXxbxjhqC_pdMblGKg,1328
|
|
91
|
-
google/genai/_interactions/types/file_search_result_content.py,sha256=
|
|
92
|
-
google/genai/_interactions/types/file_search_result_content_param.py,sha256=
|
|
95
|
+
google/genai/_interactions/types/file_search_result_content.py,sha256=aN333JlOMhel-A92tPYCzaYH5SII6vRzHNAiD3tVw4I,1332
|
|
96
|
+
google/genai/_interactions/types/file_search_result_content_param.py,sha256=tDxY2eb7vosePBQt9sFxbPQo9MAvolfKgInwia76WN4,1332
|
|
93
97
|
google/genai/_interactions/types/function.py,sha256=0lh1qn73ZVJ7THAOq0pcfUV_37u9VspSCMlOXVKUed4,1141
|
|
94
|
-
google/genai/_interactions/types/function_call_content.py,sha256=
|
|
95
|
-
google/genai/_interactions/types/function_call_content_param.py,sha256=
|
|
98
|
+
google/genai/_interactions/types/function_call_content.py,sha256=QFjNqGfnc0OHPUds8cCFkDc4Uh45xeEvLkNMO3zKF20,1118
|
|
99
|
+
google/genai/_interactions/types/function_call_content_param.py,sha256=GNj_GRYddGqIy7X-IWsv3kZf1NtFoQvl1ycSLmIp9ZM,1205
|
|
96
100
|
google/genai/_interactions/types/function_param.py,sha256=GMSumys9sCsWix9f4db6Pbc3pg7mGYrQJgWuawiANAY,1119
|
|
97
|
-
google/genai/_interactions/types/function_result_content.py,sha256=
|
|
98
|
-
google/genai/_interactions/types/function_result_content_param.py,sha256=
|
|
101
|
+
google/genai/_interactions/types/function_result_content.py,sha256=clzkD9fq7vTCHSv0NTqnd0oxH92SrIjtaQYWlypaSfE,1542
|
|
102
|
+
google/genai/_interactions/types/function_result_content_param.py,sha256=KXCzjjlovC6OnfW0kH_HSDK88k1-TWhFA7kQ5V09ztM,1628
|
|
99
103
|
google/genai/_interactions/types/generation_config.py,sha256=J1SsfXD6d_EwGW9xnhmxXqCkiVmOdjhhVNiHwpoTxik,1991
|
|
100
104
|
google/genai/_interactions/types/generation_config_param.py,sha256=3x83t0S4Du3-W5QWoYZsw6jfQlDSQnQlgPHYt8Jyb_0,1952
|
|
101
105
|
google/genai/_interactions/types/google_search_call_arguments.py,sha256=KZbdLhr6kFCZruO-nIkZaq2qm_wMlQjH65xZHwlfOGU,971
|
|
102
106
|
google/genai/_interactions/types/google_search_call_arguments_param.py,sha256=6W-HI1t2QOFJWDy8yfNU88ACq9sxigFufi74AIqMQX8,1033
|
|
103
|
-
google/genai/_interactions/types/google_search_call_content.py,sha256=
|
|
104
|
-
google/genai/_interactions/types/google_search_call_content_param.py,sha256=
|
|
107
|
+
google/genai/_interactions/types/google_search_call_content.py,sha256=2kg2ZTZSbVfkmiAZ5i6e_6NARA6KamrTpt2XdNHwdzA,1178
|
|
108
|
+
google/genai/_interactions/types/google_search_call_content_param.py,sha256=ZweBrIzxKXO24L6P8VBF7u75ojca7yymzvdXw8f7gCA,1190
|
|
105
109
|
google/genai/_interactions/types/google_search_result.py,sha256=hrnggr-PKW-JwHk4p1G24h1rr_k3U7DeKK8D0Ys8408,1117
|
|
106
|
-
google/genai/_interactions/types/google_search_result_content.py,sha256=
|
|
107
|
-
google/genai/_interactions/types/google_search_result_content_param.py,sha256=
|
|
110
|
+
google/genai/_interactions/types/google_search_result_content.py,sha256=nMzuWYcj2QeBFLUiCx7IaaJDuSHlSO7ccB0l9WDGodc,1375
|
|
111
|
+
google/genai/_interactions/types/google_search_result_content_param.py,sha256=gcLR7zJUbqsIeXPLLjCQa27W3JR7LnDAyo-pZ-3DvB8,1379
|
|
108
112
|
google/genai/_interactions/types/google_search_result_param.py,sha256=MXdWoqxfKxP6tPEYWvmgHzg2xjXyT4AnkD_GjHe9rhg,1104
|
|
109
|
-
google/genai/_interactions/types/image_content.py,sha256=
|
|
110
|
-
google/genai/_interactions/types/image_content_param.py,sha256=
|
|
113
|
+
google/genai/_interactions/types/image_content.py,sha256=2ddYQLwiORq8Q_aVCE5AXdOm14oGmzszy2xXw4fIZWQ,1197
|
|
114
|
+
google/genai/_interactions/types/image_content_param.py,sha256=o3YgzqhxgOLPR5iKni_YrcqHkQJM6DaooLtjIIBHG54,1466
|
|
111
115
|
google/genai/_interactions/types/image_mime_type.py,sha256=JSM0MElIy62mLFjKiuheHeV0px02I-Nrh8H2yZTDU3I,884
|
|
112
116
|
google/genai/_interactions/types/image_mime_type_param.py,sha256=syGoPn7nm3LoxqFbJhg3q9Bno68ywKU9hzoufbOm8xQ,930
|
|
113
|
-
google/genai/_interactions/types/interaction.py,sha256=
|
|
114
|
-
google/genai/_interactions/types/interaction_create_params.py,sha256=
|
|
117
|
+
google/genai/_interactions/types/interaction.py,sha256=dSi8Th0J46bgUBjbRdCsxiEfoGGHmmGssYjzl0QCDqY,4009
|
|
118
|
+
google/genai/_interactions/types/interaction_create_params.py,sha256=MBsmLJiH6KR02iA5QgD6Lq0X8I-Wke_Uu6WaZtnaTks,6791
|
|
115
119
|
google/genai/_interactions/types/interaction_event.py,sha256=CDV6XDgpsbtbtDEDBSrCQEqIltQyIGfYLtdvtEXiLRk,1179
|
|
116
120
|
google/genai/_interactions/types/interaction_get_params.py,sha256=kJnLjBS-uX6K4JeDdp1gaezb-I58aWtHBl3w8TNn3Os,1628
|
|
117
121
|
google/genai/_interactions/types/interaction_sse_event.py,sha256=oZwSYZyNFpaOwa3BcraHdiCjZ14ttv8qjKRUvSQHhVA,1172
|
|
118
122
|
google/genai/_interactions/types/interaction_status_update.py,sha256=FbtOHzybStxWVb1o30ppXPJ8F9f-Cgq9LgeV4VU_Jc0,1207
|
|
119
|
-
google/genai/_interactions/types/mcp_server_tool_call_content.py,sha256=
|
|
120
|
-
google/genai/_interactions/types/mcp_server_tool_call_content_param.py,sha256=
|
|
121
|
-
google/genai/_interactions/types/mcp_server_tool_result_content.py,sha256=
|
|
122
|
-
google/genai/_interactions/types/mcp_server_tool_result_content_param.py,sha256=
|
|
123
|
-
google/genai/_interactions/types/model.py,sha256=
|
|
124
|
-
google/genai/_interactions/types/model_param.py,sha256=
|
|
123
|
+
google/genai/_interactions/types/mcp_server_tool_call_content.py,sha256=J58FpA3gM4EeMSrsCbtzZzmkwhD5r1ChEMw_aT9X-aE,1210
|
|
124
|
+
google/genai/_interactions/types/mcp_server_tool_call_content_param.py,sha256=kCe6nCCQz0M7biVvpItnPdyarbIa_Z_8xxY1rpsuTSA,1307
|
|
125
|
+
google/genai/_interactions/types/mcp_server_tool_result_content.py,sha256=SV9YX_2-jyq_zZ9-Xy0yAGf25VeiX1IGUFOkMSjWe78,1574
|
|
126
|
+
google/genai/_interactions/types/mcp_server_tool_result_content_param.py,sha256=wHeZoDX3MxRomKs_oWM-1mM9whPqm2YEHrKbriHQKwA,1660
|
|
127
|
+
google/genai/_interactions/types/model.py,sha256=OVnuyP5jTgsA2-1ltU-X0ql6QJ0rEojydKuvL6IgQk0,1199
|
|
128
|
+
google/genai/_interactions/types/model_param.py,sha256=EZs6zY8llto1_6b82-hs2dbK0aqqfEkyoLNy27oQMBU,1245
|
|
125
129
|
google/genai/_interactions/types/speech_config.py,sha256=VHJj9KCC9NMO0hbczIZn7KkPnO7ktcDmwajR5xUv11g,1100
|
|
126
130
|
google/genai/_interactions/types/speech_config_param.py,sha256=ByojkgPZiLXUjT5aVmiGyDOtLzKZpG-B8VPJJjjvGmI,1087
|
|
127
|
-
google/genai/_interactions/types/text_content.py,sha256=
|
|
128
|
-
google/genai/_interactions/types/text_content_param.py,sha256=
|
|
129
|
-
google/genai/_interactions/types/thinking_level.py,sha256=
|
|
130
|
-
google/genai/_interactions/types/thought_content.py,sha256=
|
|
131
|
-
google/genai/_interactions/types/thought_content_param.py,sha256=
|
|
131
|
+
google/genai/_interactions/types/text_content.py,sha256=0Bt31M2Jo1wyNfy0hGFFQ_ElLQgMz9EY-ojqnH9XhyQ,1094
|
|
132
|
+
google/genai/_interactions/types/text_content_param.py,sha256=EQhWFhjXQGwjxozfodH8O8rf7RWUaYn_npzESyvE2mM,1132
|
|
133
|
+
google/genai/_interactions/types/thinking_level.py,sha256=mmoPse7-zDLEqinDsxk7r5NWy21vRSUBur1CEaJxCVk,814
|
|
134
|
+
google/genai/_interactions/types/thought_content.py,sha256=qQI78dluucYjOlr4jqWwk5XsIBqJXu2gytA9cksHHOk,1349
|
|
135
|
+
google/genai/_interactions/types/thought_content_param.py,sha256=3zho-ybUfDtL6LVIq0o0aL-PWkxonm9hrUXDnJjk0tY,1579
|
|
132
136
|
google/genai/_interactions/types/tool.py,sha256=Y6_IKoEK-sYpXZkLfzKlU_-_iqeSqtkfGpAjDzWVYEc,3098
|
|
133
137
|
google/genai/_interactions/types/tool_choice.py,sha256=DwSp7WJDuJTxmV37aAVFWwCYMEr9JSjDSQfshZOOAF8,915
|
|
134
138
|
google/genai/_interactions/types/tool_choice_config.py,sha256=yioQ81sexGoFcyqSEHw0r4oMwe1NP7UtniklbzzkSNM,930
|
|
@@ -136,25 +140,25 @@ google/genai/_interactions/types/tool_choice_config_param.py,sha256=OQggpC9EMJv9
|
|
|
136
140
|
google/genai/_interactions/types/tool_choice_param.py,sha256=AFbr5Lw2g1hJWfDk3sU5hYHoFNAT0fQ9AbYSjl8qboM,977
|
|
137
141
|
google/genai/_interactions/types/tool_choice_type.py,sha256=XtE6ZbwRYXmMYwNBe8zmw_0INIVzwgXfRStVWbmwuAU,816
|
|
138
142
|
google/genai/_interactions/types/tool_param.py,sha256=vDR2p3wi2sRA2YMuj7g8frzhzwJlvEKKhMFU7ubibb0,3111
|
|
139
|
-
google/genai/_interactions/types/turn.py,sha256
|
|
140
|
-
google/genai/_interactions/types/turn_param.py,sha256=
|
|
143
|
+
google/genai/_interactions/types/turn.py,sha256=-VDFlUj9jbxsRwoCjV4L-C11a5X4T14CP_38_P9-sns,1034
|
|
144
|
+
google/genai/_interactions/types/turn_param.py,sha256=w_7it3yk60s2bBMWfz2dH86TIvVH_KADSLLUZuELWuE,1085
|
|
141
145
|
google/genai/_interactions/types/url_context_call_arguments.py,sha256=JLPsuJmq816_lgT8qq_Sc8tMD0sAax5EmHWvTTMessc,933
|
|
142
146
|
google/genai/_interactions/types/url_context_call_arguments_param.py,sha256=lMBhQVJlaaUgOTZwqwwxoeOJvbFekO21GVBNMvPjt98,995
|
|
143
|
-
google/genai/_interactions/types/url_context_call_content.py,sha256=
|
|
144
|
-
google/genai/_interactions/types/url_context_call_content_param.py,sha256=
|
|
147
|
+
google/genai/_interactions/types/url_context_call_content.py,sha256=Gfi7BrkJDUMS3r8pUP5xG7h-6a1gTMYsfJzVZlktRUk,1166
|
|
148
|
+
google/genai/_interactions/types/url_context_call_content_param.py,sha256=IJKvDol32HD0syob0xDzmvmMybAp_Bq8tC3-pifx5M4,1178
|
|
145
149
|
google/genai/_interactions/types/url_context_result.py,sha256=R4TzIKOiG59aA2gbXHIuJFW3C2FukolXOOtUIpCTIM0,1062
|
|
146
|
-
google/genai/_interactions/types/url_context_result_content.py,sha256=
|
|
147
|
-
google/genai/_interactions/types/url_context_result_content_param.py,sha256=
|
|
150
|
+
google/genai/_interactions/types/url_context_result_content.py,sha256=3QRDzQH3ED_MbwpkhjpSb-VrkRdUy-Pl-sTg5De9VgM,1353
|
|
151
|
+
google/genai/_interactions/types/url_context_result_content_param.py,sha256=1p7pfNi_vSZ4bu-vwCQOxLcKPdWNjBLZ0vB9ayN08MA,1357
|
|
148
152
|
google/genai/_interactions/types/url_context_result_param.py,sha256=XmQ2EgunZDshXUbuy50J88kY1h2p1REzrIZV4Qp1mDI,1037
|
|
149
|
-
google/genai/_interactions/types/usage.py,sha256=
|
|
150
|
-
google/genai/_interactions/types/usage_param.py,sha256=
|
|
151
|
-
google/genai/_interactions/types/video_content.py,sha256
|
|
152
|
-
google/genai/_interactions/types/video_content_param.py,sha256=
|
|
153
|
+
google/genai/_interactions/types/usage.py,sha256=Zjt9nSBHKAFlEgnUh30m9zPGUYQUA5HOnDxEAXWUjp8,3470
|
|
154
|
+
google/genai/_interactions/types/usage_param.py,sha256=EV1seEZUQYmRlNup1Crwk_ugVv84u7uFl0lScBW741w,3263
|
|
155
|
+
google/genai/_interactions/types/video_content.py,sha256=-uRbyjQRhdyMIUHbrDDLw95ZyuE2adgRCzXn6jgdf2M,1196
|
|
156
|
+
google/genai/_interactions/types/video_content_param.py,sha256=SlpqbbPl_hZQaBd4qdm9TcEerCmVVIc5E_dmMwhCdhk,1465
|
|
153
157
|
google/genai/_interactions/types/video_mime_type.py,sha256=W5uRyEoRCcgbP8TF26ddkYwcpFCmNVSGF9aOUKHrRaU,1027
|
|
154
158
|
google/genai/_interactions/types/video_mime_type_param.py,sha256=eg7TeSxg6MXu5_kYiYVpzNlNidDieAqqEYvUWa-xb9k,1073
|
|
155
159
|
google/genai/tests/__init__.py,sha256=gg8QQy0VqB4Cgf50Tbf5AAEf3IdzKsnCPf6IHXXbikY,689
|
|
156
160
|
google/genai/tests/conftest.py,sha256=qUw3yQte5eQo4VG-m3uWwamUy9LaQMbkdBMxuuFjtlU,5021
|
|
157
|
-
google/genai/tests/pytest_helper.py,sha256=
|
|
161
|
+
google/genai/tests/pytest_helper.py,sha256=KFFRlwtVLJSnRuYzQoe5OID6QplC7Byzgr3nCmZJV98,8287
|
|
158
162
|
google/genai/tests/afc/__init__.py,sha256=AqPvJAlU0sazclZEv9w4ycsKaRW1MNmjCmSWakTe7a8,708
|
|
159
163
|
google/genai/tests/afc/test_convert_if_exist_pydantic_model.py,sha256=A0uBgJAWimtky4P3XKNg2qH9tVEb3aYDzlsASQjTWRQ,8935
|
|
160
164
|
google/genai/tests/afc/test_convert_number_values_for_function_call_args.py,sha256=LLKU67BU_Tib_pmkOyb1hm5Ew9O2d08klLGJEjvYPy4,1769
|
|
@@ -191,14 +195,14 @@ google/genai/tests/caches/test_list.py,sha256=nSOwJBJylpZrThaSV_ah8O6LzVNYHVPMHU
|
|
|
191
195
|
google/genai/tests/caches/test_update.py,sha256=ZaxyiytKf3Pu0Iiyet-7uEE2WOy4_srqOy0GJNAGeAw,2111
|
|
192
196
|
google/genai/tests/caches/test_update_custom_url.py,sha256=XxncRa2YNCFp2TJFDIdYYznyvEkGGZFzrO4sxXwmFzM,1798
|
|
193
197
|
google/genai/tests/chats/__init__.py,sha256=kOWMJqwDSOryDqDMkmkteFrz-YQtqfIfo9dhD0_r93M,53
|
|
194
|
-
google/genai/tests/chats/test_get_history.py,sha256=
|
|
198
|
+
google/genai/tests/chats/test_get_history.py,sha256=_H6K__2dn47_6XZyvEo4uNY9ntdvRW0K4BA20eaYTa4,17897
|
|
195
199
|
google/genai/tests/chats/test_send_message.py,sha256=cs8RFVRCyF0D8sfgMs658OF8TRVA1Mlehf6i0Im6ueQ,24774
|
|
196
|
-
google/genai/tests/chats/test_validate_response.py,sha256=
|
|
200
|
+
google/genai/tests/chats/test_validate_response.py,sha256=07zq5pJ3rL2zu8o5RKJZKFyZQ9tMZyVXLBrLuADkGUQ,2420
|
|
197
201
|
google/genai/tests/client/__init__.py,sha256=RvGOeb5ZdxjMSh_frXTcrenwE_UsF3_vlDaI-_ml74Y,616
|
|
198
202
|
google/genai/tests/client/test_async_stream.py,sha256=wDrCIvxP9s_nwMI_GMs8hwB-I9bEYbrSLZPstNVWxRw,12755
|
|
199
203
|
google/genai/tests/client/test_client_close.py,sha256=mi0weKH6UkZi6W-6ZnygvdFQOD6fwKCqKl9ZKvlaKvg,6024
|
|
200
204
|
google/genai/tests/client/test_client_initialization.py,sha256=RssmXtJDCw-0VL-s6W_3dsLvU3-Z0D-V2VaTxnvi9yY,55157
|
|
201
|
-
google/genai/tests/client/test_client_requests.py,sha256=
|
|
205
|
+
google/genai/tests/client/test_client_requests.py,sha256=ATTGdQPLpTWp25f5apIcWTRjV5aEHQoUDOHRRUpxLlU,7403
|
|
202
206
|
google/genai/tests/client/test_custom_client.py,sha256=GJdw2wPapXiwz6VHxBTWgcXu4XvdFLdViHEAQ4U2xDA,2416
|
|
203
207
|
google/genai/tests/client/test_http_options.py,sha256=YLCAw7tpgEVone_hd644jhPOcissP_4_UHaAi5SeV88,5492
|
|
204
208
|
google/genai/tests/client/test_replay_client_equality.py,sha256=W6NvtEObD6nkAryHYYNvpQnTvshWh8GVbGE3bjtf8tk,5139
|
|
@@ -224,19 +228,23 @@ google/genai/tests/files/test_delete.py,sha256=mL15UCFIaWwyUNZGvAQEx4YQBIFkZv_Rf
|
|
|
224
228
|
google/genai/tests/files/test_download.py,sha256=j44qwIhVAcmGSV2EEDgftFfgGoCB0XSR2BE1tSoTnZQ,2341
|
|
225
229
|
google/genai/tests/files/test_get.py,sha256=IJTaDxh6MCPXDMwZgQJY6xnTQOKyIwJt67O2TRwQmoo,1404
|
|
226
230
|
google/genai/tests/files/test_list.py,sha256=BuidbWnOJKeQcl8g78v9HvLJJhgcHSV2Mpb_b-vvh_o,2224
|
|
231
|
+
google/genai/tests/files/test_register.py,sha256=rCFTY3U3_OrovGgTJsCJ2rQbqV4P1lobNObqegLZCME,8368
|
|
232
|
+
google/genai/tests/files/test_register_table.py,sha256=eX6a8KbfMbq_P6tvXccP2dHli1RcXK29nEfx9UOVJrQ,2333
|
|
227
233
|
google/genai/tests/files/test_upload.py,sha256=uPioeL38l9lu2ebenllW3Co1tN5xeCMQuSvHudfRNmU,8372
|
|
228
234
|
google/genai/tests/imports/test_no_optional_imports.py,sha256=fhSdu9gHQYoGYsgbfb3qdoI5cipJJ67Dk5RwSk4vcFE,987
|
|
229
235
|
google/genai/tests/interactions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
-
google/genai/tests/interactions/
|
|
236
|
+
google/genai/tests/interactions/test_auth.py,sha256=kUfNmSjzMY71yRcn1XdsJh_BfSPqAF1hwx9bUeLy4pk,17800
|
|
237
|
+
google/genai/tests/interactions/test_integration.py,sha256=HzxR-DVtcLzGM5wTi768fSz3PB4bpdZEb7tKLqrQuUE,2252
|
|
238
|
+
google/genai/tests/interactions/test_paths.py,sha256=7JRpeyaGyh5_Lj8BPKlXsskfsG5Xpw07Ns_KcsO17Pg,4441
|
|
231
239
|
google/genai/tests/live/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
|
|
232
|
-
google/genai/tests/live/test_live.py,sha256=
|
|
240
|
+
google/genai/tests/live/test_live.py,sha256=6UrEodY4H2DSfRa5opbyxlhR-80pCX9B_PSJdbfhsJI,64135
|
|
233
241
|
google/genai/tests/live/test_live_music.py,sha256=VC7QuLQYY4LKkDcfUtizCc-K4JPm7LCd5oDwVBb_Zuc,11252
|
|
234
242
|
google/genai/tests/live/test_live_response.py,sha256=z5xyev6PL0h-WChGFy1QhWiJ8ld2Vt5dHa9PtQ7DN5w,5531
|
|
235
243
|
google/genai/tests/live/test_send_client_content.py,sha256=slHTAKalYzQncLF37stThKcTHEoC2FVQtPghAeIUSWM,4946
|
|
236
244
|
google/genai/tests/live/test_send_realtime_input.py,sha256=jHb-ncYTXwt9Dps8oWu3ofWs99q0kxP4eCvIBjW4WL8,9493
|
|
237
245
|
google/genai/tests/live/test_send_tool_response.py,sha256=ZbrF5VjztSgfDpxPTFCjqSApIYYDwYUGsYIRD-sLimM,6280
|
|
238
246
|
google/genai/tests/local_tokenizer/__init__.py,sha256=5ffJTDv71l3pLvTGF58kb_vFf8TUDpfM5cGWp4DMwDw,641
|
|
239
|
-
google/genai/tests/local_tokenizer/test_local_tokenizer.py,sha256=
|
|
247
|
+
google/genai/tests/local_tokenizer/test_local_tokenizer.py,sha256=iktgMtFPfsqT5aZ_uVpBjzT32WqO8kbI9YPpdgqLZaw,12254
|
|
240
248
|
google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py,sha256=mKIA6L9wobG6V_jKFuQF_P0Bv9XZsFikyKVWq9iGRrM,7196
|
|
241
249
|
google/genai/tests/mcp/__init__.py,sha256=VyFzMY6rRcPk9glMUZe0sO_GQlTMFNjfibEqp8iVLkI,635
|
|
242
250
|
google/genai/tests/mcp/test_has_mcp_tool_usage.py,sha256=_TPC55X8pCB7F0Pv7ljQcNKFQ00jjW-tmCHevFh-beY,2411
|
|
@@ -251,8 +259,8 @@ google/genai/tests/models/test_count_tokens.py,sha256=ErSJWMYxnBYmpnvSXhIKn7B-PK
|
|
|
251
259
|
google/genai/tests/models/test_delete.py,sha256=OBl8mfHychtjWy6v19Das3ikYtBwN3pojXZ-BxL8zpY,3286
|
|
252
260
|
google/genai/tests/models/test_edit_image.py,sha256=2QG3ufsRGqryk9jSgyiTgMnuT8VuSZJvghatwEA3NXo,9369
|
|
253
261
|
google/genai/tests/models/test_embed_content.py,sha256=RncjpLuaRO4sjTzTsiXVK5TJQ3poX2aApbZdqsOuh_0,2933
|
|
254
|
-
google/genai/tests/models/test_function_call_streaming.py,sha256=
|
|
255
|
-
google/genai/tests/models/test_generate_content.py,sha256=
|
|
262
|
+
google/genai/tests/models/test_function_call_streaming.py,sha256=8R6upyqnrBkajl_OH8V1lYepuMD9KV2oTTIbMfQoX9A,14787
|
|
263
|
+
google/genai/tests/models/test_generate_content.py,sha256=JKKEabFaRP7eG84nA60WwxsUP5-tIG3DGDicXCCiTTk,79158
|
|
256
264
|
google/genai/tests/models/test_generate_content_cached_content.py,sha256=gwZTuvvjtavtYKHZMM6_qOikWSh08LWWZ6z-qGhk9DE,4754
|
|
257
265
|
google/genai/tests/models/test_generate_content_config_zero_value.py,sha256=TNBTFFA9HLidwEF3tV1FV413kilLZWhrnN8MAulxqcc,3335
|
|
258
266
|
google/genai/tests/models/test_generate_content_from_apikey.py,sha256=i-cqsmyfBfkP_Xu-x3l3lO9aUhBLViU4fNuNiDik2JU,1452
|
|
@@ -268,7 +276,7 @@ google/genai/tests/models/test_generate_images.py,sha256=TNfsQrhja8k4STXixdTwn_Y
|
|
|
268
276
|
google/genai/tests/models/test_generate_videos.py,sha256=KCtQdXpTj-WMRWiSVVHwcx_EGTCVGfBCaQfZAujXr24,24102
|
|
269
277
|
google/genai/tests/models/test_get.py,sha256=tW0142USI8uUkwDjfDX52oiuoJ9OKEz5g1sL7fhm-3o,3251
|
|
270
278
|
google/genai/tests/models/test_list.py,sha256=EfIzUNKn4b0MX5OHUh6_ZzPM6jzfoN_FV7SSBd6ajG4,7125
|
|
271
|
-
google/genai/tests/models/test_recontext_image.py,sha256=
|
|
279
|
+
google/genai/tests/models/test_recontext_image.py,sha256=PNfvtC4ty747Wfk1e_4YsBsZMrAfSsVFMt0lCYVSBbQ,6413
|
|
272
280
|
google/genai/tests/models/test_segment_image.py,sha256=Sp750MAO9hVSElK82f8xjufFBQ-PSAO8IkKNRBGYJoA,5005
|
|
273
281
|
google/genai/tests/models/test_update.py,sha256=H8NITq04d5D1ekzSiU9d8LJZM2BLCmtT5eYl7vK8kCk,2890
|
|
274
282
|
google/genai/tests/models/test_upscale_image.py,sha256=a-Jv1VoPNtszZRqXRV1PkUo4uIYcTRFzL2ssLjpmEuU,5340
|
|
@@ -338,8 +346,8 @@ google/genai/tests/types/test_part_type.py,sha256=a_0eE2CgE7Ju6ePmu3DrupsZZCFiyD
|
|
|
338
346
|
google/genai/tests/types/test_schema_from_json_schema.py,sha256=WiraJx5mRLW8lKHiWsyHTBYge4jVpeCYklbqGd4BkZQ,13894
|
|
339
347
|
google/genai/tests/types/test_schema_json_schema.py,sha256=zn1gjsXcHTztzmajr8YX3Yb6rWnchjgjw6Yj1NZnG-0,15536
|
|
340
348
|
google/genai/tests/types/test_types.py,sha256=Tqc_PpGo9-XH1xfkAjTCM9xngan_4w__hgpA0BkyA8g,84416
|
|
341
|
-
google_genai-1.
|
|
342
|
-
google_genai-1.
|
|
343
|
-
google_genai-1.
|
|
344
|
-
google_genai-1.
|
|
345
|
-
google_genai-1.
|
|
349
|
+
google_genai-1.57.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
350
|
+
google_genai-1.57.0.dist-info/METADATA,sha256=yvJbx-VxkwEb9bD_sdwNxPmgf6PqDvgY-AM47AtjaiI,53313
|
|
351
|
+
google_genai-1.57.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
352
|
+
google_genai-1.57.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
|
|
353
|
+
google_genai-1.57.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|