@lobehub/chat 0.135.2 → 0.135.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/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 0.135.3](https://github.com/lobehub/lobe-chat/compare/v0.135.2...v0.135.3)
6
+
7
+ <sup>Released on **2024-03-15**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **ollama**: Fix duplicate llama model and add llama2-chinese models.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **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))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 0.135.2](https://github.com/lobehub/lobe-chat/compare/v0.135.1...v0.135.2)
6
31
 
7
32
  <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.2",
3
+ "version": "0.135.3",
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": "^18",
172
+ "@types/react": "18.2.65",
173
173
  "@types/react-dom": "^18",
174
174
  "@types/rtl-detect": "^1",
175
175
  "@types/semver": "^7",
@@ -32,18 +32,25 @@ const Ollama: ModelProviderCard = {
32
32
  vision: false,
33
33
  },
34
34
  {
35
- displayName: 'Llama2 Chat 13B',
35
+ displayName: 'Llama2 Chat 70B',
36
36
  functionCall: false,
37
37
  hidden: true,
38
- id: 'llama2:13b',
38
+ id: 'llama2:70b',
39
39
  tokens: 4000,
40
40
  vision: false,
41
41
  },
42
42
  {
43
- displayName: 'Llama2 Chat 70B',
43
+ displayName: 'Llama2 CN 13B',
44
44
  functionCall: false,
45
45
  hidden: true,
46
- id: 'llama2:70b',
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
  },