google-genai 1.7.0__py3-none-any.whl → 1.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- google/genai/_api_client.py +93 -78
- google/genai/_replay_api_client.py +22 -14
- google/genai/_transformers.py +81 -16
- google/genai/batches.py +61 -295
- google/genai/caches.py +546 -526
- google/genai/chats.py +15 -8
- google/genai/client.py +5 -3
- google/genai/errors.py +47 -24
- google/genai/files.py +89 -305
- google/genai/live.py +466 -12
- google/genai/models.py +1992 -2291
- google/genai/operations.py +104 -124
- google/genai/tunings.py +256 -272
- google/genai/types.py +394 -98
- google/genai/version.py +1 -1
- {google_genai-1.7.0.dist-info → google_genai-1.9.0.dist-info}/METADATA +3 -2
- google_genai-1.9.0.dist-info/RECORD +27 -0
- {google_genai-1.7.0.dist-info → google_genai-1.9.0.dist-info}/WHEEL +1 -1
- google_genai-1.7.0.dist-info/RECORD +0 -27
- {google_genai-1.7.0.dist-info → google_genai-1.9.0.dist-info/licenses}/LICENSE +0 -0
- {google_genai-1.7.0.dist-info → google_genai-1.9.0.dist-info}/top_level.txt +0 -0
google/genai/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: google-genai
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.9.0
|
4
4
|
Summary: GenAI Python SDK
|
5
5
|
Author-email: Google LLC <googleapis-packages@google.com>
|
6
6
|
License: Apache-2.0
|
@@ -27,6 +27,7 @@ Requires-Dist: pydantic<3.0.0,>=2.0.0
|
|
27
27
|
Requires-Dist: requests<3.0.0,>=2.28.1
|
28
28
|
Requires-Dist: websockets<15.1.0,>=13.0.0
|
29
29
|
Requires-Dist: typing-extensions<5.0.0,>=4.11.0
|
30
|
+
Dynamic: license-file
|
30
31
|
|
31
32
|
# Google Gen AI SDK
|
32
33
|
|
@@ -0,0 +1,27 @@
|
|
1
|
+
google/genai/__init__.py,sha256=IYw-PcsdgjSpS1mU_ZcYkTfPocsJ4aVmrDxP7vX7c6Y,709
|
2
|
+
google/genai/_api_client.py,sha256=1KojMpO3mkvbQ07g-xCETKR1yiM7j9ct-2hv4by7KMg,31726
|
3
|
+
google/genai/_api_module.py,sha256=66FsFq9N8PdTegDyx3am3NHpI0Bw7HBmifUMCrZsx_Q,902
|
4
|
+
google/genai/_automatic_function_calling_util.py,sha256=xAH-96LIEmC-yefEIae8TrBPZZAI1UJrn0bAIZsISDE,10899
|
5
|
+
google/genai/_common.py,sha256=PNwxVUKCD93ICHJlwCTAItGH3Wjva5xHC7_7mc-p8oA,10153
|
6
|
+
google/genai/_extra_utils.py,sha256=l9U0uaq4TWdfY7fOpGR3LcsA6-TMEblfQlEXdC0IGPY,12462
|
7
|
+
google/genai/_replay_api_client.py,sha256=vvtcgngZMvhebrubhClVeW16UjE2nMUHQbtyBRmM4ko,18942
|
8
|
+
google/genai/_test_api_client.py,sha256=XNOWq8AkYbqInv1aljNGlFXsv8slQIWTYy_hdcCetD0,4797
|
9
|
+
google/genai/_transformers.py,sha256=VFJw6yacWnQsc8_9mhW8CxPg-IfzIgPoNrizSNL51yI,31575
|
10
|
+
google/genai/batches.py,sha256=-LJGF4iCwvw0Uafr2EEVt2EsOFPl0S2-y5QBFGDw_m0,34485
|
11
|
+
google/genai/caches.py,sha256=pjFuuVOy3RWifhxNR6Al97S5jZX7NwghqX5M5NMKSOM,57320
|
12
|
+
google/genai/chats.py,sha256=4tg04v16WMth_FMeteUuAchLtPt-y3ydOLMksSRAyJM,16676
|
13
|
+
google/genai/client.py,sha256=uctarMTXcp6iC7XGH2lR5wDUqy17hy4-6CMi7seBlvo,10043
|
14
|
+
google/genai/errors.py,sha256=2YriqMtGA1V3iNtPernOjEOlMMAAEmBjSUoukDMgVqU,4725
|
15
|
+
google/genai/files.py,sha256=8fvbdPWYfZvUg9w-ijz9fKCWXlNTrTWCZQ0meJmKzjw,38290
|
16
|
+
google/genai/live.py,sha256=LDxCSaU6KNuwG1t9Oe1sE1hWxx8YTNbZf2hz50pPvt4,47489
|
17
|
+
google/genai/models.py,sha256=VjB0IHKAe_6ncEacl2BmDPa4KS4-CzWPwJwWjH5jKC0,204310
|
18
|
+
google/genai/operations.py,sha256=AxoO9v15b_K0w2MRCBFLD80bztgGwjVCaiXTp7wm07M,19890
|
19
|
+
google/genai/pagers.py,sha256=1jxDjre7M_Udt0ntgOr_79iR0-axjdr_Q6tZZzVRli8,6784
|
20
|
+
google/genai/tunings.py,sha256=hJkJtibBoySbjdzxOUvQR2hVYTslmaWwt0xUw0h1v2o,47010
|
21
|
+
google/genai/types.py,sha256=mfIIHpb1wi9wTqy9wJrFypAPClXo3J2Hld3CiW9hy54,312574
|
22
|
+
google/genai/version.py,sha256=bmTGYxkYSqQOLgKnH5GxOGSQ05pPupy2P_ts3hTwHMU,626
|
23
|
+
google_genai-1.9.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
24
|
+
google_genai-1.9.0.dist-info/METADATA,sha256=HD9pOaC7dLEwRyBZnCp5dHn0J347l_KPdKP1lQgERlE,32890
|
25
|
+
google_genai-1.9.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
26
|
+
google_genai-1.9.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
|
27
|
+
google_genai-1.9.0.dist-info/RECORD,,
|
@@ -1,27 +0,0 @@
|
|
1
|
-
google/genai/__init__.py,sha256=IYw-PcsdgjSpS1mU_ZcYkTfPocsJ4aVmrDxP7vX7c6Y,709
|
2
|
-
google/genai/_api_client.py,sha256=X-ULRU6ZfI6WPsWFj3SG_6xncnjj6kK9DtUguReMzbE,31280
|
3
|
-
google/genai/_api_module.py,sha256=66FsFq9N8PdTegDyx3am3NHpI0Bw7HBmifUMCrZsx_Q,902
|
4
|
-
google/genai/_automatic_function_calling_util.py,sha256=xAH-96LIEmC-yefEIae8TrBPZZAI1UJrn0bAIZsISDE,10899
|
5
|
-
google/genai/_common.py,sha256=PNwxVUKCD93ICHJlwCTAItGH3Wjva5xHC7_7mc-p8oA,10153
|
6
|
-
google/genai/_extra_utils.py,sha256=l9U0uaq4TWdfY7fOpGR3LcsA6-TMEblfQlEXdC0IGPY,12462
|
7
|
-
google/genai/_replay_api_client.py,sha256=_TH5E_hBu35hOJajjpUagsdhiBAbOTWWZDyP43bDjJE,18606
|
8
|
-
google/genai/_test_api_client.py,sha256=XNOWq8AkYbqInv1aljNGlFXsv8slQIWTYy_hdcCetD0,4797
|
9
|
-
google/genai/_transformers.py,sha256=9cVaRp1zLOG27D7iNJeW2rw2jbjlvuEUeVl5SUN6ljY,29863
|
10
|
-
google/genai/batches.py,sha256=K6RgkNWkYBjknADWe4hrv6BtXxWTl1N8b91Pg9MUnAc,41545
|
11
|
-
google/genai/caches.py,sha256=JymnKSaSZYGyTl201tR8PgbZF6fRKdXuCKe4BILKkTc,57551
|
12
|
-
google/genai/chats.py,sha256=uv75f2uWa2cjgkZINCS9SYEH120hM61aZU8Ylcawuec,16379
|
13
|
-
google/genai/client.py,sha256=jN4oNT5qQtX0UILuGcZqxmIL66DOJ-T5P086ygnSnSg,9877
|
14
|
-
google/genai/errors.py,sha256=p_JbOU_eDKIIvWT6NBYGpZcxww622ChAi6eX1FuKKY0,3874
|
15
|
-
google/genai/files.py,sha256=po136tfi5tRmMXG01S-NgxDwX-IpzPaXS9cJBWUwxUU,45532
|
16
|
-
google/genai/live.py,sha256=Ftj_LxQ2zClK-2hbdRZNXkmnQQguduoNyVntIdPtTdM,32033
|
17
|
-
google/genai/models.py,sha256=3Y0r-0jRP0AN6iU_k7in05u9N9R2ieUtvzc4qfXbWBY,213651
|
18
|
-
google/genai/operations.py,sha256=Tvlbk_AuQyXGL9b0wJbzgC8QGHGLSVjb1evbe-ZuZN0,20781
|
19
|
-
google/genai/pagers.py,sha256=1jxDjre7M_Udt0ntgOr_79iR0-axjdr_Q6tZZzVRli8,6784
|
20
|
-
google/genai/tunings.py,sha256=2tWvIkofDDnt6VPsfHAbcrfDIo7jAbIlpdwcx6-cUvM,48239
|
21
|
-
google/genai/types.py,sha256=sVOdjxmviV_oA5JQEKKOlg4nwrlTQjbWGqtgqQACP6Y,299883
|
22
|
-
google/genai/version.py,sha256=gMEV9Q_hiFtL9MTW8j-xSs_8ZfrVk5l9IpAHot0qkCA,626
|
23
|
-
google_genai-1.7.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
24
|
-
google_genai-1.7.0.dist-info/METADATA,sha256=DrE2OdIur-Cpp82AkcRds2mFxYbDEYjtWXXseRSM6wY,32868
|
25
|
-
google_genai-1.7.0.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
26
|
-
google_genai-1.7.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
|
27
|
-
google_genai-1.7.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|