google-genai 1.25.0__py3-none-any.whl → 1.26.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/_extra_utils.py +1 -1
- google/genai/_live_converters.py +1624 -1922
- google/genai/_tokens_converters.py +11 -874
- google/genai/_transformers.py +21 -11
- google/genai/batches.py +388 -3477
- google/genai/caches.py +0 -65
- google/genai/files.py +4 -0
- google/genai/live.py +8 -10
- google/genai/models.py +10 -170
- google/genai/operations.py +36 -266
- google/genai/tunings.py +7 -46
- google/genai/types.py +109 -46
- google/genai/version.py +1 -1
- {google_genai-1.25.0.dist-info → google_genai-1.26.0.dist-info}/METADATA +44 -10
- {google_genai-1.25.0.dist-info → google_genai-1.26.0.dist-info}/RECORD +18 -18
- {google_genai-1.25.0.dist-info → google_genai-1.26.0.dist-info}/WHEEL +0 -0
- {google_genai-1.25.0.dist-info → google_genai-1.26.0.dist-info}/licenses/LICENSE +0 -0
- {google_genai-1.25.0.dist-info → google_genai-1.26.0.dist-info}/top_level.txt +0 -0
google/genai/_extra_utils.py
CHANGED
@@ -114,7 +114,7 @@ def format_destination(
|
|
114
114
|
unique_name = unique_name or _common.timestamped_unique_name()
|
115
115
|
config.dest = f'{bigquery_source_uri}_dest_{unique_name}'
|
116
116
|
else:
|
117
|
-
raise ValueError(f'
|
117
|
+
raise ValueError(f'The source {src} is not supported.')
|
118
118
|
return config
|
119
119
|
|
120
120
|
|