@google/gemini-cli-core 0.17.0-preview.2 → 0.17.0-preview.3
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/google-gemini-cli-core-0.17.0-preview.2.tgz +0 -0
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/services/chatCompressionService.d.ts +1 -1
- package/dist/src/services/chatCompressionService.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/google-gemini-cli-core-0.17.0-preview.1.tgz +0 -0
|
Binary file
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright 2025 Google LLC
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
export declare const GIT_COMMIT_INFO = "
|
|
7
|
-
export declare const CLI_VERSION = "0.17.0-preview.
|
|
6
|
+
export declare const GIT_COMMIT_INFO = "d3bf3af4a";
|
|
7
|
+
export declare const CLI_VERSION = "0.17.0-preview.3";
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
*/
|
|
6
6
|
// This file is auto-generated by the build script (scripts/generate-git-commit-info.js)
|
|
7
7
|
// Do not edit this file manually.
|
|
8
|
-
export const GIT_COMMIT_INFO = '
|
|
9
|
-
export const CLI_VERSION = '0.17.0-preview.
|
|
8
|
+
export const GIT_COMMIT_INFO = 'd3bf3af4a';
|
|
9
|
+
export const CLI_VERSION = '0.17.0-preview.3';
|
|
10
10
|
//# sourceMappingURL=git-commit.js.map
|
|
@@ -11,7 +11,7 @@ import { type ChatCompressionInfo } from '../core/turn.js';
|
|
|
11
11
|
* Default threshold for compression token count as a fraction of the model's
|
|
12
12
|
* token limit. If the chat history exceeds this threshold, it will be compressed.
|
|
13
13
|
*/
|
|
14
|
-
export declare const DEFAULT_COMPRESSION_TOKEN_THRESHOLD = 0.
|
|
14
|
+
export declare const DEFAULT_COMPRESSION_TOKEN_THRESHOLD = 0.5;
|
|
15
15
|
/**
|
|
16
16
|
* The fraction of the latest chat history to keep. A value of 0.3
|
|
17
17
|
* means that only the last 30% of the chat history will be kept after compression.
|
|
@@ -14,7 +14,7 @@ import { getInitialChatHistory } from '../utils/environmentContext.js';
|
|
|
14
14
|
* Default threshold for compression token count as a fraction of the model's
|
|
15
15
|
* token limit. If the chat history exceeds this threshold, it will be compressed.
|
|
16
16
|
*/
|
|
17
|
-
export const DEFAULT_COMPRESSION_TOKEN_THRESHOLD = 0.
|
|
17
|
+
export const DEFAULT_COMPRESSION_TOKEN_THRESHOLD = 0.5;
|
|
18
18
|
/**
|
|
19
19
|
* The fraction of the latest chat history to keep. A value of 0.3
|
|
20
20
|
* means that only the last 30% of the chat history will be kept after compression.
|