@lobehub/chat 1.35.2 → 1.35.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 1.35.3](https://github.com/lobehub/lobe-chat/compare/v1.35.2...v1.35.3)
|
6
|
+
|
7
|
+
<sup>Released on **2024-12-01**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Add gpt-4o-2024-11-20 model.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Add gpt-4o-2024-11-20 model, closes [#4855](https://github.com/lobehub/lobe-chat/issues/4855) ([bc3b396](https://github.com/lobehub/lobe-chat/commit/bc3b396))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.35.2](https://github.com/lobehub/lobe-chat/compare/v1.35.1...v1.35.2)
|
6
31
|
|
7
32
|
<sup>Released on **2024-12-01**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.35.
|
3
|
+
"version": "1.35.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",
|
@@ -46,6 +46,21 @@ const OpenAI: ModelProviderCard = {
|
|
46
46
|
tokens: 128_000,
|
47
47
|
vision: true,
|
48
48
|
},
|
49
|
+
{
|
50
|
+
description:
|
51
|
+
'ChatGPT-4o 是一款动态模型,实时更新以保持当前最新版本。它结合了强大的语言理解与生成能力,适合于大规模应用场景,包括客户服务、教育和技术支持。',
|
52
|
+
displayName: 'GPT-4o 1120',
|
53
|
+
enabled: true,
|
54
|
+
functionCall: true,
|
55
|
+
id: 'gpt-4o-2024-11-20',
|
56
|
+
pricing: {
|
57
|
+
input: 2.5,
|
58
|
+
output: 10,
|
59
|
+
},
|
60
|
+
releasedAt: '2024-11-20',
|
61
|
+
tokens: 128_000,
|
62
|
+
vision: true,
|
63
|
+
},
|
49
64
|
{
|
50
65
|
description:
|
51
66
|
'ChatGPT-4o 是一款动态模型,实时更新以保持当前最新版本。它结合了强大的语言理解与生成能力,适合于大规模应用场景,包括客户服务、教育和技术支持。',
|
@@ -70,6 +85,7 @@ const OpenAI: ModelProviderCard = {
|
|
70
85
|
input: 2.5,
|
71
86
|
output: 10,
|
72
87
|
},
|
88
|
+
releasedAt: '2024-08-06',
|
73
89
|
tokens: 128_000,
|
74
90
|
vision: true,
|
75
91
|
},
|
@@ -83,6 +99,7 @@ const OpenAI: ModelProviderCard = {
|
|
83
99
|
input: 5,
|
84
100
|
output: 15,
|
85
101
|
},
|
102
|
+
releasedAt: '2024-05-13',
|
86
103
|
tokens: 128_000,
|
87
104
|
vision: true,
|
88
105
|
},
|