google-genai 1.57.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.
Files changed (46) hide show
  1. google/genai/_api_client.py +12 -8
  2. google/genai/_interactions/__init__.py +3 -0
  3. google/genai/_interactions/_client.py +57 -3
  4. google/genai/_interactions/_client_adapter.py +48 -0
  5. google/genai/_interactions/types/__init__.py +4 -0
  6. google/genai/_interactions/types/audio_content.py +2 -0
  7. google/genai/_interactions/types/audio_content_param.py +2 -0
  8. google/genai/_interactions/types/content.py +2 -0
  9. google/genai/_interactions/types/content_delta.py +10 -2
  10. google/genai/_interactions/types/content_param.py +2 -0
  11. google/genai/_interactions/types/content_start.py +1 -2
  12. google/genai/_interactions/types/content_stop.py +1 -2
  13. google/genai/_interactions/types/document_content.py +2 -0
  14. google/genai/_interactions/types/document_content_param.py +2 -0
  15. google/genai/_interactions/types/error_event.py +1 -2
  16. google/genai/_interactions/types/file_search_call_content.py +32 -0
  17. google/genai/_interactions/types/file_search_call_content_param.py +31 -0
  18. google/genai/_interactions/types/generation_config.py +4 -0
  19. google/genai/_interactions/types/generation_config_param.py +4 -0
  20. google/genai/_interactions/types/image_config.py +31 -0
  21. google/genai/_interactions/types/image_config_param.py +30 -0
  22. google/genai/_interactions/types/image_content.py +2 -0
  23. google/genai/_interactions/types/image_content_param.py +2 -0
  24. google/genai/_interactions/types/interaction.py +2 -0
  25. google/genai/_interactions/types/interaction_create_params.py +2 -0
  26. google/genai/_interactions/types/interaction_event.py +1 -2
  27. google/genai/_interactions/types/interaction_sse_event.py +5 -3
  28. google/genai/_interactions/types/interaction_status_update.py +1 -2
  29. google/genai/_interactions/types/video_content.py +2 -0
  30. google/genai/_interactions/types/video_content_param.py +2 -0
  31. google/genai/_live_converters.py +84 -0
  32. google/genai/_transformers.py +15 -21
  33. google/genai/client.py +61 -55
  34. google/genai/live.py +1 -1
  35. google/genai/tests/client/test_custom_client.py +27 -0
  36. google/genai/tests/client/test_http_options.py +1 -1
  37. google/genai/tests/interactions/test_auth.py +1 -4
  38. google/genai/tests/interactions/test_integration.py +2 -0
  39. google/genai/tests/transformers/test_blobs.py +16 -3
  40. google/genai/types.py +58 -2
  41. google/genai/version.py +1 -1
  42. {google_genai-1.57.0.dist-info → google_genai-1.58.0.dist-info}/METADATA +6 -11
  43. {google_genai-1.57.0.dist-info → google_genai-1.58.0.dist-info}/RECORD +46 -41
  44. {google_genai-1.57.0.dist-info → google_genai-1.58.0.dist-info}/WHEEL +0 -0
  45. {google_genai-1.57.0.dist-info → google_genai-1.58.0.dist-info}/licenses/LICENSE +0 -0
  46. {google_genai-1.57.0.dist-info → google_genai-1.58.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: google-genai
3
- Version: 1.57.0
3
+ Version: 1.58.0
4
4
  Summary: GenAI Python SDK
5
5
  Author-email: Google LLC <googleapis-packages@google.com>
6
6
  License-Expression: Apache-2.0
@@ -20,7 +20,7 @@ Requires-Python: >=3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: anyio<5.0.0,>=4.8.0
23
- Requires-Dist: google-auth[requests]<3.0.0,>=2.46.0
23
+ Requires-Dist: google-auth[requests]<3.0.0,>=2.47.0
24
24
  Requires-Dist: httpx<1.0.0,>=0.28.1
25
25
  Requires-Dist: pydantic<3.0.0,>=2.9.0
26
26
  Requires-Dist: requests<3.0.0,>=2.28.1
@@ -112,7 +112,7 @@ Below is an example `generate_content()` call using types from the types module:
112
112
 
113
113
  ```python
114
114
  response = client.models.generate_content(
115
- model='gemini-2.0-flash-001',
115
+ model='gemini-2.5-flash',
116
116
  contents=types.Part.from_text(text='Why is the sky blue?'),
117
117
  config=types.GenerateContentConfig(
118
118
  temperature=0,
@@ -127,7 +127,7 @@ types:
127
127
 
128
128
  ```python
129
129
  response = client.models.generate_content(
130
- model='gemini-2.0-flash-001',
130
+ model='gemini-2.5-flash',
131
131
  contents={'text': 'Why is the sky blue?'},
132
132
  config={
133
133
  'temperature': 0,
@@ -621,7 +621,7 @@ and [Gemini API docs](https://ai.google.dev/gemini-api/docs/models) respectively
621
621
  from google.genai import types
622
622
 
623
623
  response = client.models.generate_content(
624
- model='gemini-2.0-flash-001',
624
+ model='gemini-2.5-flash',
625
625
  contents='high',
626
626
  config=types.GenerateContentConfig(
627
627
  system_instruction='I say high, you say low',
@@ -1238,7 +1238,6 @@ print(response)
1238
1238
  ```python
1239
1239
  from google.genai import types
1240
1240
 
1241
- # multiple contents with config
1242
1241
  response = client.models.embed_content(
1243
1242
  model='gemini-embedding-001',
1244
1243
  contents=['why is the sky blue?', 'What is your age?'],
@@ -1252,12 +1251,9 @@ print(response)
1252
1251
 
1253
1252
  #### Generate Images
1254
1253
 
1255
- Support for generate images in Gemini Developer API is behind an allowlist
1256
-
1257
1254
  ```python
1258
1255
  from google.genai import types
1259
1256
 
1260
- # Generate Image
1261
1257
  response1 = client.models.generate_images(
1262
1258
  model='imagen-4.0-generate-001',
1263
1259
  prompt='An umbrella in the foreground, and a rainy night sky in the background',
@@ -1277,7 +1273,6 @@ Upscale image is only supported in Vertex AI.
1277
1273
  ```python
1278
1274
  from google.genai import types
1279
1275
 
1280
- # Upscale the generated image from above
1281
1276
  response2 = client.models.upscale_image(
1282
1277
  model='imagen-4.0-upscale-preview',
1283
1278
  image=response1.generated_images[0].image,
@@ -1977,7 +1972,7 @@ file = client.files.upload(
1977
1972
 
1978
1973
  # Create a batch job with file name
1979
1974
  batch_job = client.batches.create(
1980
- model="gemini-2.0-flash",
1975
+ model="gemini-2.5-flash",
1981
1976
  src="files/test-json",
1982
1977
  )
1983
1978
  ```
@@ -1,30 +1,30 @@
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=dNM9pT0-RTVnH-bBV7zBX4vPOF5mCUTFbv7tVvFrxQg,67741
3
+ google/genai/_api_client.py,sha256=IKWsmL7fLl5blxdV1Y3PDJ2-XpChutmcu_jtfd7gAmQ,67922
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=GUy1Z6v_fIGje8mPb9N1ocV0MzBpxvdH5-cDPNBWru8,43830
10
+ google/genai/_live_converters.py,sha256=KBpHDsQBxzGGPRsiP9HxM47NAqWY1i5-aesNMLNQeyY,46375
11
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
16
  google/genai/_tokens_converters.py,sha256=ILPWqhCU1MP2xi0Zg_Zz3fmZ37Yr-hGyg6iey9c4u_E,15593
17
- google/genai/_transformers.py,sha256=I19zzGXCrRd64lrBPpeawhBq7vifKn3fNUX9iIJ8Kwo,43266
17
+ google/genai/_transformers.py,sha256=rVhKCz9Xi8PTMVOj4F5ITqQWMzUYeNLYacSIFlDjZwc,43191
18
18
  google/genai/batches.py,sha256=DzCiHli8ncxRbsey3x6xAvwFOxjrvh4_S5uD8mwDtl4,78786
19
19
  google/genai/caches.py,sha256=24GhR6Nj-1Bdaey6ff6NNmP5pIjvlO0S1Dv_-CrCtyI,48118
20
20
  google/genai/chats.py,sha256=q3_iONHx8l-Y7EG29_f45yjFDdL2VFefUDLMdJtw0sE,16583
21
- google/genai/client.py,sha256=hEnr1VYP8St7gUzwnZpjBNlhvLpgR1w-3c-bLMxMfFI,21297
21
+ google/genai/client.py,sha256=odJ3erYMO1tkvn_9AOyfLawNX2tZf71fbVzqmmLEjOY,21327
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
25
  google/genai/files.py,sha256=omKew0R3nnilVSnCfijaJ_VFDIY5IjefrQWWuK2WOHo,39019
26
26
  google/genai/interactions.py,sha256=GLpo-rTdxb1JfL3LXE0c52JWaEGloLnPeCI9hoO_M2g,642
27
- google/genai/live.py,sha256=oe5tcR3nvvHzPe7RxZx-InZJW_dH-MtFH3NEMk7VuWc,41771
27
+ google/genai/live.py,sha256=aBa_JndziEQjxhdpqChmGHaG4m9npOp9Z0HTXnoZdl8,41804
28
28
  google/genai/live_music.py,sha256=Y7I7jh5SAKgyjBIMLboH0oTnZJ18uOT2SpRDKURvp94,6783
29
29
  google/genai/local_tokenizer.py,sha256=EKZ72cV2Zfutlo_efMOPnLRNZN4WQe57rD3G80cF340,14109
30
30
  google/genai/models.py,sha256=9TfxuOxJwfMqjL435D7vdgf9Gwn77gqRf_8_5aGdnN8,238719
@@ -33,11 +33,12 @@ 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
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
- google/genai/_interactions/__init__.py,sha256=-G17C_xmrnumwpH4kpFEGd5l9-Y5UnZx3RLbGuCPYZc,3398
36
+ google/genai/types.py,sha256=3QImav8ZsdiDTIJ0WXD3Zdt9lGFOa3QM1b8btB3IS0Y,654139
37
+ google/genai/version.py,sha256=QtMlVLy172_gY9IQeDM4RwYb01grTq0MSRSFGs4zofo,627
38
+ google/genai/_interactions/__init__.py,sha256=Zl5wlyZ1be3a1ENIERjj9ocpELL89RdZkHF3MnCkB3M,3571
39
39
  google/genai/_interactions/_base_client.py,sha256=Lkj3tnX3k2D0gNqFefUO6Rt6nltgN1blFS4kUV7bgAU,68298
40
- google/genai/_interactions/_client.py,sha256=QWqbkzAwjNpoz6gBetWYYSeWHMLVkFQm67-1HzbRUxY,18775
40
+ google/genai/_interactions/_client.py,sha256=VkBifJIA0IchcNRUUb4E8w02udzmJMedYPXYnqX1iKc,21234
41
+ google/genai/_interactions/_client_adapter.py,sha256=QLQa352-22JgCa72uFo0UGzZr0v-BaTZ4yUVKCQ5LIU,1349
41
42
  google/genai/_interactions/_compat.py,sha256=1HosuxO1kuZL6GwDmAoJD5kY999gjys4ifLdhXiJ4KI,7139
42
43
  google/genai/_interactions/_constants.py,sha256=t7rpey7f7Z65WNYx8OzR-VGkTEHaz_WCLOREzHLjFhk,1039
43
44
  google/genai/_interactions/_exceptions.py,sha256=XvtN0Ir69uwzlI9s-2gvXZJyDa3NZ0IqsMapC9nM8Bc,3825
@@ -63,13 +64,13 @@ google/genai/_interactions/_utils/_typing.py,sha256=Z5S4PcLWBL5GEhqU6j_XKaoh9ANr
63
64
  google/genai/_interactions/_utils/_utils.py,sha256=qWdNSrAUkn_wYeK5YFSeHyZWtEYJQkbh_Sg2t7impKQ,12851
64
65
  google/genai/_interactions/resources/__init__.py,sha256=TNMFv_-Zv9ayAgjkecVIBOnIK-goQIIvkvR3WiQl_DA,1207
65
66
  google/genai/_interactions/resources/interactions.py,sha256=6D94_eI2VQfxse4X3qfVInAw6SesxknOLtu917xFBMs,56663
66
- google/genai/_interactions/types/__init__.py,sha256=4NgeE8wXEDGaKSVqGwYpXFlueA32CqJNOT0KlPBd4B0,7662
67
+ google/genai/_interactions/types/__init__.py,sha256=saQGU4fshC1Oa5JsjjEEjXM_sJSlld3hnvHc8iiZAdQ,7970
67
68
  google/genai/_interactions/types/allowed_tools.py,sha256=Hke2IEAT_lc51MCt0_tGZGx3yvE7HTSawIlm-prCCGg,1047
68
69
  google/genai/_interactions/types/allowed_tools_param.py,sha256=PAAFKM2qX_Pj_pTxqcc0IQvii9soKLW_scMud2nUwMc,1092
69
70
  google/genai/_interactions/types/annotation.py,sha256=MKyItDJXCQ6ofAPjjBjioy7jagQNlpKZ9yqyc4MJcSI,1266
70
71
  google/genai/_interactions/types/annotation_param.py,sha256=ZUBT1UE66xVNdaRwjVPP3mcDTCaVUf2Zb5yabNAYpHE,1253
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
72
+ google/genai/_interactions/types/audio_content.py,sha256=l-itpD1ppizITGRNIeENJze8rxh_RmwmzCmWSYxSg08,1138
73
+ google/genai/_interactions/types/audio_content_param.py,sha256=6kd4Gdmx26eka_GC9o62OCAGUR1FkFWN094iEc6dBFs,1424
73
74
  google/genai/_interactions/types/audio_mime_type.py,sha256=kyVb8nPfzkVp6q7nNroQxdPjr4F2tkUmrKU9n4xHZR4,901
74
75
  google/genai/_interactions/types/audio_mime_type_param.py,sha256=rGJ8h1nRuLmWeJ9kVD6xPEUDy8yA-S5ZRmYulvIBBaE,947
75
76
  google/genai/_interactions/types/code_execution_call_arguments.py,sha256=0EaxrwSqMBrASkdMBDktqgM0ou2iWO1Llq49swL6d0M,1070
@@ -78,20 +79,22 @@ google/genai/_interactions/types/code_execution_call_content.py,sha256=PzLOPGmcR
78
79
  google/genai/_interactions/types/code_execution_call_content_param.py,sha256=1ghTk7il0hdUlbXI5Pj61tW1lS27ew-ZtAxna72vXkc,1202
79
80
  google/genai/_interactions/types/code_execution_result_content.py,sha256=-xGHcQyez_P46lQpQ9TF_yPIUe6HYQHRVeFd2GJiBuo,1299
80
81
  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
85
- google/genai/_interactions/types/content_stop.py,sha256=gEBJge1galuttrwkgJqMImSVVVleRNDIIO0QjZAb0gA,1053
82
+ google/genai/_interactions/types/content.py,sha256=_TiS-6imVNPtvbD43W0hhAXUvilfWS9W38YR7sGnqdA,2439
83
+ google/genai/_interactions/types/content_delta.py,sha256=HOnRCebySTNzDTj8GchE1gFVnFwqix7HJCufbpb_E4s,9538
84
+ google/genai/_interactions/types/content_param.py,sha256=4SlajVkn5MFuFNo2OU5bpORPYJtWu4_Z3l1DBN96fHs,2594
85
+ google/genai/_interactions/types/content_start.py,sha256=T0ziq1Q2g-ooSLxelsVdHgQB5P_11yRDRL5F17VoN6w,1159
86
+ google/genai/_interactions/types/content_stop.py,sha256=RimYJx4pEMI2JOnOnx2sOhFR8HhrigGy6U5gooxdHSc,1049
86
87
  google/genai/_interactions/types/deep_research_agent_config.py,sha256=iKkzEpE5jFoaeIlLE4nNOuf7mPgR1RHI-MUAnexw57I,1082
87
88
  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
89
+ google/genai/_interactions/types/document_content.py,sha256=48SWcPJ2LPKeCPcgFgC8jo_FYmhF4XpiDGDKfHSl9yg,1167
90
+ google/genai/_interactions/types/document_content_param.py,sha256=hULZQTdsaNrpkPZpudqcLlh_xSUy4QoOpSWsHyz2v30,1456
90
91
  google/genai/_interactions/types/document_mime_type.py,sha256=rGlvsd0Ctg9a5SfkYrnVq2-kKroail0-chFjDT9srxM,840
91
92
  google/genai/_interactions/types/document_mime_type_param.py,sha256=tH1GaDE__hZUsrb2OJ0ZveuC8etG2JWtIXZewFDi038,886
92
93
  google/genai/_interactions/types/dynamic_agent_config.py,sha256=tYsRt0V1ApMz1fUXcRN9KZM6ZmeUGswG1FF96mP8d_8,1607
93
94
  google/genai/_interactions/types/dynamic_agent_config_param.py,sha256=wkafw6vuC7eLrK5lfRPjqtLGJYXAy8b9ovmscraLWPo,1060
94
- google/genai/_interactions/types/error_event.py,sha256=DYHKnCft2l1LLs-LEt37Ic6TTsXxbxjhqC_pdMblGKg,1328
95
+ google/genai/_interactions/types/error_event.py,sha256=71IlxglFJJIBkKw0UNf-BYZ2LZadSmr_mRLq6_HSxmA,1324
96
+ google/genai/_interactions/types/file_search_call_content.py,sha256=M_vC4WOA8PJ4y7NGjQMYvSTUryXV_uZu8OIev5mNXVk,993
97
+ google/genai/_interactions/types/file_search_call_content_param.py,sha256=QuYKL5IiKizFLWuRz1e3dd_NLHNHN92UeiraBGLx0Yw,1005
95
98
  google/genai/_interactions/types/file_search_result_content.py,sha256=aN333JlOMhel-A92tPYCzaYH5SII6vRzHNAiD3tVw4I,1332
96
99
  google/genai/_interactions/types/file_search_result_content_param.py,sha256=tDxY2eb7vosePBQt9sFxbPQo9MAvolfKgInwia76WN4,1332
97
100
  google/genai/_interactions/types/function.py,sha256=0lh1qn73ZVJ7THAOq0pcfUV_37u9VspSCMlOXVKUed4,1141
@@ -100,8 +103,8 @@ google/genai/_interactions/types/function_call_content_param.py,sha256=GNj_GRYdd
100
103
  google/genai/_interactions/types/function_param.py,sha256=GMSumys9sCsWix9f4db6Pbc3pg7mGYrQJgWuawiANAY,1119
101
104
  google/genai/_interactions/types/function_result_content.py,sha256=clzkD9fq7vTCHSv0NTqnd0oxH92SrIjtaQYWlypaSfE,1542
102
105
  google/genai/_interactions/types/function_result_content_param.py,sha256=KXCzjjlovC6OnfW0kH_HSDK88k1-TWhFA7kQ5V09ztM,1628
103
- google/genai/_interactions/types/generation_config.py,sha256=J1SsfXD6d_EwGW9xnhmxXqCkiVmOdjhhVNiHwpoTxik,1991
104
- google/genai/_interactions/types/generation_config_param.py,sha256=3x83t0S4Du3-W5QWoYZsw6jfQlDSQnQlgPHYt8Jyb_0,1952
106
+ google/genai/_interactions/types/generation_config.py,sha256=V_p-dhIBk1jeIXJE8V6vkHzujvxkaZQeDZ8ZBVP4r3w,2124
107
+ google/genai/_interactions/types/generation_config_param.py,sha256=HPJTqdLSlWtrOglBi14Fnq4UAkr21MBs6frYImG90YQ,2084
105
108
  google/genai/_interactions/types/google_search_call_arguments.py,sha256=KZbdLhr6kFCZruO-nIkZaq2qm_wMlQjH65xZHwlfOGU,971
106
109
  google/genai/_interactions/types/google_search_call_arguments_param.py,sha256=6W-HI1t2QOFJWDy8yfNU88ACq9sxigFufi74AIqMQX8,1033
107
110
  google/genai/_interactions/types/google_search_call_content.py,sha256=2kg2ZTZSbVfkmiAZ5i6e_6NARA6KamrTpt2XdNHwdzA,1178
@@ -110,16 +113,18 @@ google/genai/_interactions/types/google_search_result.py,sha256=hrnggr-PKW-JwHk4
110
113
  google/genai/_interactions/types/google_search_result_content.py,sha256=nMzuWYcj2QeBFLUiCx7IaaJDuSHlSO7ccB0l9WDGodc,1375
111
114
  google/genai/_interactions/types/google_search_result_content_param.py,sha256=gcLR7zJUbqsIeXPLLjCQa27W3JR7LnDAyo-pZ-3DvB8,1379
112
115
  google/genai/_interactions/types/google_search_result_param.py,sha256=MXdWoqxfKxP6tPEYWvmgHzg2xjXyT4AnkD_GjHe9rhg,1104
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
116
+ google/genai/_interactions/types/image_config.py,sha256=Hffl-OwSqb6GdKP8pWZP2HcaC6MBPSsSXc-htQ0BEEg,1036
117
+ google/genai/_interactions/types/image_config_param.py,sha256=ICmhxQ4rCh7yN1fKT2UE1SRKW9NskC1arBlKTmiURB8,1011
118
+ google/genai/_interactions/types/image_content.py,sha256=iS7zvC4PeLOQfBVS18r7YQ1Eap5hrBr43HT_7HuiOl8,1258
119
+ google/genai/_interactions/types/image_content_param.py,sha256=Qof1jfT9Ey83hI-l63gq-OSqsj1R4kaToN8C4dZFbb8,1527
115
120
  google/genai/_interactions/types/image_mime_type.py,sha256=JSM0MElIy62mLFjKiuheHeV0px02I-Nrh8H2yZTDU3I,884
116
121
  google/genai/_interactions/types/image_mime_type_param.py,sha256=syGoPn7nm3LoxqFbJhg3q9Bno68ywKU9hzoufbOm8xQ,930
117
- google/genai/_interactions/types/interaction.py,sha256=dSi8Th0J46bgUBjbRdCsxiEfoGGHmmGssYjzl0QCDqY,4009
118
- google/genai/_interactions/types/interaction_create_params.py,sha256=MBsmLJiH6KR02iA5QgD6Lq0X8I-Wke_Uu6WaZtnaTks,6791
119
- google/genai/_interactions/types/interaction_event.py,sha256=CDV6XDgpsbtbtDEDBSrCQEqIltQyIGfYLtdvtEXiLRk,1179
122
+ google/genai/_interactions/types/interaction.py,sha256=awI9GIgg8SHNDq7E-UGi4dQgSJY_uD_hzOP46HzR8oU,4096
123
+ google/genai/_interactions/types/interaction_create_params.py,sha256=DL2huAy_rXYFWGveakzYel_zh7HE5_fA60nha8wPswk,6894
124
+ google/genai/_interactions/types/interaction_event.py,sha256=JkLyt1ikUZrDmQ9SZKc3WxJ9cVytEwu8X70vo3SrcNQ,1175
120
125
  google/genai/_interactions/types/interaction_get_params.py,sha256=kJnLjBS-uX6K4JeDdp1gaezb-I58aWtHBl3w8TNn3Os,1628
121
- google/genai/_interactions/types/interaction_sse_event.py,sha256=oZwSYZyNFpaOwa3BcraHdiCjZ14ttv8qjKRUvSQHhVA,1172
122
- google/genai/_interactions/types/interaction_status_update.py,sha256=FbtOHzybStxWVb1o30ppXPJ8F9f-Cgq9LgeV4VU_Jc0,1207
126
+ google/genai/_interactions/types/interaction_sse_event.py,sha256=v59HGzqpW0ywuytcXYoCoSBnK7IxO1fnArbC6upCugc,1275
127
+ google/genai/_interactions/types/interaction_status_update.py,sha256=QcS8BXpstQz24KxoUl7oCPz6Xo77alytxUsIVMYrt6E,1203
123
128
  google/genai/_interactions/types/mcp_server_tool_call_content.py,sha256=J58FpA3gM4EeMSrsCbtzZzmkwhD5r1ChEMw_aT9X-aE,1210
124
129
  google/genai/_interactions/types/mcp_server_tool_call_content_param.py,sha256=kCe6nCCQz0M7biVvpItnPdyarbIa_Z_8xxY1rpsuTSA,1307
125
130
  google/genai/_interactions/types/mcp_server_tool_result_content.py,sha256=SV9YX_2-jyq_zZ9-Xy0yAGf25VeiX1IGUFOkMSjWe78,1574
@@ -152,8 +157,8 @@ google/genai/_interactions/types/url_context_result_content_param.py,sha256=1p7p
152
157
  google/genai/_interactions/types/url_context_result_param.py,sha256=XmQ2EgunZDshXUbuy50J88kY1h2p1REzrIZV4Qp1mDI,1037
153
158
  google/genai/_interactions/types/usage.py,sha256=Zjt9nSBHKAFlEgnUh30m9zPGUYQUA5HOnDxEAXWUjp8,3470
154
159
  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
160
+ google/genai/_interactions/types/video_content.py,sha256=BNhOHQgQXQNjrtclzd0nh1pqF1CBEOUGp2jFI4IoZkM,1257
161
+ google/genai/_interactions/types/video_content_param.py,sha256=WibVINkpETqD-nVCSzgu-iN8D7KT6qE4MovOLlLYD0I,1526
157
162
  google/genai/_interactions/types/video_mime_type.py,sha256=W5uRyEoRCcgbP8TF26ddkYwcpFCmNVSGF9aOUKHrRaU,1027
158
163
  google/genai/_interactions/types/video_mime_type_param.py,sha256=eg7TeSxg6MXu5_kYiYVpzNlNidDieAqqEYvUWa-xb9k,1073
159
164
  google/genai/tests/__init__.py,sha256=gg8QQy0VqB4Cgf50Tbf5AAEf3IdzKsnCPf6IHXXbikY,689
@@ -203,8 +208,8 @@ google/genai/tests/client/test_async_stream.py,sha256=wDrCIvxP9s_nwMI_GMs8hwB-I9
203
208
  google/genai/tests/client/test_client_close.py,sha256=mi0weKH6UkZi6W-6ZnygvdFQOD6fwKCqKl9ZKvlaKvg,6024
204
209
  google/genai/tests/client/test_client_initialization.py,sha256=RssmXtJDCw-0VL-s6W_3dsLvU3-Z0D-V2VaTxnvi9yY,55157
205
210
  google/genai/tests/client/test_client_requests.py,sha256=ATTGdQPLpTWp25f5apIcWTRjV5aEHQoUDOHRRUpxLlU,7403
206
- google/genai/tests/client/test_custom_client.py,sha256=GJdw2wPapXiwz6VHxBTWgcXu4XvdFLdViHEAQ4U2xDA,2416
207
- google/genai/tests/client/test_http_options.py,sha256=YLCAw7tpgEVone_hd644jhPOcissP_4_UHaAi5SeV88,5492
211
+ google/genai/tests/client/test_custom_client.py,sha256=1E8fAhPdKYYnKvDJuqPyptEfU9zh1WmOurxlnXg9huc,3239
212
+ google/genai/tests/client/test_http_options.py,sha256=i9NJykXt1MtjK4R9PXPnbQvSt3XkeqO2ca5wqsiHx3A,5484
208
213
  google/genai/tests/client/test_replay_client_equality.py,sha256=W6NvtEObD6nkAryHYYNvpQnTvshWh8GVbGE3bjtf8tk,5139
209
214
  google/genai/tests/client/test_retries.py,sha256=LF_Any94lzxI9FWP-crGRJmG_Ej9w3iqnMt40V2dsNU,23651
210
215
  google/genai/tests/client/test_upload_errors.py,sha256=BV60CZm61XUqcFBxgwDAKV1WFlsxKxQr3ZKyKdgWklA,4712
@@ -233,8 +238,8 @@ google/genai/tests/files/test_register_table.py,sha256=eX6a8KbfMbq_P6tvXccP2dHli
233
238
  google/genai/tests/files/test_upload.py,sha256=uPioeL38l9lu2ebenllW3Co1tN5xeCMQuSvHudfRNmU,8372
234
239
  google/genai/tests/imports/test_no_optional_imports.py,sha256=fhSdu9gHQYoGYsgbfb3qdoI5cipJJ67Dk5RwSk4vcFE,987
235
240
  google/genai/tests/interactions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- google/genai/tests/interactions/test_auth.py,sha256=kUfNmSjzMY71yRcn1XdsJh_BfSPqAF1hwx9bUeLy4pk,17800
237
- google/genai/tests/interactions/test_integration.py,sha256=HzxR-DVtcLzGM5wTi768fSz3PB4bpdZEb7tKLqrQuUE,2252
241
+ google/genai/tests/interactions/test_auth.py,sha256=t0mvJVZIgfdEcWihIbe-fgaPrnMrVXuKwtaSEoR9J8s,17591
242
+ google/genai/tests/interactions/test_integration.py,sha256=JMOfFkbvDL0IfGr2Dq5_iYpETG4-9D35TYgMVlyy7tc,2318
238
243
  google/genai/tests/interactions/test_paths.py,sha256=7JRpeyaGyh5_Lj8BPKlXsskfsG5Xpw07Ns_KcsO17Pg,4441
239
244
  google/genai/tests/live/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
240
245
  google/genai/tests/live/test_live.py,sha256=6UrEodY4H2DSfRa5opbyxlhR-80pCX9B_PSJdbfhsJI,64135
@@ -319,7 +324,7 @@ google/genai/tests/shared/tunings/test_list.py,sha256=RNRzoPBjY5eq3AECvIekOTaHB1
319
324
  google/genai/tests/tokens/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
320
325
  google/genai/tests/tokens/test_create.py,sha256=iENP2DZxxxpT8cJf3Iirb1erQ7MxcgYAnm7wMN-Eiwc,5452
321
326
  google/genai/tests/transformers/__init__.py,sha256=IjrnP6P8utKkw6Xz9zJNQNzT-dIxIHQkv0FxiHDkOPQ,638
322
- google/genai/tests/transformers/test_blobs.py,sha256=Ynm3mj-DFzVuHkiq_VJLkLqi3SnY159rMrcPLUdPliQ,2133
327
+ google/genai/tests/transformers/test_blobs.py,sha256=B6kNKAc_PsC647dIP_d1jnel25WnOXcg9Cyi1vSQHJ4,2403
323
328
  google/genai/tests/transformers/test_bytes.py,sha256=F2yxf_s2cxqGzvqf6uhGuNW53MBmbxuBo2Ea--9jFa0,442
324
329
  google/genai/tests/transformers/test_duck_type.py,sha256=B8KrsH6mqLZn1JeCq32PhimKm1sLepSZ3b4XvbtLGR4,2395
325
330
  google/genai/tests/transformers/test_function_responses.py,sha256=J-KTJBskAxiwL2skRidQN2iumi1uS7nqr_2ACzOlCQc,2307
@@ -346,8 +351,8 @@ google/genai/tests/types/test_part_type.py,sha256=a_0eE2CgE7Ju6ePmu3DrupsZZCFiyD
346
351
  google/genai/tests/types/test_schema_from_json_schema.py,sha256=WiraJx5mRLW8lKHiWsyHTBYge4jVpeCYklbqGd4BkZQ,13894
347
352
  google/genai/tests/types/test_schema_json_schema.py,sha256=zn1gjsXcHTztzmajr8YX3Yb6rWnchjgjw6Yj1NZnG-0,15536
348
353
  google/genai/tests/types/test_types.py,sha256=Tqc_PpGo9-XH1xfkAjTCM9xngan_4w__hgpA0BkyA8g,84416
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,,
354
+ google_genai-1.58.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
355
+ google_genai-1.58.0.dist-info/METADATA,sha256=eEM50svToLZfqft-HjTwp8tmsa-yiq94f6n1Cdn2jv0,53135
356
+ google_genai-1.58.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
357
+ google_genai-1.58.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
358
+ google_genai-1.58.0.dist-info/RECORD,,