@lobehub/chat 1.32.2 → 1.32.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,32 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.32.3](https://github.com/lobehub/lobe-chat/compare/v1.32.2...v1.32.3)
|
6
|
+
|
7
|
+
<sup>Released on **2024-11-20**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Add grok-vision-beta model, update Mistral model list, add `pixtral-large-latest`.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Add grok-vision-beta model, closes [#4734](https://github.com/lobehub/lobe-chat/issues/4734) ([744ea30](https://github.com/lobehub/lobe-chat/commit/744ea30))
|
21
|
+
- **misc**: Update Mistral model list, add `pixtral-large-latest`, closes [#4744](https://github.com/lobehub/lobe-chat/issues/4744) ([7ee6fdd](https://github.com/lobehub/lobe-chat/commit/7ee6fdd))
|
22
|
+
|
23
|
+
</details>
|
24
|
+
|
25
|
+
<div align="right">
|
26
|
+
|
27
|
+
[](#readme-top)
|
28
|
+
|
29
|
+
</div>
|
30
|
+
|
5
31
|
### [Version 1.32.2](https://github.com/lobehub/lobe-chat/compare/v1.32.1...v1.32.2)
|
6
32
|
|
7
33
|
<sup>Released on **2024-11-19**</sup>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.32.
|
3
|
+
"version": "1.32.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",
|
@@ -53,6 +53,20 @@ const Mistral: ModelProviderCard = {
|
|
53
53
|
},
|
54
54
|
tokens: 32_768,
|
55
55
|
},
|
56
|
+
{
|
57
|
+
description:
|
58
|
+
'Pixtral Large 是一款拥有 1240 亿参数的开源多模态模型,基于 Mistral Large 2 构建。这是我们多模态家族中的第二款模型,展现了前沿水平的图像理解能力。',
|
59
|
+
displayName: 'Pixtral Large',
|
60
|
+
enabled: true,
|
61
|
+
functionCall: true,
|
62
|
+
id: 'pixtral-large-latest',
|
63
|
+
pricing: {
|
64
|
+
input: 2,
|
65
|
+
output: 6,
|
66
|
+
},
|
67
|
+
tokens: 128_000,
|
68
|
+
vision: true,
|
69
|
+
},
|
56
70
|
{
|
57
71
|
description:
|
58
72
|
'Pixtral 模型在图表和图理解、文档问答、多模态推理和指令遵循等任务上表现出强大的能力,能够以自然分辨率和宽高比摄入图像,还能够在长达 128K 令牌的长上下文窗口中处理任意数量的图像。',
|
@@ -15,6 +15,19 @@ const XAI: ModelProviderCard = {
|
|
15
15
|
},
|
16
16
|
tokens: 131_072,
|
17
17
|
},
|
18
|
+
{
|
19
|
+
description: '最新的图像理解模型,可以处理各种各样的视觉信息,包括文档、图表、截图和照片等。',
|
20
|
+
displayName: 'Grok Vision Beta',
|
21
|
+
enabled: true,
|
22
|
+
functionCall: true,
|
23
|
+
id: 'grok-vision-beta',
|
24
|
+
pricing: {
|
25
|
+
input: 5,
|
26
|
+
output: 15,
|
27
|
+
},
|
28
|
+
tokens: 8192,
|
29
|
+
vision: true,
|
30
|
+
},
|
18
31
|
],
|
19
32
|
checkModel: 'grok-beta',
|
20
33
|
description:
|
@@ -23,7 +36,10 @@ const XAI: ModelProviderCard = {
|
|
23
36
|
modelList: { showModelFetcher: true },
|
24
37
|
modelsUrl: 'https://docs.x.ai/docs#models',
|
25
38
|
name: 'xAI',
|
26
|
-
|
39
|
+
proxyUrl: {
|
40
|
+
placeholder: 'https://api.x.ai/v1',
|
41
|
+
},
|
42
|
+
url: 'https://x.ai/api',
|
27
43
|
};
|
28
44
|
|
29
45
|
export default XAI;
|