google-genai 1.54.0__py3-none-any.whl → 1.55.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 (319) hide show
  1. google/genai/__init__.py +1 -0
  2. google/genai/_interactions/__init__.py +117 -0
  3. google/genai/_interactions/_base_client.py +2019 -0
  4. google/genai/_interactions/_client.py +511 -0
  5. google/genai/_interactions/_compat.py +234 -0
  6. google/genai/_interactions/_constants.py +29 -0
  7. google/genai/_interactions/_exceptions.py +122 -0
  8. google/genai/_interactions/_files.py +139 -0
  9. google/genai/_interactions/_models.py +873 -0
  10. google/genai/_interactions/_qs.py +165 -0
  11. google/genai/_interactions/_resource.py +58 -0
  12. google/genai/_interactions/_response.py +847 -0
  13. google/genai/_interactions/_streaming.py +354 -0
  14. google/genai/_interactions/_types.py +276 -0
  15. google/genai/_interactions/_utils/__init__.py +79 -0
  16. google/genai/_interactions/_utils/_compat.py +61 -0
  17. google/genai/_interactions/_utils/_datetime_parse.py +151 -0
  18. google/genai/_interactions/_utils/_logs.py +40 -0
  19. google/genai/_interactions/_utils/_proxy.py +80 -0
  20. google/genai/_interactions/_utils/_reflection.py +57 -0
  21. google/genai/_interactions/_utils/_resources_proxy.py +39 -0
  22. google/genai/_interactions/_utils/_streams.py +27 -0
  23. google/genai/_interactions/_utils/_sync.py +73 -0
  24. google/genai/_interactions/_utils/_transform.py +472 -0
  25. google/genai/_interactions/_utils/_typing.py +172 -0
  26. google/genai/_interactions/_utils/_utils.py +437 -0
  27. google/genai/_interactions/_version.py +18 -0
  28. google/genai/_interactions/resources/__init__.py +34 -0
  29. google/genai/_interactions/resources/interactions.py +1350 -0
  30. google/genai/_interactions/types/__init__.py +107 -0
  31. google/genai/_interactions/types/allowed_tools.py +33 -0
  32. google/genai/_interactions/types/allowed_tools_param.py +35 -0
  33. google/genai/_interactions/types/annotation.py +42 -0
  34. google/genai/_interactions/types/annotation_param.py +42 -0
  35. google/genai/_interactions/types/audio_content.py +38 -0
  36. google/genai/_interactions/types/audio_content_param.py +45 -0
  37. google/genai/_interactions/types/audio_mime_type.py +25 -0
  38. google/genai/_interactions/types/audio_mime_type_param.py +27 -0
  39. google/genai/_interactions/types/code_execution_call_arguments.py +33 -0
  40. google/genai/_interactions/types/code_execution_call_arguments_param.py +32 -0
  41. google/genai/_interactions/types/code_execution_call_content.py +37 -0
  42. google/genai/_interactions/types/code_execution_call_content_param.py +37 -0
  43. google/genai/_interactions/types/code_execution_result_content.py +42 -0
  44. google/genai/_interactions/types/code_execution_result_content_param.py +41 -0
  45. google/genai/_interactions/types/content_delta.py +358 -0
  46. google/genai/_interactions/types/content_start.py +79 -0
  47. google/genai/_interactions/types/content_stop.py +35 -0
  48. google/genai/_interactions/types/deep_research_agent_config.py +33 -0
  49. google/genai/_interactions/types/deep_research_agent_config_param.py +32 -0
  50. google/genai/_interactions/types/document_content.py +36 -0
  51. google/genai/_interactions/types/document_content_param.py +43 -0
  52. google/genai/_interactions/types/dynamic_agent_config.py +44 -0
  53. google/genai/_interactions/types/dynamic_agent_config_param.py +33 -0
  54. google/genai/_interactions/types/error_event.py +46 -0
  55. google/genai/_interactions/types/file_search_result_content.py +46 -0
  56. google/genai/_interactions/types/file_search_result_content_param.py +46 -0
  57. google/genai/_interactions/types/function.py +38 -0
  58. google/genai/_interactions/types/function_call_content.py +39 -0
  59. google/genai/_interactions/types/function_call_content_param.py +39 -0
  60. google/genai/_interactions/types/function_param.py +37 -0
  61. google/genai/_interactions/types/function_result_content.py +52 -0
  62. google/genai/_interactions/types/function_result_content_param.py +54 -0
  63. google/genai/_interactions/types/generation_config.py +57 -0
  64. google/genai/_interactions/types/generation_config_param.py +59 -0
  65. google/genai/_interactions/types/google_search_call_arguments.py +29 -0
  66. google/genai/_interactions/types/google_search_call_arguments_param.py +31 -0
  67. google/genai/_interactions/types/google_search_call_content.py +37 -0
  68. google/genai/_interactions/types/google_search_call_content_param.py +37 -0
  69. google/genai/_interactions/types/google_search_result.py +35 -0
  70. google/genai/_interactions/types/google_search_result_content.py +43 -0
  71. google/genai/_interactions/types/google_search_result_content_param.py +44 -0
  72. google/genai/_interactions/types/google_search_result_param.py +35 -0
  73. google/genai/_interactions/types/image_content.py +41 -0
  74. google/genai/_interactions/types/image_content_param.py +48 -0
  75. google/genai/_interactions/types/image_mime_type.py +23 -0
  76. google/genai/_interactions/types/image_mime_type_param.py +25 -0
  77. google/genai/_interactions/types/interaction.py +165 -0
  78. google/genai/_interactions/types/interaction_create_params.py +212 -0
  79. google/genai/_interactions/types/interaction_event.py +37 -0
  80. google/genai/_interactions/types/interaction_get_params.py +46 -0
  81. google/genai/_interactions/types/interaction_sse_event.py +32 -0
  82. google/genai/_interactions/types/interaction_status_update.py +37 -0
  83. google/genai/_interactions/types/mcp_server_tool_call_content.py +42 -0
  84. google/genai/_interactions/types/mcp_server_tool_call_content_param.py +42 -0
  85. google/genai/_interactions/types/mcp_server_tool_result_content.py +52 -0
  86. google/genai/_interactions/types/mcp_server_tool_result_content_param.py +54 -0
  87. google/genai/_interactions/types/model.py +36 -0
  88. google/genai/_interactions/types/model_param.py +38 -0
  89. google/genai/_interactions/types/speech_config.py +35 -0
  90. google/genai/_interactions/types/speech_config_param.py +35 -0
  91. google/genai/_interactions/types/text_content.py +37 -0
  92. google/genai/_interactions/types/text_content_param.py +38 -0
  93. google/genai/_interactions/types/thinking_level.py +22 -0
  94. google/genai/_interactions/types/thought_content.py +41 -0
  95. google/genai/_interactions/types/thought_content_param.py +47 -0
  96. google/genai/_interactions/types/tool.py +100 -0
  97. google/genai/_interactions/types/tool_choice.py +26 -0
  98. google/genai/_interactions/types/tool_choice_config.py +28 -0
  99. google/genai/_interactions/types/tool_choice_config_param.py +29 -0
  100. google/genai/_interactions/types/tool_choice_param.py +28 -0
  101. google/genai/_interactions/types/tool_choice_type.py +22 -0
  102. google/genai/_interactions/types/tool_param.py +97 -0
  103. google/genai/_interactions/types/turn.py +76 -0
  104. google/genai/_interactions/types/turn_param.py +73 -0
  105. google/genai/_interactions/types/url_context_call_arguments.py +29 -0
  106. google/genai/_interactions/types/url_context_call_arguments_param.py +31 -0
  107. google/genai/_interactions/types/url_context_call_content.py +37 -0
  108. google/genai/_interactions/types/url_context_call_content_param.py +37 -0
  109. google/genai/_interactions/types/url_context_result.py +33 -0
  110. google/genai/_interactions/types/url_context_result_content.py +43 -0
  111. google/genai/_interactions/types/url_context_result_content_param.py +44 -0
  112. google/genai/_interactions/types/url_context_result_param.py +32 -0
  113. google/genai/_interactions/types/usage.py +106 -0
  114. google/genai/_interactions/types/usage_param.py +106 -0
  115. google/genai/_interactions/types/video_content.py +41 -0
  116. google/genai/_interactions/types/video_content_param.py +48 -0
  117. google/genai/_interactions/types/video_mime_type.py +36 -0
  118. google/genai/_interactions/types/video_mime_type_param.py +38 -0
  119. google/genai/_live_converters.py +31 -0
  120. google/genai/_tokens_converters.py +5 -0
  121. google/genai/batches.py +7 -0
  122. google/genai/client.py +223 -0
  123. google/genai/interactions.py +17 -0
  124. google/genai/live.py +4 -3
  125. google/genai/models.py +12 -0
  126. google/genai/tests/__init__.py +21 -0
  127. google/genai/tests/afc/__init__.py +21 -0
  128. google/genai/tests/afc/test_convert_if_exist_pydantic_model.py +309 -0
  129. google/genai/tests/afc/test_convert_number_values_for_function_call_args.py +63 -0
  130. google/genai/tests/afc/test_find_afc_incompatible_tool_indexes.py +240 -0
  131. google/genai/tests/afc/test_generate_content_stream_afc.py +530 -0
  132. google/genai/tests/afc/test_generate_content_stream_afc_thoughts.py +77 -0
  133. google/genai/tests/afc/test_get_function_map.py +176 -0
  134. google/genai/tests/afc/test_get_function_response_parts.py +277 -0
  135. google/genai/tests/afc/test_get_max_remote_calls_for_afc.py +130 -0
  136. google/genai/tests/afc/test_invoke_function_from_dict_args.py +241 -0
  137. google/genai/tests/afc/test_raise_error_for_afc_incompatible_config.py +159 -0
  138. google/genai/tests/afc/test_should_append_afc_history.py +53 -0
  139. google/genai/tests/afc/test_should_disable_afc.py +214 -0
  140. google/genai/tests/batches/__init__.py +17 -0
  141. google/genai/tests/batches/test_cancel.py +77 -0
  142. google/genai/tests/batches/test_create.py +78 -0
  143. google/genai/tests/batches/test_create_with_bigquery.py +113 -0
  144. google/genai/tests/batches/test_create_with_file.py +82 -0
  145. google/genai/tests/batches/test_create_with_gcs.py +125 -0
  146. google/genai/tests/batches/test_create_with_inlined_requests.py +255 -0
  147. google/genai/tests/batches/test_delete.py +86 -0
  148. google/genai/tests/batches/test_embedding.py +157 -0
  149. google/genai/tests/batches/test_get.py +78 -0
  150. google/genai/tests/batches/test_list.py +79 -0
  151. google/genai/tests/caches/__init__.py +17 -0
  152. google/genai/tests/caches/constants.py +29 -0
  153. google/genai/tests/caches/test_create.py +210 -0
  154. google/genai/tests/caches/test_create_custom_url.py +105 -0
  155. google/genai/tests/caches/test_delete.py +54 -0
  156. google/genai/tests/caches/test_delete_custom_url.py +52 -0
  157. google/genai/tests/caches/test_get.py +94 -0
  158. google/genai/tests/caches/test_get_custom_url.py +52 -0
  159. google/genai/tests/caches/test_list.py +68 -0
  160. google/genai/tests/caches/test_update.py +70 -0
  161. google/genai/tests/caches/test_update_custom_url.py +58 -0
  162. google/genai/tests/chats/__init__.py +1 -0
  163. google/genai/tests/chats/test_get_history.py +597 -0
  164. google/genai/tests/chats/test_send_message.py +844 -0
  165. google/genai/tests/chats/test_validate_response.py +90 -0
  166. google/genai/tests/client/__init__.py +17 -0
  167. google/genai/tests/client/test_async_stream.py +427 -0
  168. google/genai/tests/client/test_client_close.py +197 -0
  169. google/genai/tests/client/test_client_initialization.py +1687 -0
  170. google/genai/tests/client/test_client_requests.py +355 -0
  171. google/genai/tests/client/test_custom_client.py +77 -0
  172. google/genai/tests/client/test_http_options.py +178 -0
  173. google/genai/tests/client/test_replay_client_equality.py +168 -0
  174. google/genai/tests/client/test_retries.py +846 -0
  175. google/genai/tests/client/test_upload_errors.py +136 -0
  176. google/genai/tests/common/__init__.py +17 -0
  177. google/genai/tests/common/test_common.py +954 -0
  178. google/genai/tests/conftest.py +162 -0
  179. google/genai/tests/documents/__init__.py +17 -0
  180. google/genai/tests/documents/test_delete.py +51 -0
  181. google/genai/tests/documents/test_get.py +85 -0
  182. google/genai/tests/documents/test_list.py +72 -0
  183. google/genai/tests/errors/__init__.py +1 -0
  184. google/genai/tests/errors/test_api_error.py +417 -0
  185. google/genai/tests/file_search_stores/__init__.py +17 -0
  186. google/genai/tests/file_search_stores/test_create.py +66 -0
  187. google/genai/tests/file_search_stores/test_delete.py +64 -0
  188. google/genai/tests/file_search_stores/test_get.py +94 -0
  189. google/genai/tests/file_search_stores/test_import_file.py +112 -0
  190. google/genai/tests/file_search_stores/test_list.py +57 -0
  191. google/genai/tests/file_search_stores/test_upload_to_file_search_store.py +141 -0
  192. google/genai/tests/files/__init__.py +17 -0
  193. google/genai/tests/files/test_delete.py +46 -0
  194. google/genai/tests/files/test_download.py +85 -0
  195. google/genai/tests/files/test_get.py +46 -0
  196. google/genai/tests/files/test_list.py +72 -0
  197. google/genai/tests/files/test_upload.py +255 -0
  198. google/genai/tests/imports/test_no_optional_imports.py +28 -0
  199. google/genai/tests/interactions/__init__.py +0 -0
  200. google/genai/tests/interactions/test_integration.py +80 -0
  201. google/genai/tests/live/__init__.py +16 -0
  202. google/genai/tests/live/test_live.py +2177 -0
  203. google/genai/tests/live/test_live_music.py +362 -0
  204. google/genai/tests/live/test_live_response.py +163 -0
  205. google/genai/tests/live/test_send_client_content.py +147 -0
  206. google/genai/tests/live/test_send_realtime_input.py +268 -0
  207. google/genai/tests/live/test_send_tool_response.py +222 -0
  208. google/genai/tests/local_tokenizer/__init__.py +17 -0
  209. google/genai/tests/local_tokenizer/test_local_tokenizer.py +343 -0
  210. google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py +235 -0
  211. google/genai/tests/mcp/__init__.py +17 -0
  212. google/genai/tests/mcp/test_has_mcp_tool_usage.py +89 -0
  213. google/genai/tests/mcp/test_mcp_to_gemini_tools.py +191 -0
  214. google/genai/tests/mcp/test_parse_config_for_mcp_sessions.py +201 -0
  215. google/genai/tests/mcp/test_parse_config_for_mcp_usage.py +130 -0
  216. google/genai/tests/mcp/test_set_mcp_usage_header.py +72 -0
  217. google/genai/tests/models/__init__.py +17 -0
  218. google/genai/tests/models/constants.py +8 -0
  219. google/genai/tests/models/test_compute_tokens.py +120 -0
  220. google/genai/tests/models/test_count_tokens.py +159 -0
  221. google/genai/tests/models/test_delete.py +107 -0
  222. google/genai/tests/models/test_edit_image.py +264 -0
  223. google/genai/tests/models/test_embed_content.py +94 -0
  224. google/genai/tests/models/test_function_call_streaming.py +442 -0
  225. google/genai/tests/models/test_generate_content.py +2502 -0
  226. google/genai/tests/models/test_generate_content_cached_content.py +132 -0
  227. google/genai/tests/models/test_generate_content_config_zero_value.py +103 -0
  228. google/genai/tests/models/test_generate_content_from_apikey.py +44 -0
  229. google/genai/tests/models/test_generate_content_http_options.py +40 -0
  230. google/genai/tests/models/test_generate_content_image_generation.py +143 -0
  231. google/genai/tests/models/test_generate_content_mcp.py +343 -0
  232. google/genai/tests/models/test_generate_content_media_resolution.py +97 -0
  233. google/genai/tests/models/test_generate_content_model.py +139 -0
  234. google/genai/tests/models/test_generate_content_part.py +821 -0
  235. google/genai/tests/models/test_generate_content_thought.py +76 -0
  236. google/genai/tests/models/test_generate_content_tools.py +1761 -0
  237. google/genai/tests/models/test_generate_images.py +191 -0
  238. google/genai/tests/models/test_generate_videos.py +759 -0
  239. google/genai/tests/models/test_get.py +104 -0
  240. google/genai/tests/models/test_list.py +233 -0
  241. google/genai/tests/models/test_recontext_image.py +189 -0
  242. google/genai/tests/models/test_segment_image.py +148 -0
  243. google/genai/tests/models/test_update.py +95 -0
  244. google/genai/tests/models/test_upscale_image.py +157 -0
  245. google/genai/tests/operations/__init__.py +17 -0
  246. google/genai/tests/operations/test_get.py +38 -0
  247. google/genai/tests/public_samples/__init__.py +17 -0
  248. google/genai/tests/public_samples/test_gemini_text_only.py +34 -0
  249. google/genai/tests/pytest_helper.py +229 -0
  250. google/genai/tests/shared/__init__.py +16 -0
  251. google/genai/tests/shared/batches/__init__.py +14 -0
  252. google/genai/tests/shared/batches/test_create_delete.py +57 -0
  253. google/genai/tests/shared/batches/test_create_get_cancel.py +56 -0
  254. google/genai/tests/shared/batches/test_list.py +40 -0
  255. google/genai/tests/shared/caches/__init__.py +14 -0
  256. google/genai/tests/shared/caches/test_create_get_delete.py +67 -0
  257. google/genai/tests/shared/caches/test_create_update_get.py +71 -0
  258. google/genai/tests/shared/caches/test_list.py +40 -0
  259. google/genai/tests/shared/chats/__init__.py +14 -0
  260. google/genai/tests/shared/chats/test_send_message.py +48 -0
  261. google/genai/tests/shared/chats/test_send_message_stream.py +50 -0
  262. google/genai/tests/shared/files/__init__.py +14 -0
  263. google/genai/tests/shared/files/test_list.py +41 -0
  264. google/genai/tests/shared/files/test_upload_get_delete.py +54 -0
  265. google/genai/tests/shared/models/__init__.py +14 -0
  266. google/genai/tests/shared/models/test_compute_tokens.py +41 -0
  267. google/genai/tests/shared/models/test_count_tokens.py +40 -0
  268. google/genai/tests/shared/models/test_edit_image.py +67 -0
  269. google/genai/tests/shared/models/test_embed.py +40 -0
  270. google/genai/tests/shared/models/test_generate_content.py +39 -0
  271. google/genai/tests/shared/models/test_generate_content_stream.py +54 -0
  272. google/genai/tests/shared/models/test_generate_images.py +40 -0
  273. google/genai/tests/shared/models/test_generate_videos.py +38 -0
  274. google/genai/tests/shared/models/test_list.py +37 -0
  275. google/genai/tests/shared/models/test_recontext_image.py +55 -0
  276. google/genai/tests/shared/models/test_segment_image.py +52 -0
  277. google/genai/tests/shared/models/test_upscale_image.py +52 -0
  278. google/genai/tests/shared/tunings/__init__.py +16 -0
  279. google/genai/tests/shared/tunings/test_create.py +46 -0
  280. google/genai/tests/shared/tunings/test_create_get_cancel.py +56 -0
  281. google/genai/tests/shared/tunings/test_list.py +39 -0
  282. google/genai/tests/tokens/__init__.py +16 -0
  283. google/genai/tests/tokens/test_create.py +154 -0
  284. google/genai/tests/transformers/__init__.py +17 -0
  285. google/genai/tests/transformers/test_blobs.py +71 -0
  286. google/genai/tests/transformers/test_bytes.py +15 -0
  287. google/genai/tests/transformers/test_duck_type.py +96 -0
  288. google/genai/tests/transformers/test_function_responses.py +72 -0
  289. google/genai/tests/transformers/test_schema.py +653 -0
  290. google/genai/tests/transformers/test_t_batch.py +286 -0
  291. google/genai/tests/transformers/test_t_content.py +160 -0
  292. google/genai/tests/transformers/test_t_contents.py +398 -0
  293. google/genai/tests/transformers/test_t_part.py +85 -0
  294. google/genai/tests/transformers/test_t_parts.py +87 -0
  295. google/genai/tests/transformers/test_t_tool.py +157 -0
  296. google/genai/tests/transformers/test_t_tools.py +195 -0
  297. google/genai/tests/tunings/__init__.py +16 -0
  298. google/genai/tests/tunings/test_cancel.py +39 -0
  299. google/genai/tests/tunings/test_end_to_end.py +106 -0
  300. google/genai/tests/tunings/test_get.py +67 -0
  301. google/genai/tests/tunings/test_list.py +75 -0
  302. google/genai/tests/tunings/test_tune.py +268 -0
  303. google/genai/tests/types/__init__.py +16 -0
  304. google/genai/tests/types/test_bytes_internal.py +271 -0
  305. google/genai/tests/types/test_bytes_type.py +152 -0
  306. google/genai/tests/types/test_future.py +101 -0
  307. google/genai/tests/types/test_optional_types.py +36 -0
  308. google/genai/tests/types/test_part_type.py +616 -0
  309. google/genai/tests/types/test_schema_from_json_schema.py +417 -0
  310. google/genai/tests/types/test_schema_json_schema.py +468 -0
  311. google/genai/tests/types/test_types.py +2903 -0
  312. google/genai/types.py +72 -0
  313. google/genai/version.py +1 -1
  314. {google_genai-1.54.0.dist-info → google_genai-1.55.0.dist-info}/METADATA +3 -1
  315. google_genai-1.55.0.dist-info/RECORD +345 -0
  316. google_genai-1.54.0.dist-info/RECORD +0 -41
  317. {google_genai-1.54.0.dist-info → google_genai-1.55.0.dist-info}/WHEEL +0 -0
  318. {google_genai-1.54.0.dist-info → google_genai-1.55.0.dist-info}/licenses/LICENSE +0 -0
  319. {google_genai-1.54.0.dist-info → google_genai-1.55.0.dist-info}/top_level.txt +0 -0
