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.
Files changed (88) hide show
  1. google/genai/_api_client.py +37 -18
  2. google/genai/_interactions/_base_client.py +8 -2
  3. google/genai/_interactions/resources/interactions.py +6 -6
  4. google/genai/_interactions/types/__init__.py +4 -0
  5. google/genai/_interactions/types/audio_content.py +0 -1
  6. google/genai/_interactions/types/audio_content_param.py +0 -1
  7. google/genai/_interactions/types/code_execution_call_content.py +0 -1
  8. google/genai/_interactions/types/code_execution_call_content_param.py +0 -1
  9. google/genai/_interactions/types/code_execution_result_content.py +0 -1
  10. google/genai/_interactions/types/code_execution_result_content_param.py +0 -1
  11. google/genai/_interactions/types/content.py +63 -0
  12. google/genai/_interactions/types/content_delta.py +7 -23
  13. google/genai/_interactions/types/content_param.py +61 -0
  14. google/genai/_interactions/types/content_start.py +4 -44
  15. google/genai/_interactions/types/deep_research_agent_config.py +0 -1
  16. google/genai/_interactions/types/deep_research_agent_config_param.py +0 -1
  17. google/genai/_interactions/types/document_content.py +3 -2
  18. google/genai/_interactions/types/document_content_param.py +3 -2
  19. google/genai/_interactions/types/document_mime_type.py +23 -0
  20. google/genai/_interactions/types/document_mime_type_param.py +25 -0
  21. google/genai/_interactions/types/dynamic_agent_config.py +0 -1
  22. google/genai/_interactions/types/dynamic_agent_config_param.py +0 -1
  23. google/genai/_interactions/types/file_search_result_content.py +0 -1
  24. google/genai/_interactions/types/file_search_result_content_param.py +0 -1
  25. google/genai/_interactions/types/function_call_content.py +0 -1
  26. google/genai/_interactions/types/function_call_content_param.py +0 -1
  27. google/genai/_interactions/types/function_result_content.py +1 -2
  28. google/genai/_interactions/types/function_result_content_param.py +1 -2
  29. google/genai/_interactions/types/google_search_call_content.py +0 -1
  30. google/genai/_interactions/types/google_search_call_content_param.py +0 -1
  31. google/genai/_interactions/types/google_search_result_content.py +0 -1
  32. google/genai/_interactions/types/google_search_result_content_param.py +0 -1
  33. google/genai/_interactions/types/image_content.py +1 -2
  34. google/genai/_interactions/types/image_content_param.py +1 -2
  35. google/genai/_interactions/types/interaction.py +4 -52
  36. google/genai/_interactions/types/interaction_create_params.py +2 -22
  37. google/genai/_interactions/types/mcp_server_tool_call_content.py +0 -1
  38. google/genai/_interactions/types/mcp_server_tool_call_content_param.py +0 -1
  39. google/genai/_interactions/types/mcp_server_tool_result_content.py +1 -2
  40. google/genai/_interactions/types/mcp_server_tool_result_content_param.py +1 -2
  41. google/genai/_interactions/types/model.py +1 -0
  42. google/genai/_interactions/types/model_param.py +1 -0
  43. google/genai/_interactions/types/text_content.py +0 -1
  44. google/genai/_interactions/types/text_content_param.py +0 -1
  45. google/genai/_interactions/types/thinking_level.py +1 -1
  46. google/genai/_interactions/types/thought_content.py +0 -1
  47. google/genai/_interactions/types/thought_content_param.py +0 -1
  48. google/genai/_interactions/types/turn.py +3 -44
  49. google/genai/_interactions/types/turn_param.py +4 -40
  50. google/genai/_interactions/types/url_context_call_content.py +0 -1
  51. google/genai/_interactions/types/url_context_call_content_param.py +0 -1
  52. google/genai/_interactions/types/url_context_result_content.py +0 -1
  53. google/genai/_interactions/types/url_context_result_content_param.py +0 -1
  54. google/genai/_interactions/types/usage.py +1 -1
  55. google/genai/_interactions/types/usage_param.py +1 -1
  56. google/genai/_interactions/types/video_content.py +1 -2
  57. google/genai/_interactions/types/video_content_param.py +1 -2
  58. google/genai/_live_converters.py +36 -64
  59. google/genai/_local_tokenizer_loader.py +1 -0
  60. google/genai/_tokens_converters.py +14 -14
  61. google/genai/batches.py +27 -22
  62. google/genai/caches.py +42 -42
  63. google/genai/chats.py +0 -2
  64. google/genai/client.py +3 -1
  65. google/genai/files.py +224 -0
  66. google/genai/models.py +57 -72
  67. google/genai/tests/chats/test_get_history.py +9 -8
  68. google/genai/tests/chats/test_validate_response.py +1 -1
  69. google/genai/tests/client/test_client_requests.py +1 -135
  70. google/genai/tests/files/test_register.py +272 -0
  71. google/genai/tests/files/test_register_table.py +70 -0
  72. google/genai/tests/interactions/test_auth.py +479 -0
  73. google/genai/tests/interactions/test_integration.py +2 -0
  74. google/genai/tests/interactions/test_paths.py +105 -0
  75. google/genai/tests/live/test_live.py +2 -36
  76. google/genai/tests/local_tokenizer/test_local_tokenizer.py +1 -1
  77. google/genai/tests/models/test_function_call_streaming.py +90 -90
  78. google/genai/tests/models/test_generate_content.py +1 -2
  79. google/genai/tests/models/test_recontext_image.py +1 -1
  80. google/genai/tests/pytest_helper.py +17 -0
  81. google/genai/tunings.py +1 -27
  82. google/genai/types.py +603 -518
  83. google/genai/version.py +1 -1
  84. {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/METADATA +224 -22
  85. {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/RECORD +88 -80
  86. {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/WHEEL +0 -0
  87. {google_genai-1.55.0.dist-info → google_genai-1.57.0.dist-info}/licenses/LICENSE +0 -0
  88. {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=CrHSu9Hd4rhhEpv5ds5jU_5xk0XwixTY055pRQRbFnE,67216
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=Bu4nuSCQSWgyqSCza4rPzDHVK5h9LTBt-7H09ubEUrc,44630
11
- google/genai/_local_tokenizer_loader.py,sha256=7yvJfEkWIpw2ueY4ZmoOAamJD-G7bm_9g44glD6bVwM,7147
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=_8Uy4ziG2N9OAZInqKVXiHWSpJ11DH_shMEfrCEiBLc,15593
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=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=s8BXqWCUzUWT00nLQxVSqdrIdMiCEUz1jPFHc4NVj-M,21205
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=g-geVkMmcgAsI7CPJqt3jzucEcjQf6He1fhnscUdxvs,31766
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=z7zvNvyGSTg3QMSX6a__0EVHklUYSAB72W0Y8jjHosQ,239193
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=JR_ngNjjgIMd_iYDD53wBCYyHfY5V83njmtQOpBNpL0,76343
36
- google/genai/types.py,sha256=EqUzS9hHVa5e_uBFwNtFUO7ARojCs0dtdGYOr-gZavc,648495
37
- google/genai/version.py,sha256=HVhKgLJn4_y9WdGxfL7SK0aN805XciWv5EpP-sY3Pkw,627
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=SJJT5ak-gOikfDwAJJL3Ehiseptgc0ItEAwivoEIH4o,68098
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=ALQ3rhVGLlK0t33I_xNVcpfsap2oxE_fEeX09dRR-Tg,56339
66
- google/genai/_interactions/types/__init__.py,sha256=OgQ8VQvhj1VKn7y1S8B6UECZthyBplmvKHZyD5F5fUQ,7412
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=gJwnOujq8bywd709dYgkPY9sljz7dcUGTU2qt3WBqzo,1149
72
- google/genai/_interactions/types/audio_content_param.py,sha256=8UhB-IVc6jsZRuVWxkOCwGuhLuNsQk4kQlNeCk1pBJ4,1435
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=zCkN5pCBKzUxlroEYcm-tOAKipH7piRXc_rWNxPE_WI,1262
78
- google/genai/_interactions/types/code_execution_call_content_param.py,sha256=tw75Cllhpodwy6LdcUry6zUZPFmb1NVwd3rlFFmr9iQ,1274
79
- google/genai/_interactions/types/code_execution_result_content.py,sha256=xHKw5YR8OlsifnS0NBPAFYI0TS_eO3dKwowqtJ64SFM,1371
80
- google/genai/_interactions/types/code_execution_result_content_param.py,sha256=y8nsIJ0afD26dieFd_qeasLvWMDj26QJtYiQR83vIi0,1332
81
- google/genai/_interactions/types/content_delta.py,sha256=ZUPhWqn0db1cTvnNCP6ySPuChssKKhmHEROeQY8QCTs,10461
82
- google/genai/_interactions/types/content_start.py,sha256=v3gK_l4Yn_RoCdRPpHePNX7I7v6ZMO59N2-C8BUQXwA,2758
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=yG1tlPj_KZDUgTH9oND4RvI3oHkb0tRjdpkVfA9WGRo,1154
85
- google/genai/_interactions/types/deep_research_agent_config_param.py,sha256=zen3pq44QDOtg_eETahCVfExs5P_LqB9FYhnGn3Krtc,1129
86
- google/genai/_interactions/types/document_content.py,sha256=_Z6HWvns2vbvmZmBApL2_uiLNS6nQl9T-oR1ZqubciE,1069
87
- google/genai/_interactions/types/document_content_param.py,sha256=bxzP5zC4wUOZQSsc5JzJKbGDq_uH-2kLw4qzClybeHQ,1342
88
- google/genai/_interactions/types/dynamic_agent_config.py,sha256=mgyKKmQLGlPDKe5KOsTQ7KQY53iX7QIKEnWkdAczcoI,1679
89
- google/genai/_interactions/types/dynamic_agent_config_param.py,sha256=TpeukdveJ09PLmPCR1vFz7G3tcBHtowhF-Wt4atH9Fg,1132
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=qY84clDrKSPuKNlc0shZa6z0ffQTgeOEi-DYPzg9Hpo,1404
92
- google/genai/_interactions/types/file_search_result_content_param.py,sha256=ANDfMy77NPNT6YUVb2avWviRropX6NIJZXPvzN-iESs,1404
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=gegFdsvgFMUaUSDL-8e0leZhpII2cpZx1mnIdfs-vjM,1190
95
- google/genai/_interactions/types/function_call_content_param.py,sha256=9LxniXVZWTKW00xQDvOFBvIcm7XmVsOfvwYdxt2FeEo,1277
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=iegHRLIGF9_NyYJ58rXvXfo5xD0xy5Il8iZHTDQne98,1606
98
- google/genai/_interactions/types/function_result_content_param.py,sha256=spel8JKARAment9mxiXCOBoW6IZndRXZa3bEXeA3J-Q,1692
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=wTXWVJQjaS1WC0YH4qxFbJvmj7pfmNUe7UAhEwYINAA,1250
104
- google/genai/_interactions/types/google_search_call_content_param.py,sha256=aIwCjAx_BxSihaKD3QBRI4gpIPYfK3WnMzD95P-_kfs,1262
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=nDlD2ruwBmPLGi_C_Cty5OlY9FatzhknVgi-mhLkRrM,1447
107
- google/genai/_interactions/types/google_search_result_content_param.py,sha256=nI9PhSTcil5k63Gac4bp8a5LP4BhINec1TOQ3RDsR8s,1451
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=7edj6BUocB4vrM_ImAA8z1eWoHXKRG-GszHfgBIH6eE,1255
110
- google/genai/_interactions/types/image_content_param.py,sha256=fsfTrN7mWTfFgSVPDS0boW0HSgTDO9hbxhXsgRq4Ygs,1524
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=iHLsZyj76OfmXg4wXzl_0f2ULYxtuXt6tDwoHz1cEUA,5355
114
- google/genai/_interactions/types/interaction_create_params.py,sha256=9AizkOR2bl4MuDTjjzT0hL8fXEcbJcPwSPXjZpTMKes,7322
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=SWhY19X2WScQOdG6ZpMaFfsOGLtLBOrq14YvZsc9P-E,1282
120
- google/genai/_interactions/types/mcp_server_tool_call_content_param.py,sha256=y8wriVzbmggMmXacQojAmk5T9mHVhUZgfQOtc6oKWOA,1379
121
- google/genai/_interactions/types/mcp_server_tool_result_content.py,sha256=End6Yr1vLMGjHqPxf94PrkHzn6n73AY-KUoWZ6mNxec,1638
122
- google/genai/_interactions/types/mcp_server_tool_result_content_param.py,sha256=xUw0411rmbDXY1z8g8dJwVNvOfgf1klKZ4HE_eexRdU,1724
123
- google/genai/_interactions/types/model.py,sha256=oaThuxzODsttc6PmkOTAqisa1KV6OEz578xJ2Imfe8g,1165
124
- google/genai/_interactions/types/model_param.py,sha256=g6yMfGxz-WUJAmTVM3kR1oszmZCW3zy60zNu2Xssopo,1211
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=0AQ9725UdM5fLMR3W_Jjc8m6EyVeUmRt-3DXCdw_dro,1166
128
- google/genai/_interactions/types/text_content_param.py,sha256=udrqbEyPm9AKfxgtiJ4T7Lt_zdKfDBtbk7h7_LmFvEw,1204
129
- google/genai/_interactions/types/thinking_level.py,sha256=kvOZx45c_iIdkFhRYVuflQ3XRLuwDlxAcKBlwp4M080,793
130
- google/genai/_interactions/types/thought_content.py,sha256=SjOU0F8xR8nCuEdcQpzZqDkG92R40AFUsHkZBbCdLbI,1421
131
- google/genai/_interactions/types/thought_content_param.py,sha256=1Yj0ISy7xbXzSmbcXdCGMcxEfVhph1r4jPGgzXTTp1o,1651
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=3miXeXGw74UOeFvaTTEPx0Br6HYQM3l4v_LyDIJpcFY,2687
140
- google/genai/_interactions/types/turn_param.py,sha256=dhf4pXBARCFS_zlMYlj8Bjuhy7n0VFhIzh0LuXU-IOo,2790
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=BK8Z-U82A6iqs5KRL1ebhRjinfsAasar0AfDd4NIWPY,1238
144
- google/genai/_interactions/types/url_context_call_content_param.py,sha256=q53GrxPr-u1ftQi1rRcgayoX6coL64wB36Lq2TTuVa0,1250
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=uYlh15kfgEMLG4p4M65eA_GfhV_uvev-sFdVpuHXO-U,1425
147
- google/genai/_interactions/types/url_context_result_content_param.py,sha256=wWuERSnK0-78TaqQd4wBqxlc-hcSSPnHhJ6SNp3DZq4,1429
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=4_IBkdFED7YUtwRrFPkMHGlOHxTbjbpDZMkUw5t-JOM,3472
150
- google/genai/_interactions/types/usage_param.py,sha256=SeaR5IlizjKB3tKJvm-z65ggVhKUZWknu2EExzSVDDc,3265
151
- google/genai/_interactions/types/video_content.py,sha256=f9RfnH_YNbVPRCYEiBYy_lBDujfGpJbMCFJStKjuXEk,1254
152
- google/genai/_interactions/types/video_content_param.py,sha256=SndpxD55w5n0U-giGigGJe-VcG2w7a07QP5bf78hVDQ,1523
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=5x2dwaJ3r1RTSVN0h8L-bkaOJjDbGjD_Evf0cq5kXhc,7807
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=5u0U7kobAbfd6W0MibWp6d_4AVR-f8CzDC2k0f311jY,17757
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=x9LcypmXbXJBLbcD0WOJcxU01oh1CRfeyFkv6wcdr7g,2424
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=yjJT2dF-RGk7GZffIyK5EBFdVMB0xWgTAas2As4Azns,11692
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/test_integration.py,sha256=fWOR228hz-WS7qWAt1NxXrmV8cn2UQYth9gFjJu_c_A,2190
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=KsT-T3O35ckesU4SWBpdDyFiEvQjyLmlCvCsKwTY01c,65012
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=yYqdSSOBlK3sQmLqJr9JhoJRJzOf0zkjqzZB2C2O4UM,12250
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=8gZbeKoCIwtox6bNLIJsBNzfXWxW7U74RF2VyxGNkuA,15509
255
- google/genai/tests/models/test_generate_content.py,sha256=3cYo2urDLev-1YSUEotplj0nNlRx6BzbP10RTa1WvUc,79198
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=b-k-fJX3gJ9TjzJ05EPpgSjfBN5Ef0F11DwBYwgknSc,6423
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.55.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
342
- google_genai-1.55.0.dist-info/METADATA,sha256=6efsRLOrAa3u3dIXyP8D4nAkdowbWDg04amYzjMrlow,47889
343
- google_genai-1.55.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
344
- google_genai-1.55.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
345
- google_genai-1.55.0.dist-info/RECORD,,
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,,