@lobehub/chat 1.88.7 → 1.88.8
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
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.88.8](https://github.com/lobehub/lobe-chat/compare/v1.88.7...v1.88.8)
|
6
|
+
|
7
|
+
<sup>Released on **2025-05-26**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Allow `SliderWithInput` to have no input limit.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Allow `SliderWithInput` to have no input limit, closes [#7708](https://github.com/lobehub/lobe-chat/issues/7708) ([bdb02b2](https://github.com/lobehub/lobe-chat/commit/bdb02b2))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.88.7](https://github.com/lobehub/lobe-chat/compare/v1.88.6...v1.88.7)
|
6
31
|
|
7
32
|
<sup>Released on **2025-05-26**</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.8",
|
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",
|
@@ -67,7 +67,7 @@ const AgentChat = memo(() => {
|
|
67
67
|
valuePropName: 'checked',
|
68
68
|
},
|
69
69
|
{
|
70
|
-
children: <SliderWithInput max={8} min={0} />,
|
70
|
+
children: <SliderWithInput max={8} min={0} unlimitedInput={true} />,
|
71
71
|
desc: t('settingChat.autoCreateTopicThreshold.desc'),
|
72
72
|
divider: false,
|
73
73
|
hidden: !config.enableAutoCreateTopic,
|
@@ -83,7 +83,7 @@ const AgentChat = memo(() => {
|
|
83
83
|
valuePropName: 'checked',
|
84
84
|
},
|
85
85
|
{
|
86
|
-
children: <SliderWithInput max={20} min={0} />,
|
86
|
+
children: <SliderWithInput max={20} min={0} unlimitedInput={true} />,
|
87
87
|
desc: t('settingChat.historyCount.desc'),
|
88
88
|
divider: false,
|
89
89
|
hidden: !config.enableHistoryCount,
|
@@ -66,7 +66,7 @@ const AgentModal = memo(() => {
|
|
66
66
|
valuePropName: 'checked',
|
67
67
|
},
|
68
68
|
{
|
69
|
-
children: <SliderWithInput max={32_000} min={0} step={100} />,
|
69
|
+
children: <SliderWithInput max={32_000} min={0} step={100} unlimitedInput={true} />,
|
70
70
|
desc: t('settingModel.maxTokens.desc'),
|
71
71
|
divider: false,
|
72
72
|
hidden: !config.chatConfig.enableMaxTokens,
|