google/genai/types.py CHANGED
@@ -376,6 +376,10 @@ class FinishReason(_common.CaseInSensitiveEnum):
376
376
  """Image generation stopped because the generated images have prohibited content."""
377
377
  NO_IMAGE = 'NO_IMAGE'
378
378
  """The model was expected to generate an image, but none was generated."""
379
+ IMAGE_RECITATION = 'IMAGE_RECITATION'
380
+ """Image generation stopped because the generated image may be a recitation from a source."""
381
+ IMAGE_OTHER = 'IMAGE_OTHER'
382
+ """Image generation stopped for a reason not otherwise specified."""
379
383
 
380
384
 
381
385
  class HarmProbability(_common.CaseInSensitiveEnum):
@@ -857,6 +861,17 @@ class MediaModality(_common.CaseInSensitiveEnum):
857
861
  """Document, e.g. PDF."""
858
862
 
859
863
 
864
+ class VadSignalType(_common.CaseInSensitiveEnum):
865
+ """The type of the VAD signal."""
866
+
867
+ VAD_SIGNAL_TYPE_UNSPECIFIED = 'VAD_SIGNAL_TYPE_UNSPECIFIED'
868
+ """The default is VAD_SIGNAL_TYPE_UNSPECIFIED."""
869
+ VAD_SIGNAL_TYPE_SOS = 'VAD_SIGNAL_TYPE_SOS'
870
+ """Start of sentence signal."""
871
+ VAD_SIGNAL_TYPE_EOS = 'VAD_SIGNAL_TYPE_EOS'
872
+ """End of sentence signal."""
873
+
874
+
860
875
  class StartSensitivity(_common.CaseInSensitiveEnum):
