@google/genai 2.4.0 → 2.5.0
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.
- package/dist/genai.d.ts +4 -4
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/node/index.cjs +1 -1
- package/dist/node/index.mjs +1 -1
- package/dist/node/index.mjs.map +1 -1
- package/dist/node/node.d.ts +4 -4
- package/dist/tokenizer/node.mjs.map +1 -1
- package/dist/vertex_internal/index.cjs +1 -1
- package/dist/vertex_internal/index.cjs.map +1 -1
- package/dist/vertex_internal/index.d.ts +1 -1
- package/dist/vertex_internal/index.js +1 -1
- package/dist/vertex_internal/index.js.map +1 -1
- package/dist/web/index.mjs +1 -1
- package/dist/web/index.mjs.map +1 -1
- package/dist/web/web.d.ts +4 -4
- package/package.json +1 -1
|
@@ -565,7 +565,7 @@ declare interface BatchJobOutputInfo {
|
|
|
565
565
|
vertexMultimodalDatasetName?: string;
|
|
566
566
|
/** The full path of the Cloud Storage directory created, into which the prediction output is written. */
|
|
567
567
|
gcsOutputDirectory?: string;
|
|
568
|
-
/** The name of the BigQuery table created, in `
|
|
568
|
+
/** The name of the BigQuery table created, in `predictions_TIMESTAMP` format, into which the prediction output is written. */
|
|
569
569
|
bigqueryOutputTable?: string;
|
|
570
570
|
}
|
|
571
571
|
|
|
@@ -2050,7 +2050,7 @@ const CONTENT_TYPE_HEADER = 'Content-Type';
|
|
|
2050
2050
|
const SERVER_TIMEOUT_HEADER = 'X-Server-Timeout';
|
|
2051
2051
|
const USER_AGENT_HEADER = 'User-Agent';
|
|
2052
2052
|
const GOOGLE_API_CLIENT_HEADER = 'x-goog-api-client';
|
|
2053
|
-
const SDK_VERSION = '2.
|
|
2053
|
+
const SDK_VERSION = '2.5.0'; // x-release-please-version
|
|
2054
2054
|
const LIBRARY_LABEL = `google-genai-sdk/${SDK_VERSION}`;
|
|
2055
2055
|
const VERTEX_AI_API_DEFAULT_VERSION = 'v1beta1';
|
|
2056
2056
|
const GOOGLE_AI_API_DEFAULT_VERSION = 'v1beta';
|