@lobehub/chat 1.36.24 → 1.36.25
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/changelog/v1.json +9 -0
- package/package.json +1 -1
- package/src/config/modelProviders/xai.ts +28 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.36.25](https://github.com/lobehub/lobe-chat/compare/v1.36.24...v1.36.25)
|
6
|
+
|
7
|
+
<sup>Released on **2024-12-14**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Add new grok models.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Add new grok models, closes [#5013](https://github.com/lobehub/lobe-chat/issues/5013) ([8df3212](https://github.com/lobehub/lobe-chat/commit/8df3212))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.36.24](https://github.com/lobehub/lobe-chat/compare/v1.36.23...v1.36.24)
|
6
31
|
|
7
32
|
<sup>Released on **2024-12-14**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.36.
|
3
|
+
"version": "1.36.25",
|
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",
|
@@ -28,8 +28,35 @@ const XAI: ModelProviderCard = {
|
|
28
28
|
tokens: 8192,
|
29
29
|
vision: true,
|
30
30
|
},
|
31
|
+
{
|
32
|
+
description: '该模型在准确性、指令遵循和多语言能力方面有所改进。',
|
33
|
+
displayName: 'Grok 2 1212',
|
34
|
+
enabled: true,
|
35
|
+
functionCall: true,
|
36
|
+
id: 'grok-2-1212',
|
37
|
+
pricing: {
|
38
|
+
input: 2,
|
39
|
+
output: 10,
|
40
|
+
},
|
41
|
+
releasedAt: '2024-12-12',
|
42
|
+
tokens: 131_072,
|
43
|
+
},
|
44
|
+
{
|
45
|
+
description: '该模型在准确性、指令遵循和多语言能力方面有所改进。',
|
46
|
+
displayName: 'Grok 2 Vision 1212',
|
47
|
+
enabled: true,
|
48
|
+
functionCall: true,
|
49
|
+
id: 'grok-2-vision-1212',
|
50
|
+
pricing: {
|
51
|
+
input: 2,
|
52
|
+
output: 10,
|
53
|
+
},
|
54
|
+
releasedAt: '2024-12-12',
|
55
|
+
tokens: 32_768,
|
56
|
+
vision: true,
|
57
|
+
},
|
31
58
|
],
|
32
|
-
checkModel: 'grok-
|
59
|
+
checkModel: 'grok-2-1212',
|
33
60
|
description:
|
34
61
|
'xAI 是一家致力于构建人工智能以加速人类科学发现的公司。我们的使命是推动我们对宇宙的共同理解。',
|
35
62
|
id: 'xai',
|