861
876
  """Start of speech sensitivity."""
862
877
 
@@ -5165,6 +5180,12 @@ class GenerateContentConfig(_common.BaseModel):
5165
5180
  description="""The image generation configuration.
5166
5181
  """,
5167
5182
  )
5183
+ enable_enhanced_civic_answers: Optional[bool] = Field(
5184
+ default=None,
5185
+ description="""Enables enhanced civic answers. It may not be available for all
5186
+ models. This field is not supported in Vertex AI.
5187
+ """,
5188
+ )
5168
5189
 
5169
5190
  @pydantic.field_validator('response_schema', mode='before')
5170
5191
  @classmethod
@@ -5370,6 +5391,11 @@ class GenerateContentConfigDict(TypedDict, total=False):
5370
5391
  """The image generation configuration.
5371
5392
  """
5372
5393
 
5394
+ enable_enhanced_civic_answers: Optional[bool]
5395
+ """Enables enhanced civic answers. It may not be available for all
5396
+ models. This field is not supported in Vertex AI.
5397
+ """
5398
+
5373
5399
 
5374
5400
  GenerateContentConfigOrDict = Union[
5375
5401
  GenerateContentConfig, GenerateContentConfigDict
@@ -16218,6 +16244,24 @@ LiveServerSessionResumptionUpdateOrDict = Union[
16218
16244
  ]
16219
16245
 
16220
16246
 
16247
+ class VoiceActivityDetectionSignal(_common.BaseModel):
16248
+
16249
+ vad_signal_type: Optional[VadSignalType] = Field(
16250
+ default=None, description="""The type of the VAD signal."""
16251
+ )
16252
+
16253
+
16254
+ class VoiceActivityDetectionSignalDict(TypedDict, total=False):
16255
+
16256
+ vad_signal_type: Optional[VadSignalType]
16257
+ """The type of the VAD signal."""
16258
+
16259
+
16260
+ VoiceActivityDetectionSignalOrDict = Union[
16261
+ VoiceActivityDetectionSignal, VoiceActivityDetectionSignalDict
16262
+ ]
16263
+
16264
+
16221
16265
  class LiveServerMessage(_common.BaseModel):
16222
16266
  """Response message for API call."""
16223
16267
 
@@ -16249,6 +16293,9 @@ class LiveServerMessage(_common.BaseModel):
16249
16293
  description="""Update of the session resumption state.""",
16250
16294
  )
16251
16295
  )
16296
+ voice_activity_detection_signal: Optional[VoiceActivityDetectionSignal] = (
16297
+ Field(default=None, description="""Voice activity detection signal.""")
16298
+ )
16252
16299
 
16253
16300
  @property
16254
16301
  def text(self) -> Optional[str]:
@@ -16345,6 +16392,9 @@ class LiveServerMessageDict(TypedDict, total=False):
16345
16392
  session_resumption_update: Optional[LiveServerSessionResumptionUpdateDict]
16346
16393
  """Update of the session resumption state."""
16347
16394
 
16395
+ voice_activity_detection_signal: Optional[VoiceActivityDetectionSignalDict]
16396
+ """Voice activity detection signal."""
16397
+
16348
16398
 
16349
16399
  LiveServerMessageOrDict = Union[LiveServerMessage, LiveServerMessageDict]
16350
16400
 
@@ -16634,6 +16684,12 @@ class LiveClientSetup(_common.BaseModel):
16634
16684
  description="""Configures the proactivity of the model. This allows the model to respond proactively to
16635
16685
  the input and to ignore irrelevant input.""",
16636
16686
  )
16687
+ explicit_vad_signal: Optional[bool] = Field(
16688
+ default=None,
16689
+ description="""Configures the explicit VAD signal. If enabled, the client will send
16690
+ vad_signal to indicate the start and end of speech. This allows the server
16691
+ to process the audio more efficiently.""",
16692
+ )
16637
16693
 
16638
16694
 
16639
16695
  class LiveClientSetupDict(TypedDict, total=False):
@@ -16685,6 +16741,11 @@ class LiveClientSetupDict(TypedDict, total=False):
16685
16741
  """Configures the proactivity of the model. This allows the model to respond proactively to
16686
16742
  the input and to ignore irrelevant input."""
16687
16743
 
16744
+ explicit_vad_signal: Optional[bool]
16745
+ """Configures the explicit VAD signal. If enabled, the client will send
16746
+ vad_signal to indicate the start and end of speech. This allows the server
16747
+ to process the audio more efficiently."""
16748
+
16688
16749
 
16689
16750
  LiveClientSetupOrDict = Union[LiveClientSetup, LiveClientSetupDict]
16690
16751
 
@@ -17169,6 +17230,12 @@ If included the server will send SessionResumptionUpdate messages.""",
17169
17230
  description="""Configures the proactivity of the model. This allows the model to respond proactively to
17170
17231
  the input and to ignore irrelevant input.""",
17171
17232
  )
17233
+ explicit_vad_signal: Optional[bool] = Field(
17234
+ default=None,
17235
+ description="""Configures the explicit VAD signal. If enabled, the client will send
17236
+ vad_signal to indicate the start and end of speech. This allows the server
17237
+ to process the audio more efficiently.""",
17238
+ )
17172
17239
 
17173
17240
 
17174
17241
  class LiveConnectConfigDict(TypedDict, total=False):
@@ -17271,6 +17338,11 @@ If included the server will send SessionResumptionUpdate messages."""
17271
17338
  """Configures the proactivity of the model. This allows the model to respond proactively to
17272
17339
  the input and to ignore irrelevant input."""
17273
17340
 
17341
+ explicit_vad_signal: Optional[bool]
17342
+ """Configures the explicit VAD signal. If enabled, the client will send
17343
+ vad_signal to indicate the start and end of speech. This allows the server
17344
+ to process the audio more efficiently."""
17345
+
17274
17346
 
17275
17347
  LiveConnectConfigOrDict = Union[LiveConnectConfig, LiveConnectConfigDict]
17276
17348
 
google/genai/version.py CHANGED
@@ -13,4 +13,4 @@
13
13
  # limitations under the License.
14
14
  #
15
15
 
16
- __version__ = '1.54.0' # x-release-please-version
16
+ __version__ = '1.55.0' # x-release-please-version
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: google-genai
3
- Version: 1.54.0
3
+ Version: 1.55.0
4
4
  Summary: GenAI Python SDK
5
5
  Author-email: Google LLC <googleapis-packages@google.com>
6
6
  License-Expression: Apache-2.0
@@ -27,6 +27,8 @@ Requires-Dist: requests<3.0.0,>=2.28.1
27
27
  Requires-Dist: tenacity<9.2.0,>=8.2.3
28
28
  Requires-Dist: websockets<15.1.0,>=13.0.0
29
29
  Requires-Dist: typing-extensions<5.0.0,>=4.11.0
30
+ Requires-Dist: distro<2,>=1.7.0
31
+ Requires-Dist: sniffio
30
32
  Provides-Extra: aiohttp
