@lobehub/chat 0.135.2 → 0.135.4
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,48 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.135.4](https://github.com/lobehub/lobe-chat/compare/v0.135.3...v0.135.4)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-03-15**</sup>
|
|
8
|
+
|
|
9
|
+
<br/>
|
|
10
|
+
|
|
11
|
+
<details>
|
|
12
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
13
|
+
|
|
14
|
+
</details>
|
|
15
|
+
|
|
16
|
+
<div align="right">
|
|
17
|
+
|
|
18
|
+
[](#readme-top)
|
|
19
|
+
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
### [Version 0.135.3](https://github.com/lobehub/lobe-chat/compare/v0.135.2...v0.135.3)
|
|
23
|
+
|
|
24
|
+
<sup>Released on **2024-03-15**</sup>
|
|
25
|
+
|
|
26
|
+
#### 🐛 Bug Fixes
|
|
27
|
+
|
|
28
|
+
- **ollama**: Fix duplicate llama model and add llama2-chinese models.
|
|
29
|
+
|
|
30
|
+
<br/>
|
|
31
|
+
|
|
32
|
+
<details>
|
|
33
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
34
|
+
|
|
35
|
+
#### What's fixed
|
|
36
|
+
|
|
37
|
+
- **ollama**: Fix duplicate llama model and add llama2-chinese models, closes [#1579](https://github.com/lobehub/lobe-chat/issues/1579) ([6b9b5c8](https://github.com/lobehub/lobe-chat/commit/6b9b5c8))
|
|
38
|
+
|
|
39
|
+
</details>
|
|
40
|
+
|
|
41
|
+
<div align="right">
|
|
42
|
+
|
|
43
|
+
[](#readme-top)
|
|
44
|
+
|
|
45
|
+
</div>
|
|
46
|
+
|
|
5
47
|
### [Version 0.135.2](https://github.com/lobehub/lobe-chat/compare/v0.135.1...v0.135.2)
|
|
6
48
|
|
|
7
49
|
<sup>Released on **2024-03-14**</sup>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "0.135.
|
|
3
|
+
"version": "0.135.4",
|
|
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",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"@types/lodash-es": "^4",
|
|
170
170
|
"@types/node": "^20",
|
|
171
171
|
"@types/numeral": "^2",
|
|
172
|
-
"@types/react": "
|
|
172
|
+
"@types/react": "18.2.65",
|
|
173
173
|
"@types/react-dom": "^18",
|
|
174
174
|
"@types/rtl-detect": "^1",
|
|
175
175
|
"@types/semver": "^7",
|
|
@@ -64,6 +64,9 @@ export const Topic = memo(() => {
|
|
|
64
64
|
cover={imageUrl(`empty_topic_${isDarkMode ? 'dark' : 'light'}.webp`)}
|
|
65
65
|
desc={t('topic.guide.desc')}
|
|
66
66
|
height={120}
|
|
67
|
+
imageProps={{
|
|
68
|
+
priority: true,
|
|
69
|
+
}}
|
|
67
70
|
onVisibleChange={(visible) => {
|
|
68
71
|
updateGuideState({ topic: visible });
|
|
69
72
|
}}
|
|
@@ -32,18 +32,25 @@ const Ollama: ModelProviderCard = {
|
|
|
32
32
|
vision: false,
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
|
-
displayName: 'Llama2 Chat
|
|
35
|
+
displayName: 'Llama2 Chat 70B',
|
|
36
36
|
functionCall: false,
|
|
37
37
|
hidden: true,
|
|
38
|
-
id: 'llama2:
|
|
38
|
+
id: 'llama2:70b',
|
|
39
39
|
tokens: 4000,
|
|
40
40
|
vision: false,
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
displayName: 'Llama2
|
|
43
|
+
displayName: 'Llama2 CN 13B',
|
|
44
44
|
functionCall: false,
|
|
45
45
|
hidden: true,
|
|
46
|
-
id: 'llama2:
|
|
46
|
+
id: 'llama2-chinese:13b',
|
|
47
|
+
tokens: 4000,
|
|
48
|
+
vision: false,
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
displayName: 'Llama2 CN 7B',
|
|
52
|
+
functionCall: false,
|
|
53
|
+
id: 'llama2-chinese',
|
|
47
54
|
tokens: 4000,
|
|
48
55
|
vision: false,
|
|
49
56
|
},
|