@lobehub/chat 1.13.0 → 1.13.1
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/package.json +1 -1
- package/src/config/modelProviders/qwen.ts +36 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.13.1](https://github.com/lobehub/lobe-chat/compare/v1.13.0...v1.13.1)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-08-27**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Update Qwen models.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Update Qwen models, closes [#3626](https://github.com/lobehub/lobe-chat/issues/3626) ([4393386](https://github.com/lobehub/lobe-chat/commit/4393386))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
## [Version 1.13.0](https://github.com/lobehub/lobe-chat/compare/v1.12.20...v1.13.0)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-08-27**</sup>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
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",
|
|
@@ -60,7 +60,7 @@ const Qwen: ModelProviderCard = {
|
|
|
60
60
|
displayName: 'Qwen VL Plus',
|
|
61
61
|
enabled: true,
|
|
62
62
|
id: 'qwen-vl-plus',
|
|
63
|
-
tokens:
|
|
63
|
+
tokens: 8192,
|
|
64
64
|
vision: true,
|
|
65
65
|
},
|
|
66
66
|
{
|
|
@@ -69,7 +69,41 @@ const Qwen: ModelProviderCard = {
|
|
|
69
69
|
displayName: 'Qwen VL Max',
|
|
70
70
|
enabled: true,
|
|
71
71
|
id: 'qwen-vl-max',
|
|
72
|
-
tokens:
|
|
72
|
+
tokens: 8192,
|
|
73
|
+
vision: true,
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
description:
|
|
77
|
+
'以 Qwen-7B 语言模型初始化,添加图像模型,图像输入分辨率为448的预训练模型。',
|
|
78
|
+
displayName: 'Qwen VL',
|
|
79
|
+
enabled: true,
|
|
80
|
+
id: 'qwen-vl-v1',
|
|
81
|
+
tokens: 8192,
|
|
82
|
+
vision: true,
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
description:
|
|
86
|
+
'通义千问VL支持灵活的交互方式,包括多图、多轮问答、创作等能力的模型。',
|
|
87
|
+
displayName: 'Qwen VL Chat',
|
|
88
|
+
enabled: true,
|
|
89
|
+
id: 'qwen-vl-chat-v1',
|
|
90
|
+
tokens: 8192,
|
|
91
|
+
vision: true,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
description: 'Qwen2-Math 模型具有强大的数学解题能力',
|
|
95
|
+
displayName: 'Qwen2 Math 72B',
|
|
96
|
+
enabled: true,
|
|
97
|
+
id: 'qwen2-math-72b-instruct',
|
|
98
|
+
tokens: 4096,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
description:
|
|
102
|
+
'抢先体验即将升级的 qwen-vl-max 大模型。',
|
|
103
|
+
displayName: 'Qwen VL Max 0809',
|
|
104
|
+
enabled: true,
|
|
105
|
+
id: 'qwen-vl-max-0809',
|
|
106
|
+
tokens: 32_768,
|
|
73
107
|
vision: true,
|
|
74
108
|
},
|
|
75
109
|
],
|