31
33
  Requires-Dist: aiohttp<3.13.3; extra == "aiohttp"
32
34
  Provides-Extra: local-tokenizer
@@ -0,0 +1,345 @@
1
+ google/genai/__init__.py,sha256=dIAk6AHhyy3b77cVKPvDyrZzkd9ibddrHZuieCq_eaA,756
2
+ google/genai/_adapters.py,sha256=Kok38miNYJff2n--l0zEK_hbq0y2rWOH7k75J7SMYbQ,1744
3
+ google/genai/_api_client.py,sha256=CrHSu9Hd4rhhEpv5ds5jU_5xk0XwixTY055pRQRbFnE,67216
4
+ google/genai/_api_module.py,sha256=lj8eUWx8_LBGBz-49qz6_ywWm3GYp3d8Bg5JoOHbtbI,902
5
+ google/genai/_automatic_function_calling_util.py,sha256=xXNkJR-pzSMkeSXMz3Jw-kMHFbTJEiRJ3wocuwtWW4I,11627
6
+ google/genai/_base_transformers.py,sha256=wljA6m4tLl4XLGlBC2DNOls5N9-X9tffBq0M7i8jgpw,1034
7
+ google/genai/_base_url.py,sha256=E5H4dew14Y16qfnB3XRnjSCi19cJVlkaMNoM_8ip-PM,1597
8
+ google/genai/_common.py,sha256=9HOP8GtEnTGTF-5A92hQdcPWeaCS6ig3vgnmm-8jiTY,25421
9
+ google/genai/_extra_utils.py,sha256=GXsUfyKAPZaW9_ySvdzSAXThvuzaKwXcAmdHW_hoHpY,25309
10
+ google/genai/_live_converters.py,sha256=Bu4nuSCQSWgyqSCza4rPzDHVK5h9LTBt-7H09ubEUrc,44630
11
+ google/genai/_local_tokenizer_loader.py,sha256=7yvJfEkWIpw2ueY4ZmoOAamJD-G7bm_9g44glD6bVwM,7147
12
+ google/genai/_mcp_utils.py,sha256=HuWJ8FUjquv40Mf_QjcL5r5yXWrS-JjINsjlOSbbyAc,3870
13
+ google/genai/_operations_converters.py,sha256=zw8DqkgJWHphrw9waAjAiH98QbE2Rnum3zGm02dHQWo,11695
14
+ google/genai/_replay_api_client.py,sha256=-sZY8pM8JulqTfuqIKaKHCy9MNXF7HJnX6fCzyTMpS0,22617
15
+ google/genai/_test_api_client.py,sha256=4ruFIy5_1qcbKqqIBu3HSQbpSOBrxiecBtDZaTGFR1s,4797
16
+ google/genai/_tokens_converters.py,sha256=_8Uy4ziG2N9OAZInqKVXiHWSpJ11DH_shMEfrCEiBLc,15593
17
+ google/genai/_transformers.py,sha256=I19zzGXCrRd64lrBPpeawhBq7vifKn3fNUX9iIJ8Kwo,43266
18
+ google/genai/batches.py,sha256=3uCErp_k2xSF7WmnP_zR859Nko2UAe0xZ61npHAH1EU,78628
19
+ google/genai/caches.py,sha256=MPYIElWqWtXkxiZ2FFCZspRVdT9sTrZzWEkBpQ-XII0,48118
20
+ google/genai/chats.py,sha256=pIBw8d13llupLn4a7vP6vnpbzDcvCCrZZ-Q2r8Cvo7g,16652
21
+ google/genai/client.py,sha256=s8BXqWCUzUWT00nLQxVSqdrIdMiCEUz1jPFHc4NVj-M,21205
22
+ google/genai/documents.py,sha256=GuYWVgRaYBzHv9aMgcZBrVkFlpBeaAeZsfhgvC_SLTA,16218
23
+ google/genai/errors.py,sha256=2Iux-5iGUJzEB6OWE3R18SckMEvNimOfpNCQIYL6cn8,8118
24
+ google/genai/file_search_stores.py,sha256=4EW_hRjkaGYu4gbQyNbiswTWk5nUgooxB5pqMi_WAME,41418
25
+ google/genai/files.py,sha256=g-geVkMmcgAsI7CPJqt3jzucEcjQf6He1fhnscUdxvs,31766
26
+ google/genai/interactions.py,sha256=GLpo-rTdxb1JfL3LXE0c52JWaEGloLnPeCI9hoO_M2g,642
27
+ google/genai/live.py,sha256=oe5tcR3nvvHzPe7RxZx-InZJW_dH-MtFH3NEMk7VuWc,41771
28
+ google/genai/live_music.py,sha256=Y7I7jh5SAKgyjBIMLboH0oTnZJ18uOT2SpRDKURvp94,6783
29
+ google/genai/local_tokenizer.py,sha256=EKZ72cV2Zfutlo_efMOPnLRNZN4WQe57rD3G80cF340,14109
30
+ google/genai/models.py,sha256=z7zvNvyGSTg3QMSX6a__0EVHklUYSAB72W0Y8jjHosQ,239193
31
+ google/genai/operations.py,sha256=FXJOnYp2HA5Xqa5mHW67mSa9p1D_EaGGyUoKc09xFPQ,16384
32
+ google/genai/pagers.py,sha256=1i8NXDuKuQznFin5H5-I0hmj6H5YMTYsEJP7S0ITSbY,7158
33
+ google/genai/py.typed,sha256=RsMFoLwBkAvY05t6izop4UHZtqOPLiKp3GkIEizzmQY,40
34
+ google/genai/tokens.py,sha256=4BPW0gGWFeFVk3INkuY2tfREnsrvzQDhouvRI6_F9Q8,12235
35
+ google/genai/tunings.py,sha256=JR_ngNjjgIMd_iYDD53wBCYyHfY5V83njmtQOpBNpL0,76343
36
+ google/genai/types.py,sha256=EqUzS9hHVa5e_uBFwNtFUO7ARojCs0dtdGYOr-gZavc,648495
37
+ google/genai/version.py,sha256=HVhKgLJn4_y9WdGxfL7SK0aN805XciWv5EpP-sY3Pkw,627
38
+ google/genai/_interactions/__init__.py,sha256=-G17C_xmrnumwpH4kpFEGd5l9-Y5UnZx3RLbGuCPYZc,3398
39
+ google/genai/_interactions/_base_client.py,sha256=SJJT5ak-gOikfDwAJJL3Ehiseptgc0ItEAwivoEIH4o,68098
40
+ google/genai/_interactions/_client.py,sha256=QWqbkzAwjNpoz6gBetWYYSeWHMLVkFQm67-1HzbRUxY,18775
41
+ google/genai/_interactions/_compat.py,sha256=1HosuxO1kuZL6GwDmAoJD5kY999gjys4ifLdhXiJ4KI,7139
42
+ google/genai/_interactions/_constants.py,sha256=t7rpey7f7Z65WNYx8OzR-VGkTEHaz_WCLOREzHLjFhk,1039
43
+ google/genai/_interactions/_exceptions.py,sha256=XvtN0Ir69uwzlI9s-2gvXZJyDa3NZ0IqsMapC9nM8Bc,3825
44
+ google/genai/_interactions/_files.py,sha256=K7qgCZWoSaNI4RrdY1cUnNMXNF3Usq1IgCvzqwFgfMQ,4144
45
+ google/genai/_interactions/_models.py,sha256=naQPvxL0gipx0FTLC3jOCd2aG3eINFVq-WAUTsVOX8Y,32436
46
+ google/genai/_interactions/_qs.py,sha256=ZaB5ZsbJnq0L7s-Y30_7k1jAVNAgcPAh45xa2xeE1GQ,5405
47
+ google/genai/_interactions/_resource.py,sha256=2SnZ1mvldUzurojYs_Pg_aItzP5A9WmhjjMCh_dXnCg,1773
48
+ google/genai/_interactions/_response.py,sha256=rJ8tQXfKYgFxjxML63XGSQuH_Su9OQfqGtw0ann1iT4,29507
49
+ google/genai/_interactions/_streaming.py,sha256=bjjyV9iuZxEOP0PaQGSA-_xIeK3Yuip2qb2tTqRkJn4,11016
50
+ google/genai/_interactions/_types.py,sha256=OZXQrS3qydYn9F-YnTDrxv5lBoKiTLha3fr202M5QOQ,7892
51
+ google/genai/_interactions/_version.py,sha256=HYUoiFQBODx2RJNZpIxeUnGFUe8Gc9FEO6tSeZQgO-I,668
52
+ google/genai/_interactions/_utils/__init__.py,sha256=fNs6SzzZLqVABQ0TgZ3z1LBri3iVIdtvKo0GcTiNXJM,2882
53
+ google/genai/_interactions/_utils/_compat.py,sha256=NfPeqV7YsaW2h40s7NODt-uOngiMLf9KboR0W-f64gU,1794
54
+ google/genai/_interactions/_utils/_datetime_parse.py,sha256=dYUm7Y3pBD4dzQmpr-onIalbkEQH8gSqdSok5wx24wE,4781
55
+ google/genai/_interactions/_utils/_logs.py,sha256=z9QPllBTUdyCkIpb3iHi_NZnM3GTG_OQtD4t1Htpex4,1404
56
+ google/genai/_interactions/_utils/_proxy.py,sha256=V_QfMtbDL4_OFaYynWeyCCkP7KPBuV7GEJspth55rS0,2552
57
+ google/genai/_interactions/_utils/_reflection.py,sha256=F4i9cYP3sGnxZ-dhp3lcFSRiB115znLodOM-gcVh-wA,1941
58
+ google/genai/_interactions/_utils/_resources_proxy.py,sha256=oblNXyW_PaDX3oFD5HPfSj4nEk5t7yTfPN6CXfMchv8,1266
59
+ google/genai/_interactions/_utils/_streams.py,sha256=qFn4GbF3Vvdx7oc65J7WjeEyUBF8rlMB_HvubXAlhII,866
60
+ google/genai/_interactions/_utils/_sync.py,sha256=mLePq9GOEBxScaapheKwO4ON-pCfXpzktYj6a5xdKTQ,2166
61
+ google/genai/_interactions/_utils/_transform.py,sha256=TjAN4LumRdzvMD0rcrFQhrlC31Mivg-c2kgRBIrn4Cg,16528
62
+ google/genai/_interactions/_utils/_typing.py,sha256=Z5S4PcLWBL5GEhqU6j_XKaoh9ANrTSDyMDDTlMB0KJ8,5385
63
+ google/genai/_interactions/_utils/_utils.py,sha256=qWdNSrAUkn_wYeK5YFSeHyZWtEYJQkbh_Sg2t7impKQ,12851
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
67
+ google/genai/_interactions/types/allowed_tools.py,sha256=Hke2IEAT_lc51MCt0_tGZGx3yvE7HTSawIlm-prCCGg,1047
68
+ google/genai/_interactions/types/allowed_tools_param.py,sha256=PAAFKM2qX_Pj_pTxqcc0IQvii9soKLW_scMud2nUwMc,1092
69
+ google/genai/_interactions/types/annotation.py,sha256=MKyItDJXCQ6ofAPjjBjioy7jagQNlpKZ9yqyc4MJcSI,1266
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
73
+ google/genai/_interactions/types/audio_mime_type.py,sha256=kyVb8nPfzkVp6q7nNroQxdPjr4F2tkUmrKU9n4xHZR4,901
74
+ google/genai/_interactions/types/audio_mime_type_param.py,sha256=rGJ8h1nRuLmWeJ9kVD6xPEUDy8yA-S5ZRmYulvIBBaE,947
75
+ google/genai/_interactions/types/code_execution_call_arguments.py,sha256=0EaxrwSqMBrASkdMBDktqgM0ou2iWO1Llq49swL6d0M,1070
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
83
+ 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
90
+ 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
93
+ 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
96
+ 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
99
+ google/genai/_interactions/types/generation_config.py,sha256=J1SsfXD6d_EwGW9xnhmxXqCkiVmOdjhhVNiHwpoTxik,1991
100
+ google/genai/_interactions/types/generation_config_param.py,sha256=3x83t0S4Du3-W5QWoYZsw6jfQlDSQnQlgPHYt8Jyb_0,1952
101
+ google/genai/_interactions/types/google_search_call_arguments.py,sha256=KZbdLhr6kFCZruO-nIkZaq2qm_wMlQjH65xZHwlfOGU,971
102
+ 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
105
+ 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
108
+ 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
111
+ google/genai/_interactions/types/image_mime_type.py,sha256=JSM0MElIy62mLFjKiuheHeV0px02I-Nrh8H2yZTDU3I,884
112
+ 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
115
+ google/genai/_interactions/types/interaction_event.py,sha256=CDV6XDgpsbtbtDEDBSrCQEqIltQyIGfYLtdvtEXiLRk,1179
116
+ google/genai/_interactions/types/interaction_get_params.py,sha256=kJnLjBS-uX6K4JeDdp1gaezb-I58aWtHBl3w8TNn3Os,1628
117
+ google/genai/_interactions/types/interaction_sse_event.py,sha256=oZwSYZyNFpaOwa3BcraHdiCjZ14ttv8qjKRUvSQHhVA,1172
118
+ 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
125
+ google/genai/_interactions/types/speech_config.py,sha256=VHJj9KCC9NMO0hbczIZn7KkPnO7ktcDmwajR5xUv11g,1100
126
+ 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
132
+ google/genai/_interactions/types/tool.py,sha256=Y6_IKoEK-sYpXZkLfzKlU_-_iqeSqtkfGpAjDzWVYEc,3098
133
+ google/genai/_interactions/types/tool_choice.py,sha256=DwSp7WJDuJTxmV37aAVFWwCYMEr9JSjDSQfshZOOAF8,915
134
+ google/genai/_interactions/types/tool_choice_config.py,sha256=yioQ81sexGoFcyqSEHw0r4oMwe1NP7UtniklbzzkSNM,930
135
+ google/genai/_interactions/types/tool_choice_config_param.py,sha256=OQggpC9EMJv9eJm4rTi0E3GsHizEvpH_OSo-LhKp1fQ,968
136
+ google/genai/_interactions/types/tool_choice_param.py,sha256=AFbr5Lw2g1hJWfDk3sU5hYHoFNAT0fQ9AbYSjl8qboM,977
137
+ google/genai/_interactions/types/tool_choice_type.py,sha256=XtE6ZbwRYXmMYwNBe8zmw_0INIVzwgXfRStVWbmwuAU,816
138
+ 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
141
+ google/genai/_interactions/types/url_context_call_arguments.py,sha256=JLPsuJmq816_lgT8qq_Sc8tMD0sAax5EmHWvTTMessc,933
142
+ 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
145
+ 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
148
+ 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/video_mime_type.py,sha256=W5uRyEoRCcgbP8TF26ddkYwcpFCmNVSGF9aOUKHrRaU,1027
154
+ google/genai/_interactions/types/video_mime_type_param.py,sha256=eg7TeSxg6MXu5_kYiYVpzNlNidDieAqqEYvUWa-xb9k,1073
155
+ google/genai/tests/__init__.py,sha256=gg8QQy0VqB4Cgf50Tbf5AAEf3IdzKsnCPf6IHXXbikY,689
156
+ google/genai/tests/conftest.py,sha256=qUw3yQte5eQo4VG-m3uWwamUy9LaQMbkdBMxuuFjtlU,5021
157
+ google/genai/tests/pytest_helper.py,sha256=5x2dwaJ3r1RTSVN0h8L-bkaOJjDbGjD_Evf0cq5kXhc,7807
158
+ google/genai/tests/afc/__init__.py,sha256=AqPvJAlU0sazclZEv9w4ycsKaRW1MNmjCmSWakTe7a8,708
159
+ google/genai/tests/afc/test_convert_if_exist_pydantic_model.py,sha256=A0uBgJAWimtky4P3XKNg2qH9tVEb3aYDzlsASQjTWRQ,8935
160
+ google/genai/tests/afc/test_convert_number_values_for_function_call_args.py,sha256=LLKU67BU_Tib_pmkOyb1hm5Ew9O2d08klLGJEjvYPy4,1769
161
+ google/genai/tests/afc/test_find_afc_incompatible_tool_indexes.py,sha256=byAyWJJkC4a21vM1i1qab3EvOETDdeuQIuXt1a9qhHk,8668
162
+ google/genai/tests/afc/test_generate_content_stream_afc.py,sha256=oO08IofdnxMR4AEXE_Xim0Q8SvkOGdElcX-_podqF18,16572
163
+ google/genai/tests/afc/test_generate_content_stream_afc_thoughts.py,sha256=Fy65xYRvWMlBF7D3h1qy3sO86UVMKQccjCsxtRBr2P8,2261
164
+ google/genai/tests/afc/test_get_function_map.py,sha256=2Byh4Tg2VEGyc2dX9WduiF8lwwOJTTNjeqDsHkNxq-o,4817
165
+ google/genai/tests/afc/test_get_function_response_parts.py,sha256=PFhFqlsjQpK7c7I837kl5EiIVDkie3qiXETFc_5zIT8,8025
166
+ google/genai/tests/afc/test_get_max_remote_calls_for_afc.py,sha256=ZDnRUbTc-7lM0ohDbzbemSa09XPWJkFWCn_9d2WkURM,3361
167
+ google/genai/tests/afc/test_invoke_function_from_dict_args.py,sha256=dOjqzQFLhy6We3Bb-VOI8X5V5I74DI9HNIe5pVwCmQA,7319
168
+ google/genai/tests/afc/test_raise_error_for_afc_incompatible_config.py,sha256=ZjEqqvcKHn-SP-D48Ghr3eOY5cc1IuLiXMNOMZ3oPSM,4803
169
+ google/genai/tests/afc/test_should_append_afc_history.py,sha256=HNEXhwgxD_PN-1FDr-c0z4W6mcMmg2hlO1wVJMuFro4,1656
170
+ google/genai/tests/afc/test_should_disable_afc.py,sha256=nJQzI7uN7wBy1OOgqQx1PFJNOYWzN6Ae98MGwrhEgL4,4951
171
+ google/genai/tests/batches/__init__.py,sha256=iN1nyq74rtvWV5ksbYJ9IQnkyNZA8dZxnHs9fD-yfJs,632
172
+ google/genai/tests/batches/test_cancel.py,sha256=BRhpmy9Vr6wGjigRpQeGxONBJ9j8vNPg6n6p5MOA6z8,2348
173
+ google/genai/tests/batches/test_create.py,sha256=3YBAh1eN4jTQy1pRm8TRC9bzHkAYSszuE2hj0zDEkLw,2356
174
+ google/genai/tests/batches/test_create_with_bigquery.py,sha256=PuS1KdFPVgkKMbzm1T_euqXcGWuBuZo1ciiNlFTP9eE,3674
175
+ google/genai/tests/batches/test_create_with_file.py,sha256=6KGRTNV8cojhMN3PtzD8nzioRi0xYBLInmLpfv6eIrA,2416
176
+ google/genai/tests/batches/test_create_with_gcs.py,sha256=IlEaE56zOqrDQshtsvDnDloS1z1Sw7a9dP_bcZav0L0,4049
177
+ google/genai/tests/batches/test_create_with_inlined_requests.py,sha256=XkfyYLp51LyanPoOYV9zWkrNa3WBxgXpHno-v-rv-oo,7418
178
+ google/genai/tests/batches/test_delete.py,sha256=RhyFKjt1qEFbPvPPzoBfeVvtb3GoLYCamsIz2QmlOzo,2718
179
+ google/genai/tests/batches/test_embedding.py,sha256=o7mKpzwDYArCgUBZ8Twl2hRiN6KS3gKTb_2-PemGUqI,4859
180
+ google/genai/tests/batches/test_get.py,sha256=-KiEi0mptdqh_D28kSAsEO7fsY8ipL2vHW0h0LDFe_4,2269
181
+ google/genai/tests/batches/test_list.py,sha256=SVeUk4QcNsrEHe1S5EZuJB9UepEPK0eszq5uvLCPUv8,2343
182
+ google/genai/tests/caches/__init__.py,sha256=3ox8j_0aP_e-KYnSX9IefvLEE1qz4hnV6rtc0t5cuAg,632
183
+ google/genai/tests/caches/constants.py,sha256=XzAlcPTd8sfu4xhrYuHJecwOKDEThzzoyn4s9BPgPsU,1003
184
+ google/genai/tests/caches/test_create.py,sha256=9SZi9vOgBhnD3Z7fDJs-aYUGoU0XTp8i31t06drylqM,7962
185
+ google/genai/tests/caches/test_create_custom_url.py,sha256=93LcV9BxCtZVDMDagf6etzEVDrk3Z_g85pcYa0EzDxc,4003
186
+ google/genai/tests/caches/test_delete.py,sha256=s2rq7qU87R1UZx4tBIp5PaU6-890XIJd8jXXTE2uOKY,1798
187
+ google/genai/tests/caches/test_delete_custom_url.py,sha256=vHZOr7f7_vIQN8AOiwd8FKg0kUP6FcsLIANo2k_AX6Y,1718
188
+ google/genai/tests/caches/test_get.py,sha256=6MiFJaXsy8XELN1GpAbx9tRWWAN2Q9UBCCBOePag3yQ,3008
189
+ google/genai/tests/caches/test_get_custom_url.py,sha256=6X5yeP50YyetcJPFHtc0EctQURdwTD6fdqyExa-cUm4,1697
190
+ google/genai/tests/caches/test_list.py,sha256=nSOwJBJylpZrThaSV_ah8O6LzVNYHVPMHUUVS_aDc4k,2184
191
+ google/genai/tests/caches/test_update.py,sha256=ZaxyiytKf3Pu0Iiyet-7uEE2WOy4_srqOy0GJNAGeAw,2111
192
+ google/genai/tests/caches/test_update_custom_url.py,sha256=XxncRa2YNCFp2TJFDIdYYznyvEkGGZFzrO4sxXwmFzM,1798
193
+ 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
195
+ google/genai/tests/chats/test_send_message.py,sha256=cs8RFVRCyF0D8sfgMs658OF8TRVA1Mlehf6i0Im6ueQ,24774
196
+ google/genai/tests/chats/test_validate_response.py,sha256=x9LcypmXbXJBLbcD0WOJcxU01oh1CRfeyFkv6wcdr7g,2424
197
+ google/genai/tests/client/__init__.py,sha256=RvGOeb5ZdxjMSh_frXTcrenwE_UsF3_vlDaI-_ml74Y,616
198
+ google/genai/tests/client/test_async_stream.py,sha256=wDrCIvxP9s_nwMI_GMs8hwB-I9bEYbrSLZPstNVWxRw,12755
199
+ google/genai/tests/client/test_client_close.py,sha256=mi0weKH6UkZi6W-6ZnygvdFQOD6fwKCqKl9ZKvlaKvg,6024
200
+ 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
202
+ google/genai/tests/client/test_custom_client.py,sha256=GJdw2wPapXiwz6VHxBTWgcXu4XvdFLdViHEAQ4U2xDA,2416
203
+ google/genai/tests/client/test_http_options.py,sha256=YLCAw7tpgEVone_hd644jhPOcissP_4_UHaAi5SeV88,5492
204
+ google/genai/tests/client/test_replay_client_equality.py,sha256=W6NvtEObD6nkAryHYYNvpQnTvshWh8GVbGE3bjtf8tk,5139
205
+ google/genai/tests/client/test_retries.py,sha256=LF_Any94lzxI9FWP-crGRJmG_Ej9w3iqnMt40V2dsNU,23651
206
+ google/genai/tests/client/test_upload_errors.py,sha256=BV60CZm61XUqcFBxgwDAKV1WFlsxKxQr3ZKyKdgWklA,4712
207
+ google/genai/tests/common/__init__.py,sha256=E0qCY_jgwzKoYZLacliuf7Mk0DsO3mdLyVwBYOK20U4,632
208
+ google/genai/tests/common/test_common.py,sha256=lvbgSiqo7LBYkAw7jy4ig-JytVYs3lBizA5FhoYlmig,26872
209
+ google/genai/tests/documents/__init__.py,sha256=D6WPZHqgHQZJ6zXGqoG5i5_XPykoB3wzwwbDx9lXuz4,635
210
+ google/genai/tests/documents/test_delete.py,sha256=O33JZOTpdhrCRmAudC6YudHpuv46uRD2tpwjJ3s_wTM,1718
211
+ google/genai/tests/documents/test_get.py,sha256=Z-aMd_vxjnxUVDg_4iphCkXJnqDM6ZMaiqa87ip172s,3191
212
+ google/genai/tests/documents/test_list.py,sha256=qgdc__sH88NA8Ptd83BfPsGLaoZntdn0D6eHajr-jl0,2425
213
+ google/genai/tests/errors/__init__.py,sha256=8hdiuOvLIiX_to2O6rc8Af04-85qQuRu62gOhQQyNx8,39
214
+ google/genai/tests/errors/test_api_error.py,sha256=1QgJNSRC-KAIR2Ri7NkKG3uGcU8X-Mr2exL75NvnpME,10954
215
+ google/genai/tests/file_search_stores/__init__.py,sha256=IGpNdiCD34aFEuUWM4QyGS-ekZM29FxL1uM2oRP1E4M,644
216
+ google/genai/tests/file_search_stores/test_create.py,sha256=1a90j-1oOYBPF7DPIxgMFblhxLtmo_KBL3eUrCOLpzI,2090
217
+ google/genai/tests/file_search_stores/test_delete.py,sha256=hRfxcMbaB3Q93izLd0JfS4HOu7sttugV0bLmF6GrGIs,2158
218
+ google/genai/tests/file_search_stores/test_get.py,sha256=I26LR_k_GVsipkDYh4rPoGAJsiSQdrGxybod3C445gM,3348
219
+ google/genai/tests/file_search_stores/test_import_file.py,sha256=-f9uUkzLkz_bVvnQ_mdoX4FyYQ0ofWM-jsAkVrv5OWM,3629
220
+ google/genai/tests/file_search_stores/test_list.py,sha256=hlZz-3F1B6zqvg37Ydz545VFA6tAUJb7iVnzCZwxk20,1860
221
+ google/genai/tests/file_search_stores/test_upload_to_file_search_store.py,sha256=935XNOVKsl0Ml86qvE-Zp30m5CBaG9b4YbYxsmjuDj8,4845
222
+ google/genai/tests/files/__init__.py,sha256=OCJF9_KGxqq2oRETThZwtL2X3K11aKPBjJ6pipkYgWc,630
223
+ google/genai/tests/files/test_delete.py,sha256=mL15UCFIaWwyUNZGvAQEx4YQBIFkZv_RfmMfNaiYXTU,1416
224
+ google/genai/tests/files/test_download.py,sha256=j44qwIhVAcmGSV2EEDgftFfgGoCB0XSR2BE1tSoTnZQ,2341
225
+ google/genai/tests/files/test_get.py,sha256=IJTaDxh6MCPXDMwZgQJY6xnTQOKyIwJt67O2TRwQmoo,1404
226
+ google/genai/tests/files/test_list.py,sha256=BuidbWnOJKeQcl8g78v9HvLJJhgcHSV2Mpb_b-vvh_o,2224
227
+ google/genai/tests/files/test_upload.py,sha256=uPioeL38l9lu2ebenllW3Co1tN5xeCMQuSvHudfRNmU,8372
228
+ google/genai/tests/imports/test_no_optional_imports.py,sha256=fhSdu9gHQYoGYsgbfb3qdoI5cipJJ67Dk5RwSk4vcFE,987
229
+ 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
231
+ google/genai/tests/live/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
232
+ google/genai/tests/live/test_live.py,sha256=KsT-T3O35ckesU4SWBpdDyFiEvQjyLmlCvCsKwTY01c,65012
233
+ google/genai/tests/live/test_live_music.py,sha256=VC7QuLQYY4LKkDcfUtizCc-K4JPm7LCd5oDwVBb_Zuc,11252
234
+ google/genai/tests/live/test_live_response.py,sha256=z5xyev6PL0h-WChGFy1QhWiJ8ld2Vt5dHa9PtQ7DN5w,5531
235
+ google/genai/tests/live/test_send_client_content.py,sha256=slHTAKalYzQncLF37stThKcTHEoC2FVQtPghAeIUSWM,4946
236
+ google/genai/tests/live/test_send_realtime_input.py,sha256=jHb-ncYTXwt9Dps8oWu3ofWs99q0kxP4eCvIBjW4WL8,9493
237
+ google/genai/tests/live/test_send_tool_response.py,sha256=ZbrF5VjztSgfDpxPTFCjqSApIYYDwYUGsYIRD-sLimM,6280
238
+ google/genai/tests/local_tokenizer/__init__.py,sha256=5ffJTDv71l3pLvTGF58kb_vFf8TUDpfM5cGWp4DMwDw,641
239
+ google/genai/tests/local_tokenizer/test_local_tokenizer.py,sha256=yYqdSSOBlK3sQmLqJr9JhoJRJzOf0zkjqzZB2C2O4UM,12250
240
+ google/genai/tests/local_tokenizer/test_local_tokenizer_loader.py,sha256=mKIA6L9wobG6V_jKFuQF_P0Bv9XZsFikyKVWq9iGRrM,7196
241
+ google/genai/tests/mcp/__init__.py,sha256=VyFzMY6rRcPk9glMUZe0sO_GQlTMFNjfibEqp8iVLkI,635
242
+ google/genai/tests/mcp/test_has_mcp_tool_usage.py,sha256=_TPC55X8pCB7F0Pv7ljQcNKFQ00jjW-tmCHevFh-beY,2411
243
+ google/genai/tests/mcp/test_mcp_to_gemini_tools.py,sha256=qAS-1qvx5tu6xsJmfvy4ESf9nQBemIpaYuPb04uxvDU,5366
244
+ google/genai/tests/mcp/test_parse_config_for_mcp_sessions.py,sha256=NeUBaRmvSjiOVcLAzPrF5piRpIxRWwZoWNUth5NKI54,6467
245
+ google/genai/tests/mcp/test_parse_config_for_mcp_usage.py,sha256=FGPASkuwBT0-m5qhPP4jtuE8F-WK4Jv6Jbmo6F8vuqQ,4283
246
+ google/genai/tests/mcp/test_set_mcp_usage_header.py,sha256=D5-t7z7G2diSXPXVrFj0DuGGMs_2CdRta0tvTYpmt2s,2122
247
+ google/genai/tests/models/__init__.py,sha256=66KctCh8D4-qJya9yM7roDVN_yHdKrfxaJq76uOxFnQ,631
248
+ google/genai/tests/models/constants.py,sha256=7D3RsvXF0NfDWla6z-hIXJftJXRdCd2yPgNb4cWf6Ic,238
249
+ google/genai/tests/models/test_compute_tokens.py,sha256=NSwwV_TEW07yb7_99WgyIz1Xgy2rSs0eCgADs-5Y3zM,4171
250
+ google/genai/tests/models/test_count_tokens.py,sha256=ErSJWMYxnBYmpnvSXhIKn7B-PKlyQiSFYGuk9RLXE8Y,5042
251
+ google/genai/tests/models/test_delete.py,sha256=OBl8mfHychtjWy6v19Das3ikYtBwN3pojXZ-BxL8zpY,3286
252
+ google/genai/tests/models/test_edit_image.py,sha256=2QG3ufsRGqryk9jSgyiTgMnuT8VuSZJvghatwEA3NXo,9369
253
+ 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
256
+ google/genai/tests/models/test_generate_content_cached_content.py,sha256=gwZTuvvjtavtYKHZMM6_qOikWSh08LWWZ6z-qGhk9DE,4754
257
+ google/genai/tests/models/test_generate_content_config_zero_value.py,sha256=TNBTFFA9HLidwEF3tV1FV413kilLZWhrnN8MAulxqcc,3335
258
+ google/genai/tests/models/test_generate_content_from_apikey.py,sha256=i-cqsmyfBfkP_Xu-x3l3lO9aUhBLViU4fNuNiDik2JU,1452
259
+ google/genai/tests/models/test_generate_content_http_options.py,sha256=UpYh2wqUBa5XLrVOevB85umcKU74aEbU6gYCkPvGb5M,1232
260
+ google/genai/tests/models/test_generate_content_image_generation.py,sha256=4_kiIr7RMm7D6pPTW_rG8deERpSIbSbJVewZvRNIe8g,4857
261
+ google/genai/tests/models/test_generate_content_mcp.py,sha256=8ikv3aFdCJhDTVAdRbmsmX2ZXWZfuvBJJb0Vm9iVYB8,10050
262
+ google/genai/tests/models/test_generate_content_media_resolution.py,sha256=1lYYd9-Uv1YIgOxfjhqfyTm3AINDsgT5FAaufx5qT7Y,3429
263
+ google/genai/tests/models/test_generate_content_model.py,sha256=hvh6_92l4pscqdC9N0xmTkwqu29fAylQCxj4wC-vL6Q,4491
264
+ google/genai/tests/models/test_generate_content_part.py,sha256=UTGD550fXlqgZbkIDd1v9ScdOMgu7yc3n_z7m4yIXVU,26477
265
+ google/genai/tests/models/test_generate_content_thought.py,sha256=rJsC1HyyJdB8-vcTqgCUhofaodRSdIVNSRSVh93vu_8,2296
266
+ google/genai/tests/models/test_generate_content_tools.py,sha256=E9gljrTDfithjrdClFRHA5bjyW0r82vhnTEgRqskYIk,55636
267
+ google/genai/tests/models/test_generate_images.py,sha256=TNfsQrhja8k4STXixdTwn_YO97jUGOF3-YKFqJu2Fmk,6952
268
+ google/genai/tests/models/test_generate_videos.py,sha256=KCtQdXpTj-WMRWiSVVHwcx_EGTCVGfBCaQfZAujXr24,24102
269
+ google/genai/tests/models/test_get.py,sha256=tW0142USI8uUkwDjfDX52oiuoJ9OKEz5g1sL7fhm-3o,3251
270
+ 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
272
+ google/genai/tests/models/test_segment_image.py,sha256=Sp750MAO9hVSElK82f8xjufFBQ-PSAO8IkKNRBGYJoA,5005
273
+ google/genai/tests/models/test_update.py,sha256=H8NITq04d5D1ekzSiU9d8LJZM2BLCmtT5eYl7vK8kCk,2890
274
+ google/genai/tests/models/test_upscale_image.py,sha256=a-Jv1VoPNtszZRqXRV1PkUo4uIYcTRFzL2ssLjpmEuU,5340
275
+ google/genai/tests/operations/__init__.py,sha256=Mw7f19mQhYNr18sj0_eDhmDlpKAHz1VTSPrO4ubbIio,610
276
+ google/genai/tests/operations/test_get.py,sha256=xIyQxRpYdj_7wQ53mkYFaC1YZlXofkaNsYhyUTQrV9s,1130
277
+ google/genai/tests/public_samples/__init__.py,sha256=6CxAr03tXnfNhx-Bs34r6OokIkXlFVw5Ydnv9pHHsJU,635
278
+ google/genai/tests/public_samples/test_gemini_text_only.py,sha256=t256zyR7v1LNZDHrw8F9oXSGud5Fp7xHVZ0SW78oObU,1094
279
+ google/genai/tests/shared/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
280
+ google/genai/tests/shared/batches/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
281
+ google/genai/tests/shared/batches/test_create_delete.py,sha256=qydHMtN0eabBnQSE_SWeEW-ktyDLABLXFTTO9bWT7k0,1750
282
+ google/genai/tests/shared/batches/test_create_get_cancel.py,sha256=NX1KtYiLw68lEKaaYpsnsQYe-ZEmCSJVWGXwiIJJPnE,1664
283
+ google/genai/tests/shared/batches/test_list.py,sha256=xtS6EylJ0i1doc_5hW8RFlka5W3QJU2uLaK8qcMK_Eg,1158
284
+ google/genai/tests/shared/caches/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
285
+ google/genai/tests/shared/caches/test_create_get_delete.py,sha256=spP-y12HMcMsZ71SwovpLnQBBWQhhBa8wB__mTIWQtI,2150
286
+ google/genai/tests/shared/caches/test_create_update_get.py,sha256=8KtQCtWEAWrgX6eQGJCEC4qvAGXL1NsNc8Ho6173510,2239
287
+ google/genai/tests/shared/caches/test_list.py,sha256=iUNAHt7GhbCAPYAIm_SR5VuPDXxQ6j4iqIGZ8hHO-oc,1171
288
+ google/genai/tests/shared/chats/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
289
+ google/genai/tests/shared/chats/test_send_message.py,sha256=M8h69CbVrtJhb8vecw0psYsiMKayObrZraadi1wSmxY,1320
290
+ google/genai/tests/shared/chats/test_send_message_stream.py,sha256=PGvNxmIYK1JtFvjCITCH2ArD7AY3Jnz9Vw1t5SMPZSY,1419
291
+ google/genai/tests/shared/files/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
292
+ google/genai/tests/shared/files/test_list.py,sha256=wFKohgtdnW2p5iglRf3AJs_WsnzAkvdtdffWFRfMW9o,1218
293
+ google/genai/tests/shared/files/test_upload_get_delete.py,sha256=f8vTsl-7O8k8OVDhzCctgZxbPQJArrH_ut6an2DXZXI,1589
294
+ google/genai/tests/shared/models/__init__.py,sha256=Uo6Ox63057cG3O2ahnelWqdHzChYgJHfFNIW7EFewZ4,576
295
+ google/genai/tests/shared/models/test_compute_tokens.py,sha256=SvhhQzUxkHLukIXGb09gcjti7PYpV0Vwta9OaWeB1oE,1249
296
+ google/genai/tests/shared/models/test_count_tokens.py,sha256=DQxnGSwmnxn1Cl4V5z8030o--Yes3l1Wwq7fqAtAqI8,1179
297
+ google/genai/tests/shared/models/test_edit_image.py,sha256=-GG2FjXSo7PC0r0OEkxEGPBEM1q2kQlP2EzwWnXB5mI,1954
298
+ google/genai/tests/shared/models/test_embed.py,sha256=HVjNlnjbnbuzNThmqJcOwonxzhav7k8VbgyrEoLCV_I,1137
299
+ google/genai/tests/shared/models/test_generate_content.py,sha256=S2-LeNh_rg6Vh-Kf3ZZ__8080o77i-Ed620XtG7TjxQ,1194
300
+ google/genai/tests/shared/models/test_generate_content_stream.py,sha256=7qR2TLad6zPg5RIZNGxr71tFt899QZM72WyRHZlsnBM,1522
301
+ google/genai/tests/shared/models/test_generate_images.py,sha256=Vqk0hT08FlQ2tQootyn0KSBnOf3Ow-3e0C2khMkDKEY,1280
302
+ google/genai/tests/shared/models/test_generate_videos.py,sha256=jGuu85FNOUIvfNkEL6qFlQTzlAEg6XFpCtZy3K4Vzqs,1136
303
+ google/genai/tests/shared/models/test_list.py,sha256=34LDppIOJMqajBiJpopseybKZFN1ghoWV0RfpjI6wwk,1041
304
+ google/genai/tests/shared/models/test_recontext_image.py,sha256=Ps-VMhneuuwyOi54eGCg5A9QsAkwpqzyRiGv6zF-C7Q,1706
305
+ google/genai/tests/shared/models/test_segment_image.py,sha256=293qOOxZCS5-zeR-DvgUwrsEgqq9ZTWlkNJRT2MZBEs,1588
306
+ google/genai/tests/shared/models/test_upscale_image.py,sha256=usoKZAQhpZRmWidLp73YAOito-L_4jCIK7fLA7Y9apA,1661
307
+ google/genai/tests/shared/tunings/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
308
+ google/genai/tests/shared/tunings/test_create.py,sha256=FlUjMlaw2THfwUr7IKXA1SKDnfvTlhmhZrXsGl7Icl4,1440
309
+ google/genai/tests/shared/tunings/test_create_get_cancel.py,sha256=takzmmhktF7CIyRD4pldCFzxU4J8MP5fjBJD-0QZxkA,1798
310
+ google/genai/tests/shared/tunings/test_list.py,sha256=RNRzoPBjY5eq3AECvIekOTaHB1n8FxfaOytZHyOWOgo,1121
311
+ google/genai/tests/tokens/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
312
+ google/genai/tests/tokens/test_create.py,sha256=iENP2DZxxxpT8cJf3Iirb1erQ7MxcgYAnm7wMN-Eiwc,5452
313
+ google/genai/tests/transformers/__init__.py,sha256=IjrnP6P8utKkw6Xz9zJNQNzT-dIxIHQkv0FxiHDkOPQ,638
314
+ google/genai/tests/transformers/test_blobs.py,sha256=Ynm3mj-DFzVuHkiq_VJLkLqi3SnY159rMrcPLUdPliQ,2133
315
+ google/genai/tests/transformers/test_bytes.py,sha256=F2yxf_s2cxqGzvqf6uhGuNW53MBmbxuBo2Ea--9jFa0,442
316
+ google/genai/tests/transformers/test_duck_type.py,sha256=B8KrsH6mqLZn1JeCq32PhimKm1sLepSZ3b4XvbtLGR4,2395
317
+ google/genai/tests/transformers/test_function_responses.py,sha256=J-KTJBskAxiwL2skRidQN2iumi1uS7nqr_2ACzOlCQc,2307
318
+ google/genai/tests/transformers/test_schema.py,sha256=fMr3_FUw5gE94x7ZGQY5PXYWaz7vSlegxW8bdTPyOGs,19440
319
+ google/genai/tests/transformers/test_t_batch.py,sha256=LfTJ3ZSkbMISsNv6stUOXlYWTDejj7ZSpnsyzj5jQmo,9512
320
+ google/genai/tests/transformers/test_t_content.py,sha256=qs7yYq9GKeLegcch48XtDnUnKxMbyAGazyBZ2bUXerk,4005
321
+ google/genai/tests/transformers/test_t_contents.py,sha256=Evu3CerxHYc2w-7ZplYNU-JRysCrKsOWN_AsHGHQ7HI,10057
322
+ google/genai/tests/transformers/test_t_part.py,sha256=52lwSQN8UYlJUKIhvKgsmSbP2nQt6D8L465mKVtrU-Q,2002
323
+ google/genai/tests/transformers/test_t_parts.py,sha256=aqQ7mY7hMzmFptLrO7in35WVOHUokdzg5P662zJIAAU,1977
324
+ google/genai/tests/transformers/test_t_tool.py,sha256=XVpdyf4e-zgCcSK6mO9Z3tRE9yqbL07Gt-tLcBj1u1w,4080
325
+ google/genai/tests/transformers/test_t_tools.py,sha256=7-iAVLTOvhOQ-Xlu46-oTAsHfCMwEBf0Np-R87nYqZU,5219
326
+ google/genai/tests/tunings/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
327
+ google/genai/tests/tunings/test_cancel.py,sha256=wFBQLIY0Ni1AAxFPjEXdEmewn_6Zg_8aBfDL4pvYiT4,1198
328
+ google/genai/tests/tunings/test_end_to_end.py,sha256=ISDpbJGfHuRBV1TZKgAtOfy7WnXD0ilyCt-9HudcWIs,3124
329
+ google/genai/tests/tunings/test_get.py,sha256=Xaji6XYF33DYZ97j-sQZJ9xuUIJfHiP98vi6I2QDtf0,2060
330
+ google/genai/tests/tunings/test_list.py,sha256=VRCLzodimtyLTAL2k-epqTGZcaVRA7F9pSRPi6TeWYU,2263
331
+ google/genai/tests/tunings/test_tune.py,sha256=oRUMys-V5CsvZ0AFOKn8FEsHBRoq4eywjCu1F9SwAOU,11142
332
+ google/genai/tests/types/__init__.py,sha256=KbDhwTfDYAhkNqkbDeqOxlfFwjij-deuilWGXN9cySc,578
333
+ google/genai/tests/types/test_bytes_internal.py,sha256=QNA1sez1FozvrJh7K6-HG2FNBGD2-9VG5ZEp_snPGR4,8632
334
+ google/genai/tests/types/test_bytes_type.py,sha256=cWb_-pBwhnJR2Tfk0PTnLiyvG5k1yKhyc_XgESg81rg,5906
335
+ google/genai/tests/types/test_future.py,sha256=F8eW2IyWXjzhIKmwD49yrScRffFiCL-16dwFbXtkxUI,3211
336
+ google/genai/tests/types/test_optional_types.py,sha256=LCA_pAcOJH_7lniZhVu4YG_Yxx9WSXsr0_xzHQzcl5I,1150
337
+ google/genai/tests/types/test_part_type.py,sha256=a_0eE2CgE7Ju6ePmu3DrupsZZCFiyDUR4DUtD1dmklc,17624
338
+ google/genai/tests/types/test_schema_from_json_schema.py,sha256=WiraJx5mRLW8lKHiWsyHTBYge4jVpeCYklbqGd4BkZQ,13894
339
+ google/genai/tests/types/test_schema_json_schema.py,sha256=zn1gjsXcHTztzmajr8YX3Yb6rWnchjgjw6Yj1NZnG-0,15536
340
+ 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,,
@@ -1,41 +0,0 @@
1
- google/genai/__init__.py,sha256=SKz_9WQKA3R4OpJIDJlgssVfizLNDG2tuWtOD9pxrPE,729
2
- google/genai/_adapters.py,sha256=Kok38miNYJff2n--l0zEK_hbq0y2rWOH7k75J7SMYbQ,1744
3
- google/genai/_api_client.py,sha256=CrHSu9Hd4rhhEpv5ds5jU_5xk0XwixTY055pRQRbFnE,67216
4
- google/genai/_api_module.py,sha256=lj8eUWx8_LBGBz-49qz6_ywWm3GYp3d8Bg5JoOHbtbI,902
5
- google/genai/_automatic_function_calling_util.py,sha256=xXNkJR-pzSMkeSXMz3Jw-kMHFbTJEiRJ3wocuwtWW4I,11627
6
- google/genai/_base_transformers.py,sha256=wljA6m4tLl4XLGlBC2DNOls5N9-X9tffBq0M7i8jgpw,1034
7
- google/genai/_base_url.py,sha256=E5H4dew14Y16qfnB3XRnjSCi19cJVlkaMNoM_8ip-PM,1597
8
- google/genai/_common.py,sha256=9HOP8GtEnTGTF-5A92hQdcPWeaCS6ig3vgnmm-8jiTY,25421
9
- google/genai/_extra_utils.py,sha256=GXsUfyKAPZaW9_ySvdzSAXThvuzaKwXcAmdHW_hoHpY,25309
10
- google/genai/_live_converters.py,sha256=b1If4I7rpmJu9DMnFqKex0jeu5AVUGeTLo1XSd4HqN4,43721
11
- google/genai/_local_tokenizer_loader.py,sha256=7yvJfEkWIpw2ueY4ZmoOAamJD-G7bm_9g44glD6bVwM,7147
12
- google/genai/_mcp_utils.py,sha256=HuWJ8FUjquv40Mf_QjcL5r5yXWrS-JjINsjlOSbbyAc,3870
13
- google/genai/_operations_converters.py,sha256=zw8DqkgJWHphrw9waAjAiH98QbE2Rnum3zGm02dHQWo,11695
14
- google/genai/_replay_api_client.py,sha256=-sZY8pM8JulqTfuqIKaKHCy9MNXF7HJnX6fCzyTMpS0,22617
15
- google/genai/_test_api_client.py,sha256=4ruFIy5_1qcbKqqIBu3HSQbpSOBrxiecBtDZaTGFR1s,4797
16
- google/genai/_tokens_converters.py,sha256=sAx3CjSKR2PX2eppuJPvt_LgjYJZF9zh-fSUvDwa0WQ,15431
17
- google/genai/_transformers.py,sha256=I19zzGXCrRd64lrBPpeawhBq7vifKn3fNUX9iIJ8Kwo,43266
18
- google/genai/batches.py,sha256=MNQga5CkQduCf4fKIy4yNqcSc9YY64hL-dCNGnQTdxg,78419
19
- google/genai/caches.py,sha256=MPYIElWqWtXkxiZ2FFCZspRVdT9sTrZzWEkBpQ-XII0,48118
20
- google/genai/chats.py,sha256=pIBw8d13llupLn4a7vP6vnpbzDcvCCrZZ-Q2r8Cvo7g,16652
21
- google/genai/client.py,sha256=xKiAg6h4kB_l9uBwgJzSlSjZ0icyCMsWPTFvhJ0_HJQ,13526
22
- google/genai/documents.py,sha256=GuYWVgRaYBzHv9aMgcZBrVkFlpBeaAeZsfhgvC_SLTA,16218
23
- google/genai/errors.py,sha256=2Iux-5iGUJzEB6OWE3R18SckMEvNimOfpNCQIYL6cn8,8118
24
- google/genai/file_search_stores.py,sha256=4EW_hRjkaGYu4gbQyNbiswTWk5nUgooxB5pqMi_WAME,41418
25
- google/genai/files.py,sha256=g-geVkMmcgAsI7CPJqt3jzucEcjQf6He1fhnscUdxvs,31766
26
- google/genai/live.py,sha256=ajM3lTDo9eT1KYVF5fLivuQeOtfbJcedQuDXHxmtNPo,41560
27
- google/genai/live_music.py,sha256=Y7I7jh5SAKgyjBIMLboH0oTnZJ18uOT2SpRDKURvp94,6783
28
- google/genai/local_tokenizer.py,sha256=EKZ72cV2Zfutlo_efMOPnLRNZN4WQe57rD3G80cF340,14109
29
- google/genai/models.py,sha256=UeqEVqK-JO0fAW4DIbiXMQmejoYlM5kVv0h_QMX4z6A,238803
30
- google/genai/operations.py,sha256=FXJOnYp2HA5Xqa5mHW67mSa9p1D_EaGGyUoKc09xFPQ,16384
31
- google/genai/pagers.py,sha256=1i8NXDuKuQznFin5H5-I0hmj6H5YMTYsEJP7S0ITSbY,7158
32
- google/genai/py.typed,sha256=RsMFoLwBkAvY05t6izop4UHZtqOPLiKp3GkIEizzmQY,40
33
- google/genai/tokens.py,sha256=4BPW0gGWFeFVk3INkuY2tfREnsrvzQDhouvRI6_F9Q8,12235
34
- google/genai/tunings.py,sha256=JR_ngNjjgIMd_iYDD53wBCYyHfY5V83njmtQOpBNpL0,76343
35
- google/genai/types.py,sha256=qrRxDiTGbfkog6DhOBhpVkSQCJ6jSXt1iLioLxLOUXs,645693
36
- google/genai/version.py,sha256=Bh860abHuAZdE4MCKzCPHNCKqbhUGiJldF39ctkV7nU,627
37
- google_genai-1.54.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
38
- google_genai-1.54.0.dist-info/METADATA,sha256=kD0yIP7EQVoq00wLiIXdkfug9OFfN8J71TPEPiwaIe0,47834
39
- google_genai-1.54.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
- google_genai-1.54.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
41
- google_genai-1.54.0.dist-info/RECORD,,