@lobehub/chat 1.88.5 → 1.88.6
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,39 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.88.6](https://github.com/lobehub/lobe-chat/compare/v1.88.5...v1.88.6)
|
6
|
+
|
7
|
+
<sup>Released on **2025-05-25**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Fix draggable issue with agent header.
|
12
|
+
|
13
|
+
#### 💄 Styles
|
14
|
+
|
15
|
+
- **misc**: Fix a few typos in the model tooltips.
|
16
|
+
|
17
|
+
<br/>
|
18
|
+
|
19
|
+
<details>
|
20
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
21
|
+
|
22
|
+
#### What's fixed
|
23
|
+
|
24
|
+
- **misc**: Fix draggable issue with agent header, closes [#7968](https://github.com/lobehub/lobe-chat/issues/7968) ([cd84241](https://github.com/lobehub/lobe-chat/commit/cd84241))
|
25
|
+
|
26
|
+
#### Styles
|
27
|
+
|
28
|
+
- **misc**: Fix a few typos in the model tooltips, closes [#7952](https://github.com/lobehub/lobe-chat/issues/7952) ([8416fec](https://github.com/lobehub/lobe-chat/commit/8416fec))
|
29
|
+
|
30
|
+
</details>
|
31
|
+
|
32
|
+
<div align="right">
|
33
|
+
|
34
|
+
[](#readme-top)
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
5
38
|
### [Version 1.88.5](https://github.com/lobehub/lobe-chat/compare/v1.88.4...v1.88.5)
|
6
39
|
|
7
40
|
<sup>Released on **2025-05-25**</sup>
|
package/changelog/v1.json
CHANGED
@@ -1,4 +1,16 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"children": {
|
4
|
+
"fixes": [
|
5
|
+
"Fix draggable issue with agent header."
|
6
|
+
],
|
7
|
+
"improvements": [
|
8
|
+
"Fix a few typos in the model tooltips."
|
9
|
+
]
|
10
|
+
},
|
11
|
+
"date": "2025-05-25",
|
12
|
+
"version": "1.88.6"
|
13
|
+
},
|
2
14
|
{
|
3
15
|
"children": {
|
4
16
|
"improvements": [
|
@@ -73,12 +73,12 @@
|
|
73
73
|
},
|
74
74
|
"ModelSelect": {
|
75
75
|
"featureTag": {
|
76
|
-
"custom": "Custom model, by default, supports both function
|
76
|
+
"custom": "Custom model, by default, supports both function calls and visual recognition. Please verify the availability of the above capabilities based on actual situations.",
|
77
77
|
"file": "This model supports file upload for reading and recognition.",
|
78
|
-
"functionCall": "This model supports function
|
79
|
-
"imageOutput": "This model supports image generation",
|
80
|
-
"reasoning": "This model supports deep thinking",
|
81
|
-
"search": "This model supports online search",
|
78
|
+
"functionCall": "This model supports function calls.",
|
79
|
+
"imageOutput": "This model supports image generation.",
|
80
|
+
"reasoning": "This model supports deep thinking.",
|
81
|
+
"search": "This model supports online search.",
|
82
82
|
"tokens": "This model supports up to {{tokens}} tokens in a single session.",
|
83
83
|
"vision": "This model supports visual recognition."
|
84
84
|
},
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.88.
|
3
|
+
"version": "1.88.6",
|
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",
|
@@ -4,24 +4,11 @@ import { ChatHeader } from '@lobehub/ui/chat';
|
|
4
4
|
|
5
5
|
import { useGlobalStore } from '@/store/global';
|
6
6
|
import { systemStatusSelectors } from '@/store/global/selectors';
|
7
|
-
import { electronStylish } from '@/styles/electron';
|
8
|
-
|
9
|
-
import HeaderAction from './HeaderAction';
|
10
|
-
import Main from './Main';
|
11
7
|
|
12
8
|
const Header = () => {
|
13
9
|
const showHeader = useGlobalStore(systemStatusSelectors.showChatHeader);
|
14
10
|
|
15
|
-
return
|
16
|
-
showHeader && (
|
17
|
-
<ChatHeader
|
18
|
-
className={electronStylish.draggable}
|
19
|
-
left={<Main className={electronStylish.nodrag} />}
|
20
|
-
right={<HeaderAction className={electronStylish.nodrag} />}
|
21
|
-
style={{ paddingInline: 8, position: 'initial', zIndex: 11 }}
|
22
|
-
/>
|
23
|
-
)
|
24
|
-
);
|
11
|
+
return showHeader && <ChatHeader style={{ paddingInline: 8, position: 'initial', zIndex: 11 }} />;
|
25
12
|
};
|
26
13
|
|
27
14
|
export default Header;
|