@lobehub/chat 1.88.16 → 1.88.17
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/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/package.json +1 -1
- package/src/const/settings/agent.ts +1 -1
- package/src/store/agent/slices/chat/selectors/__snapshots__/agent.test.ts.snap +1 -1
- package/src/store/agent/slices/chat/selectors/chatConfig.test.ts +1 -1
- package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +2 -2
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.88.17](https://github.com/lobehub/lobe-chat/compare/v1.88.16...v1.88.17)
|
6
|
+
|
7
|
+
<sup>Released on **2025-05-29**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Increase the history limit.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Increase the history limit, closes [#8007](https://github.com/lobehub/lobe-chat/issues/8007) ([5ec7c8d](https://github.com/lobehub/lobe-chat/commit/5ec7c8d))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.88.16](https://github.com/lobehub/lobe-chat/compare/v1.88.15...v1.88.16)
|
6
31
|
|
7
32
|
<sup>Released on **2025-05-29**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.88.
|
3
|
+
"version": "1.88.17",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -24,7 +24,7 @@ export const DEFAULT_AGENT_CHAT_CONFIG: LobeAgentChatConfig = {
|
|
24
24
|
enableCompressHistory: true,
|
25
25
|
enableHistoryCount: true,
|
26
26
|
enableReasoning: false,
|
27
|
-
historyCount:
|
27
|
+
historyCount: 20,
|
28
28
|
reasoningBudgetToken: 1024,
|
29
29
|
searchFCModel: DEFAULT_AGENT_SEARCH_FC_MODEL,
|
30
30
|
searchMode: 'off',
|
@@ -9,7 +9,7 @@ exports[`agentSelectors > defaultAgentConfig > should merge DEFAULT_AGENT_CONFIG
|
|
9
9
|
"enableCompressHistory": true,
|
10
10
|
"enableHistoryCount": true,
|
11
11
|
"enableReasoning": false,
|
12
|
-
"historyCount":
|
12
|
+
"historyCount": 20,
|
13
13
|
"reasoningBudgetToken": 1024,
|
14
14
|
"searchFCModel": {
|
15
15
|
"model": "gpt-4.1-mini",
|
@@ -88,7 +88,7 @@ describe('agentChatConfigSelectors', () => {
|
|
88
88
|
describe('historyCount', () => {
|
89
89
|
it('should return undefined when historyCount is not defined', () => {
|
90
90
|
const state = createMockState();
|
91
|
-
expect(agentChatConfigSelectors.historyCount(state)).toBe(
|
91
|
+
expect(agentChatConfigSelectors.historyCount(state)).toBe(20);
|
92
92
|
});
|
93
93
|
|
94
94
|
it('should return the historyCount value when defined', () => {
|
@@ -108,7 +108,7 @@ exports[`settingsSelectors > defaultAgent > should merge DEFAULT_AGENT and s.set
|
|
108
108
|
"enableCompressHistory": true,
|
109
109
|
"enableHistoryCount": true,
|
110
110
|
"enableReasoning": false,
|
111
|
-
"historyCount":
|
111
|
+
"historyCount": 20,
|
112
112
|
"reasoningBudgetToken": 1024,
|
113
113
|
"searchFCModel": {
|
114
114
|
"model": "gpt-4.1-mini",
|
@@ -152,7 +152,7 @@ exports[`settingsSelectors > defaultAgentConfig > should merge DEFAULT_AGENT_CON
|
|
152
152
|
"enableCompressHistory": true,
|
153
153
|
"enableHistoryCount": true,
|
154
154
|
"enableReasoning": false,
|
155
|
-
"historyCount":
|
155
|
+
"historyCount": 20,
|
156
156
|
"reasoningBudgetToken": 1024,
|
157
157
|
"searchFCModel": {
|
158
158
|
"model": "gpt-4.1-mini",
|