google-genai 1.33.0__py3-none-any.whl → 1.34.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/_common.py +5 -1
- google/genai/_extra_utils.py +5 -8
- google/genai/_live_converters.py +100 -44
- google/genai/_tokens_converters.py +24 -3
- google/genai/_transformers.py +55 -15
- google/genai/batches.py +680 -142
- google/genai/caches.py +50 -6
- google/genai/local_tokenizer.py +29 -1
- google/genai/models.py +100 -12
- google/genai/types.py +266 -42
- google/genai/version.py +1 -1
- {google_genai-1.33.0.dist-info → google_genai-1.34.0.dist-info}/METADATA +18 -1
- {google_genai-1.33.0.dist-info → google_genai-1.34.0.dist-info}/RECORD +16 -16
- {google_genai-1.33.0.dist-info → google_genai-1.34.0.dist-info}/WHEEL +0 -0
- {google_genai-1.33.0.dist-info → google_genai-1.34.0.dist-info}/licenses/LICENSE +0 -0
- {google_genai-1.33.0.dist-info → google_genai-1.34.0.dist-info}/top_level.txt +0 -0
google/genai/types.py
CHANGED
@@ -885,6 +885,41 @@ class FileDataDict(TypedDict, total=False):
|
|
885
885
|
FileDataOrDict = Union[FileData, FileDataDict]
|
886
886
|
|
887
887
|
|
888
|
+
class FunctionCall(_common.BaseModel):
|
889
|
+
"""A function call."""
|
890
|
+
|
891
|
+
id: Optional[str] = Field(
|
892
|
+
default=None,
|
893
|
+
description="""The unique id of the function call. If populated, the client to execute the
|
894
|
+
`function_call` and return the response with the matching `id`.""",
|
895
|
+
)
|
896
|
+
args: Optional[dict[str, Any]] = Field(
|
897
|
+
default=None,
|
898
|
+
description="""Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details.""",
|
899
|
+
)
|
900
|
+
name: Optional[str] = Field(
|
901
|
+
default=None,
|
902
|
+
description="""Required. The name of the function to call. Matches [FunctionDeclaration.name].""",
|
903
|
+
)
|
904
|
+
|
905
|
+
|
906
|
+
class FunctionCallDict(TypedDict, total=False):
|
907
|
+
"""A function call."""
|
908
|
+
|
909
|
+
id: Optional[str]
|
910
|
+
"""The unique id of the function call. If populated, the client to execute the
|
911
|
+
`function_call` and return the response with the matching `id`."""
|
912
|
+
|
913
|
+
args: Optional[dict[str, Any]]
|
914
|
+
"""Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details."""
|
915
|
+
|
916
|
+
name: Optional[str]
|
917
|
+
"""Required. The name of the function to call. Matches [FunctionDeclaration.name]."""
|
918
|
+
|
919
|
+
|
920
|
+
FunctionCallOrDict = Union[FunctionCall, FunctionCallDict]
|
921
|
+
|
922
|
+
|
888
923
|
class CodeExecutionResult(_common.BaseModel):
|
889
924
|
"""Result of executing the [ExecutableCode].
|
890
925
|
|
@@ -953,41 +988,6 @@ class ExecutableCodeDict(TypedDict, total=False):
|
|
953
988
|
ExecutableCodeOrDict = Union[ExecutableCode, ExecutableCodeDict]
|
954
989
|
|
955
990
|
|
956
|
-
class FunctionCall(_common.BaseModel):
|
957
|
-
"""A function call."""
|
958
|
-
|
959
|
-
id: Optional[str] = Field(
|
960
|
-
default=None,
|
961
|
-
description="""The unique id of the function call. If populated, the client to execute the
|
962
|
-
`function_call` and return the response with the matching `id`.""",
|
963
|
-
)
|
964
|
-
args: Optional[dict[str, Any]] = Field(
|
965
|
-
default=None,
|
966
|
-
description="""Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details.""",
|
967
|
-
)
|
968
|
-
name: Optional[str] = Field(
|
969
|
-
default=None,
|
970
|
-
description="""Required. The name of the function to call. Matches [FunctionDeclaration.name].""",
|
971
|
-
)
|
972
|
-
|
973
|
-
|
974
|
-
class FunctionCallDict(TypedDict, total=False):
|
975
|
-
"""A function call."""
|
976
|
-
|
977
|
-
id: Optional[str]
|
978
|
-
"""The unique id of the function call. If populated, the client to execute the
|
979
|
-
`function_call` and return the response with the matching `id`."""
|
980
|
-
|
981
|
-
args: Optional[dict[str, Any]]
|
982
|
-
"""Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details."""
|
983
|
-
|
984
|
-
name: Optional[str]
|
985
|
-
"""Required. The name of the function to call. Matches [FunctionDeclaration.name]."""
|
986
|
-
|
987
|
-
|
988
|
-
FunctionCallOrDict = Union[FunctionCall, FunctionCallDict]
|
989
|
-
|
990
|
-
|
991
991
|
class FunctionResponse(_common.BaseModel):
|
992
992
|
"""A function response."""
|
993
993
|
|
@@ -1075,6 +1075,12 @@ class Part(_common.BaseModel):
|
|
1075
1075
|
default=None,
|
1076
1076
|
description="""An opaque signature for the thought so it can be reused in subsequent requests.""",
|
1077
1077
|
)
|
1078
|
+
function_call: Optional[FunctionCall] = Field(
|
1079
|
+
default=None,
|
1080
|
+
description="""A predicted [FunctionCall] returned from the model that contains a string
|
1081
|
+
representing the [FunctionDeclaration.name] and a structured JSON object
|
1082
|
+
containing the parameters and their values.""",
|
1083
|
+
)
|
1078
1084
|
code_execution_result: Optional[CodeExecutionResult] = Field(
|
1079
1085
|
default=None,
|
1080
1086
|
description="""Optional. Result of executing the [ExecutableCode].""",
|
@@ -1083,10 +1089,6 @@ class Part(_common.BaseModel):
|
|
1083
1089
|
default=None,
|
1084
1090
|
description="""Optional. Code generated by the model that is meant to be executed.""",
|
1085
1091
|
)
|
1086
|
-
function_call: Optional[FunctionCall] = Field(
|
1087
|
-
default=None,
|
1088
|
-
description="""Optional. A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] with the parameters and their values.""",
|
1089
|
-
)
|
1090
1092
|
function_response: Optional[FunctionResponse] = Field(
|
1091
1093
|
default=None,
|
1092
1094
|
description="""Optional. The result output of a [FunctionCall] that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing any output from the function call. It is used as context to the model.""",
|
@@ -1181,15 +1183,17 @@ class PartDict(TypedDict, total=False):
|
|
1181
1183
|
thought_signature: Optional[bytes]
|
1182
1184
|
"""An opaque signature for the thought so it can be reused in subsequent requests."""
|
1183
1185
|
|
1186
|
+
function_call: Optional[FunctionCallDict]
|
1187
|
+
"""A predicted [FunctionCall] returned from the model that contains a string
|
1188
|
+
representing the [FunctionDeclaration.name] and a structured JSON object
|
1189
|
+
containing the parameters and their values."""
|
1190
|
+
|
1184
1191
|
code_execution_result: Optional[CodeExecutionResultDict]
|
1185
1192
|
"""Optional. Result of executing the [ExecutableCode]."""
|
1186
1193
|
|
1187
1194
|
executable_code: Optional[ExecutableCodeDict]
|
1188
1195
|
"""Optional. Code generated by the model that is meant to be executed."""
|
1189
1196
|
|
1190
|
-
function_call: Optional[FunctionCallDict]
|
1191
|
-
"""Optional. A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] with the parameters and their values."""
|
1192
|
-
|
1193
1197
|
function_response: Optional[FunctionResponseDict]
|
1194
1198
|
"""Optional. The result output of a [FunctionCall] that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing any output from the function call. It is used as context to the model."""
|
1195
1199
|
|
@@ -11435,6 +11439,70 @@ class InlinedResponseDict(TypedDict, total=False):
|
|
11435
11439
|
InlinedResponseOrDict = Union[InlinedResponse, InlinedResponseDict]
|
11436
11440
|
|
11437
11441
|
|
11442
|
+
class SingleEmbedContentResponse(_common.BaseModel):
|
11443
|
+
"""Config for `response` parameter."""
|
11444
|
+
|
11445
|
+
embedding: Optional[ContentEmbedding] = Field(
|
11446
|
+
default=None,
|
11447
|
+
description="""The response to the request.
|
11448
|
+
""",
|
11449
|
+
)
|
11450
|
+
token_count: Optional[int] = Field(
|
11451
|
+
default=None,
|
11452
|
+
description="""The error encountered while processing the request.
|
11453
|
+
""",
|
11454
|
+
)
|
11455
|
+
|
11456
|
+
|
11457
|
+
class SingleEmbedContentResponseDict(TypedDict, total=False):
|
11458
|
+
"""Config for `response` parameter."""
|
11459
|
+
|
11460
|
+
embedding: Optional[ContentEmbeddingDict]
|
11461
|
+
"""The response to the request.
|
11462
|
+
"""
|
11463
|
+
|
11464
|
+
token_count: Optional[int]
|
11465
|
+
"""The error encountered while processing the request.
|
11466
|
+
"""
|
11467
|
+
|
11468
|
+
|
11469
|
+
SingleEmbedContentResponseOrDict = Union[
|
11470
|
+
SingleEmbedContentResponse, SingleEmbedContentResponseDict
|
11471
|
+
]
|
11472
|
+
|
11473
|
+
|
11474
|
+
class InlinedEmbedContentResponse(_common.BaseModel):
|
11475
|
+
"""Config for `inlined_embedding_responses` parameter."""
|
11476
|
+
|
11477
|
+
response: Optional[SingleEmbedContentResponse] = Field(
|
11478
|
+
default=None,
|
11479
|
+
description="""The response to the request.
|
11480
|
+
""",
|
11481
|
+
)
|
11482
|
+
error: Optional[JobError] = Field(
|
11483
|
+
default=None,
|
11484
|
+
description="""The error encountered while processing the request.
|
11485
|
+
""",
|
11486
|
+
)
|
11487
|
+
|
11488
|
+
|
11489
|
+
class InlinedEmbedContentResponseDict(TypedDict, total=False):
|
11490
|
+
"""Config for `inlined_embedding_responses` parameter."""
|
11491
|
+
|
11492
|
+
response: Optional[SingleEmbedContentResponseDict]
|
11493
|
+
"""The response to the request.
|
11494
|
+
"""
|
11495
|
+
|
11496
|
+
error: Optional[JobErrorDict]
|
11497
|
+
"""The error encountered while processing the request.
|
11498
|
+
"""
|
11499
|
+
|
11500
|
+
|
11501
|
+
InlinedEmbedContentResponseOrDict = Union[
|
11502
|
+
InlinedEmbedContentResponse, InlinedEmbedContentResponseDict
|
11503
|
+
]
|
11504
|
+
|
11505
|
+
|
11438
11506
|
class BatchJobDestination(_common.BaseModel):
|
11439
11507
|
"""Config for `des` parameter."""
|
11440
11508
|
|
@@ -11470,6 +11538,15 @@ class BatchJobDestination(_common.BaseModel):
|
|
11470
11538
|
the input requests.
|
11471
11539
|
""",
|
11472
11540
|
)
|
11541
|
+
inlined_embed_content_responses: Optional[
|
11542
|
+
list[InlinedEmbedContentResponse]
|
11543
|
+
] = Field(
|
11544
|
+
default=None,
|
11545
|
+
description="""The responses to the requests in the batch. Returned when the batch was
|
11546
|
+
built using inlined requests. The responses will be in the same order as
|
11547
|
+
the input requests.
|
11548
|
+
""",
|
11549
|
+
)
|
11473
11550
|
|
11474
11551
|
|
11475
11552
|
class BatchJobDestinationDict(TypedDict, total=False):
|
@@ -11502,6 +11579,14 @@ class BatchJobDestinationDict(TypedDict, total=False):
|
|
11502
11579
|
the input requests.
|
11503
11580
|
"""
|
11504
11581
|
|
11582
|
+
inlined_embed_content_responses: Optional[
|
11583
|
+
list[InlinedEmbedContentResponseDict]
|
11584
|
+
]
|
11585
|
+
"""The responses to the requests in the batch. Returned when the batch was
|
11586
|
+
built using inlined requests. The responses will be in the same order as
|
11587
|
+
the input requests.
|
11588
|
+
"""
|
11589
|
+
|
11505
11590
|
|
11506
11591
|
BatchJobDestinationOrDict = Union[BatchJobDestination, BatchJobDestinationDict]
|
11507
11592
|
|
@@ -11662,6 +11747,13 @@ class BatchJob(_common.BaseModel):
|
|
11662
11747
|
""",
|
11663
11748
|
)
|
11664
11749
|
|
11750
|
+
@property
|
11751
|
+
def done(self) -> bool:
|
11752
|
+
"""Returns True if the batch job has ended."""
|
11753
|
+
if self.state is None:
|
11754
|
+
return False
|
11755
|
+
return self.state.name in JOB_STATES_ENDED
|
11756
|
+
|
11665
11757
|
|
11666
11758
|
class BatchJobDict(TypedDict, total=False):
|
11667
11759
|
"""Config for batches.create return value."""
|
@@ -11712,6 +11804,138 @@ class BatchJobDict(TypedDict, total=False):
|
|
11712
11804
|
BatchJobOrDict = Union[BatchJob, BatchJobDict]
|
11713
11805
|
|
11714
11806
|
|
11807
|
+
class EmbedContentBatch(_common.BaseModel):
|
11808
|
+
"""Parameters for the embed_content method."""
|
11809
|
+
|
11810
|
+
contents: Optional[ContentListUnion] = Field(
|
11811
|
+
default=None,
|
11812
|
+
description="""The content to embed. Only the `parts.text` fields will be counted.
|
11813
|
+
""",
|
11814
|
+
)
|
11815
|
+
config: Optional[EmbedContentConfig] = Field(
|
11816
|
+
default=None,
|
11817
|
+
description="""Configuration that contains optional parameters.
|
11818
|
+
""",
|
11819
|
+
)
|
11820
|
+
|
11821
|
+
|
11822
|
+
class EmbedContentBatchDict(TypedDict, total=False):
|
11823
|
+
"""Parameters for the embed_content method."""
|
11824
|
+
|
11825
|
+
contents: Optional[ContentListUnionDict]
|
11826
|
+
"""The content to embed. Only the `parts.text` fields will be counted.
|
11827
|
+
"""
|
11828
|
+
|
11829
|
+
config: Optional[EmbedContentConfigDict]
|
11830
|
+
"""Configuration that contains optional parameters.
|
11831
|
+
"""
|
11832
|
+
|
11833
|
+
|
11834
|
+
EmbedContentBatchOrDict = Union[EmbedContentBatch, EmbedContentBatchDict]
|
11835
|
+
|
11836
|
+
|
11837
|
+
class EmbeddingsBatchJobSource(_common.BaseModel):
|
11838
|
+
|
11839
|
+
file_name: Optional[str] = Field(
|
11840
|
+
default=None,
|
11841
|
+
description="""The Gemini Developer API's file resource name of the input data
|
11842
|
+
(e.g. "files/12345").
|
11843
|
+
""",
|
11844
|
+
)
|
11845
|
+
inlined_requests: Optional[EmbedContentBatch] = Field(
|
11846
|
+
default=None,
|
11847
|
+
description="""The Gemini Developer API's inlined input data to run batch job.
|
11848
|
+
""",
|
11849
|
+
)
|
11850
|
+
|
11851
|
+
|
11852
|
+
class EmbeddingsBatchJobSourceDict(TypedDict, total=False):
|
11853
|
+
|
11854
|
+
file_name: Optional[str]
|
11855
|
+
"""The Gemini Developer API's file resource name of the input data
|
11856
|
+
(e.g. "files/12345").
|
11857
|
+
"""
|
11858
|
+
|
11859
|
+
inlined_requests: Optional[EmbedContentBatchDict]
|
11860
|
+
"""The Gemini Developer API's inlined input data to run batch job.
|
11861
|
+
"""
|
11862
|
+
|
11863
|
+
|
11864
|
+
EmbeddingsBatchJobSourceOrDict = Union[
|
11865
|
+
EmbeddingsBatchJobSource, EmbeddingsBatchJobSourceDict
|
11866
|
+
]
|
11867
|
+
|
11868
|
+
|
11869
|
+
class CreateEmbeddingsBatchJobConfig(_common.BaseModel):
|
11870
|
+
"""Config for optional parameters."""
|
11871
|
+
|
11872
|
+
http_options: Optional[HttpOptions] = Field(
|
11873
|
+
default=None, description="""Used to override HTTP request options."""
|
11874
|
+
)
|
11875
|
+
display_name: Optional[str] = Field(
|
11876
|
+
default=None,
|
11877
|
+
description="""The user-defined name of this BatchJob.
|
11878
|
+
""",
|
11879
|
+
)
|
11880
|
+
|
11881
|
+
|
11882
|
+
class CreateEmbeddingsBatchJobConfigDict(TypedDict, total=False):
|
11883
|
+
"""Config for optional parameters."""
|
11884
|
+
|
11885
|
+
http_options: Optional[HttpOptionsDict]
|
11886
|
+
"""Used to override HTTP request options."""
|
11887
|
+
|
11888
|
+
display_name: Optional[str]
|
11889
|
+
"""The user-defined name of this BatchJob.
|
11890
|
+
"""
|
11891
|
+
|
11892
|
+
|
11893
|
+
CreateEmbeddingsBatchJobConfigOrDict = Union[
|
11894
|
+
CreateEmbeddingsBatchJobConfig, CreateEmbeddingsBatchJobConfigDict
|
11895
|
+
]
|
11896
|
+
|
11897
|
+
|
11898
|
+
class _CreateEmbeddingsBatchJobParameters(_common.BaseModel):
|
11899
|
+
"""Config for batches.create parameters."""
|
11900
|
+
|
11901
|
+
model: Optional[str] = Field(
|
11902
|
+
default=None,
|
11903
|
+
description="""The name of the model to produces the predictions via the BatchJob.
|
11904
|
+
""",
|
11905
|
+
)
|
11906
|
+
src: Optional[EmbeddingsBatchJobSource] = Field(
|
11907
|
+
default=None,
|
11908
|
+
description="""input data to run batch job".
|
11909
|
+
""",
|
11910
|
+
)
|
11911
|
+
config: Optional[CreateEmbeddingsBatchJobConfig] = Field(
|
11912
|
+
default=None,
|
11913
|
+
description="""Optional parameters for creating a BatchJob.
|
11914
|
+
""",
|
11915
|
+
)
|
11916
|
+
|
11917
|
+
|
11918
|
+
class _CreateEmbeddingsBatchJobParametersDict(TypedDict, total=False):
|
11919
|
+
"""Config for batches.create parameters."""
|
11920
|
+
|
11921
|
+
model: Optional[str]
|
11922
|
+
"""The name of the model to produces the predictions via the BatchJob.
|
11923
|
+
"""
|
11924
|
+
|
11925
|
+
src: Optional[EmbeddingsBatchJobSourceDict]
|
11926
|
+
"""input data to run batch job".
|
11927
|
+
"""
|
11928
|
+
|
11929
|
+
config: Optional[CreateEmbeddingsBatchJobConfigDict]
|
11930
|
+
"""Optional parameters for creating a BatchJob.
|
11931
|
+
"""
|
11932
|
+
|
11933
|
+
|
11934
|
+
_CreateEmbeddingsBatchJobParametersOrDict = Union[
|
11935
|
+
_CreateEmbeddingsBatchJobParameters, _CreateEmbeddingsBatchJobParametersDict
|
11936
|
+
]
|
11937
|
+
|
11938
|
+
|
11715
11939
|
class GetBatchJobConfig(_common.BaseModel):
|
11716
11940
|
"""Optional parameters."""
|
11717
11941
|
|
google/genai/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: google-genai
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.34.0
|
4
4
|
Summary: GenAI Python SDK
|
5
5
|
Author-email: Google LLC <googleapis-packages@google.com>
|
6
6
|
License: Apache-2.0
|
@@ -30,6 +30,9 @@ Requires-Dist: websockets<15.1.0,>=13.0.0
|
|
30
30
|
Requires-Dist: typing-extensions<5.0.0,>=4.11.0
|
31
31
|
Provides-Extra: aiohttp
|
32
32
|
Requires-Dist: aiohttp<4.0.0; extra == "aiohttp"
|
33
|
+
Provides-Extra: local-tokenizer
|
34
|
+
Requires-Dist: sentencepiece>=0.2.0; extra == "local-tokenizer"
|
35
|
+
Requires-Dist: protobuf; extra == "local-tokenizer"
|
33
36
|
Dynamic: license-file
|
34
37
|
|
35
38
|
# Google Gen AI SDK
|
@@ -1063,6 +1066,20 @@ response = await client.aio.models.count_tokens(
|
|
1063
1066
|
print(response)
|
1064
1067
|
```
|
1065
1068
|
|
1069
|
+
#### Local Count Tokens
|
1070
|
+
|
1071
|
+
```python
|
1072
|
+
tokenizer = genai.LocalTokenizer(model_name='gemini-2.0-flash-001')
|
1073
|
+
result = tokenizer.count_tokens("What is your name?")
|
1074
|
+
```
|
1075
|
+
|
1076
|
+
#### Local Compute Tokens
|
1077
|
+
|
1078
|
+
```python
|
1079
|
+
tokenizer = genai.LocalTokenizer(model_name='gemini-2.0-flash-001')
|
1080
|
+
result = tokenizer.compute_tokens("What is your name?")
|
1081
|
+
```
|
1082
|
+
|
1066
1083
|
### Embed Content
|
1067
1084
|
|
1068
1085
|
```python
|
@@ -5,35 +5,35 @@ google/genai/_api_module.py,sha256=lj8eUWx8_LBGBz-49qz6_ywWm3GYp3d8Bg5JoOHbtbI,9
|
|
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
|
-
google/genai/_common.py,sha256=
|
9
|
-
google/genai/_extra_utils.py,sha256=
|
10
|
-
google/genai/_live_converters.py,sha256=
|
8
|
+
google/genai/_common.py,sha256=VziliVbesmNtke6Fh2wk-kQlCOxEpmkqYb0y4qfKIo4,20074
|
9
|
+
google/genai/_extra_utils.py,sha256=myEPyU_-RXExXtMGitJUKEMWUPiDudScgTN9LqFC8h4,20468
|
10
|
+
google/genai/_live_converters.py,sha256=OBKnJD7zgrfG6TOVSXoo9TkVHwXvLzudod0U40MqtZw,103192
|
11
11
|
google/genai/_local_tokenizer_loader.py,sha256=cGN1F0f7hNjRIGCGTLeox7IGAZf_YcvZjSp2rCyhUak,7465
|
12
12
|
google/genai/_mcp_utils.py,sha256=HuWJ8FUjquv40Mf_QjcL5r5yXWrS-JjINsjlOSbbyAc,3870
|
13
13
|
google/genai/_operations_converters.py,sha256=I1b46qhGCeB5uHNuyrMxpFqmzWuvSFQ5pS52csd1J4E,9080
|
14
14
|
google/genai/_replay_api_client.py,sha256=hXs5NuCpcZU-e6rfeWBStZmF33_2vn1dAo3NeTA8P2o,22413
|
15
15
|
google/genai/_test_api_client.py,sha256=4ruFIy5_1qcbKqqIBu3HSQbpSOBrxiecBtDZaTGFR1s,4797
|
16
|
-
google/genai/_tokens_converters.py,sha256=
|
17
|
-
google/genai/_transformers.py,sha256=
|
18
|
-
google/genai/batches.py,sha256=
|
19
|
-
google/genai/caches.py,sha256=
|
16
|
+
google/genai/_tokens_converters.py,sha256=42xx5Inv3YMqEdarb3lmt-w54D2tpb9QEBy0DSUATQk,24963
|
17
|
+
google/genai/_transformers.py,sha256=rtaCagL4htyu8MzuxqQJ_xnJqRwwuQKR7CWXYpydBZ4,40260
|
18
|
+
google/genai/batches.py,sha256=UJ-zc2UXqQfej8bqqtgeNrepc7zDQBzRlmkRf4Wlr4U,102880
|
19
|
+
google/genai/caches.py,sha256=0LVzGcF1t5tHq5QUZzstEGfOqbUPV3B8eywknqFWKD8,67650
|
20
20
|
google/genai/chats.py,sha256=pIBw8d13llupLn4a7vP6vnpbzDcvCCrZZ-Q2r8Cvo7g,16652
|
21
21
|
google/genai/client.py,sha256=wXnfZBSv9p-yKtX_gabUrfBXoYHuqHhzK_VgwRttMgY,10777
|
22
22
|
google/genai/errors.py,sha256=GlEvypbRgF3h5BxlocmWVf-S9kzERA_lwGLCMyAvpcY,5714
|
23
23
|
google/genai/files.py,sha256=T8uDgqCQheFwYYYJdN4lax4NOR_q6bJyr0jQf079VeE,40607
|
24
24
|
google/genai/live.py,sha256=BUyIOt-PON4SuJtKXA6l3ujzA3GUbYWMGSgZvsyKjrg,39674
|
25
25
|
google/genai/live_music.py,sha256=3GG9nsto8Vhkohcs-4CPMS4DFp1ZtMuLYzHfvEPYAeg,6971
|
26
|
-
google/genai/local_tokenizer.py,sha256=
|
27
|
-
google/genai/models.py,sha256=
|
26
|
+
google/genai/local_tokenizer.py,sha256=ZYOdZFS2nJbgDGOMrVzn2hZ_1G8I4_PuVsh6HU8jEgo,14055
|
27
|
+
google/genai/models.py,sha256=84KEXFWSVaE9vLgPwUWZCE-MXldBZUlHAiI3WBoW7qM,267291
|
28
28
|
google/genai/operations.py,sha256=Ccm4EW13cT_EtCq8Fa3n8jlQySyy9KqJ98ZK4pF0DDA,12815
|
29
29
|
google/genai/pagers.py,sha256=m0SfWWn1EJs2k1On3DZx371qb8g2BRm_188ExsicIRc,7098
|
30
30
|
google/genai/py.typed,sha256=RsMFoLwBkAvY05t6izop4UHZtqOPLiKp3GkIEizzmQY,40
|
31
31
|
google/genai/tokens.py,sha256=8RbZ0kgvyKT3SwbgIUOHr6TTZL24v4fqYarhlA8r1ac,12503
|
32
32
|
google/genai/tunings.py,sha256=vVV9NvrtzoWDLzcTLSrgD5lzFeSRJdCB1QtfzL3yj3c,63275
|
33
|
-
google/genai/types.py,sha256=
|
34
|
-
google/genai/version.py,sha256=
|
35
|
-
google_genai-1.
|
36
|
-
google_genai-1.
|
37
|
-
google_genai-1.
|
38
|
-
google_genai-1.
|
39
|
-
google_genai-1.
|
33
|
+
google/genai/types.py,sha256=X_EJw9XImkNUV-kei6sX_EyamVh3ZcllCyhDY6oGIKg,537135
|
34
|
+
google/genai/version.py,sha256=pq67EsG5-MVW2erGgNTP2s1tkENaUdCa412taBfzfhM,627
|
35
|
+
google_genai-1.34.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
36
|
+
google_genai-1.34.0.dist-info/METADATA,sha256=hfQsErEKbSrvHuHNO9w49pDdJnDcjIdj5mDKNAst85o,43556
|
37
|
+
google_genai-1.34.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
38
|
+
google_genai-1.34.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
|
39
|
+
google_genai-1.34.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|